File: rules

package info (click to toggle)
tao 1.0.7-2
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 14,028 kB
  • ctags: 12,427
  • sloc: cpp: 170,752; sh: 8,916; yacc: 2,056; makefile: 914; lex: 669
file content (120 lines) | stat: -rwxr-xr-x 2,904 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#!/usr/bin/make -f

# debian/rules file for the TAO Debian GNU/Linux package
# written December 1998 by Ossama Othman <ossama@debian.org>

# Uncomment this to turn on verbose mode. 
#export DH_VERBOSE=1

# Use debhelper v2 features
export DH_COMPAT=2

build: build-stamp
build-stamp:
	dh_testdir

# Add here commands to compile the package.
#	Temporary hack until upstream TAO adds ACE to list of library
#	dependencies.
	LIBS=`ace-config --libs ace` ./configure --prefix=/usr --enable-static --with-gperf=gperf-ace
# Patch the generated libtool to avoid passing -rpath when linking,
# and to explicitly link libraries against the libraries they
# depend on.
	sed < libtool > libtool-2 \
        -e 's/^hardcode_libdir_flag_spec.*$$/hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' \
        -e '/^archive_cmds="/s/"$$/ \\$$deplibs"/'
	mv libtool-2 libtool
	chmod 755 libtool

	$(MAKE)

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp

# Add here commands to clean up after the build process.
	-$(MAKE) clean
	-$(MAKE) distclean
	rm -f config.cache config.log

	dh_clean

install: install-stamp
install-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

# Add here commands to install the package into debian/tmp.
	$(MAKE) prefix=`pwd`/debian/tmp/usr install

	rm -f debian/tmp/usr/lib/*.la
#	rm -f debian/tmp/usr/info/dir

	touch install-stamp

# Build architecture-independent files here.
binary-indep: build install
	dh_movefiles -i
#	dh_testversion
	dh_testdir -i
	dh_testroot -i
	dh_installdocs -i
#	dh_installexamples -i
#	dh_installmenu -i
#	dh_installemacsen -i
#	dh_installinit -i
#	dh_installcron -i
# We want to _exclude_ these man1 man pages.
#	dh_installmanpages -i tao-config.1 tao_idl.1
#	dh_undocumented
	dh_installchangelogs -i ChangeLog
	dh_link -i
	dh_compress -i
	dh_fixperms -i
#	dh_suidregister -i
	dh_installdeb -i
	dh_gencontrol -i
	dh_md5sums -i
	dh_builddeb -i

# Build architecture-dependent files here.
binary-arch: build install
	dh_movefiles -a
#	dh_testversion
	dh_testdir -a
	dh_testroot -a
	dh_installdocs -a
#	dh_installexamples -a
#	dh_installmenu -a
#	dh_installemacsen -a
#	dh_installinit -a
#	dh_installcron -a
	dh_installmanpages -ptao
#	dh_undocumented
	dh_installchangelogs -a ChangeLog
# Remove the files in the below directories to make sure they don't end
# up in the first package (libtao run-time library package).
#	rm -rf debian/tmp/usr/{bin,include,info,man}
#
	dh_strip -a
	dh_link -a
	dh_compress -a
	dh_fixperms -a
#	dh_suidregister -a
	dh_installdeb -a
	dh_makeshlibs -a -V
	dh_shlibdeps -a
	dh_gencontrol -a
	dh_md5sums -a
	dh_builddeb -a

source diff:                                                                  
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install