Imported Debian patch 3.0.4-2
[debian/gnuradio] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 #
5 # This file was originally written by Joey Hess and Craig Small.
6 # As a special exception, when this file is copied by dh-make into a
7 # dh-make output file, you may use that output file without restriction.
8 # This special exception was added by Craig Small in version 0.37 of dh-make.
9 #
10 # Modified to make a template file for a multi-binary package with separated
11 # build-arch and build-indep targets  by Bill Allombert 2001
12
13 # Uncomment this to turn on verbose mode.
14 export DH_VERBOSE=1
15
16 # This has to be exported to make some magic below work.
17 export DH_OPTIONS
18
19 CFLAGS = -Wall -g
20
21 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
22         CFLAGS += -O0
23 else
24         CFLAGS += -O2
25 endif
26
27 configure: configure-stamp
28 configure-stamp:
29         dh_testdir
30 # running bootstrap shouldn't be necessary when working from released tarballs
31 #       ./bootstrap
32         CFLAGS="$(CFLAGS)" ./configure \
33                 --prefix=/usr --mandir=\$${prefix}/share/man \
34                 --infodir=\$${prefix}/share/info --enable-shared \
35                 --enable-doxygen --enable-html-docs \
36                 --sysconfdir=/etc --enable-all-components \
37                 --disable-gr-audio-osx --disable-gr-audio-windows
38         touch configure-stamp
39
40 build: build-stamp
41 build-stamp: configure-stamp 
42
43         $(MAKE) 
44         $(MAKE) check
45         touch $@
46
47 clean:
48         dh_testdir
49         dh_testroot
50         rm -f build-stamp configure-stamp
51
52         [ ! -f Makefile ] || $(MAKE) distclean
53
54         -test -r /usr/share/misc/config.sub && \
55                 cp -f /usr/share/misc/config.sub config.sub
56         -test -r /usr/share/misc/config.guess && \
57                 cp -f /usr/share/misc/config.guess config.guess
58
59         dh_clean  --exclude ./gr-gsm-fr-vocoder/src/lib/gsm/README.orig
60
61 install:
62         dh_testdir
63         dh_testroot
64         dh_clean -k
65         dh_installdirs
66
67         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
68         install -m 0755 debian/usrp.hotplug \
69                 $(CURDIR)/debian/usrp/etc/hotplug.d/usb/
70
71         : # make python scripts starting with '#!' executable
72         for i in `find debian -mindepth 2 -type f ! -perm 755`; do \
73           if head -1 $$i | grep -q '^#!'; then \
74             chmod 755 $$i; \
75             echo "made executable: $$i"; \
76           fi; \
77         done
78
79         dh_install --sourcedir=debian/tmp --list-missing
80
81         cp -r gnuradio-examples/python/* \
82                 debian/gnuradio-examples/usr/share/gnuradio/
83         find debian/gnuradio-examples -type f -name Makefile\* -exec rm {} \;
84         find debian/gnuradio-examples -type d -name CVS -exec rm {} \;
85         find debian/gnuradio-examples -name \*.py -exec chmod +x {} \;
86
87         mv debian/gnuradio/usr/bin/microtune.py \
88                 debian/gnuradio/usr/bin/microtune
89
90         mv debian/usrp/usr/bin/usrp_ra_receiver.py \
91                 debian/usrp/usr/bin/usrp_ra_receiver
92         mv debian/usrp/usr/bin/usrp_psr_receiver.py \
93                 debian/usrp/usr/bin/usrp_psr_receiver
94
95 # Must not depend on anything. This is to be called by
96 # binary-arch/binary-indep
97 # in another 'make' thread.
98 binary-common:
99         dh_testdir
100         dh_testroot
101         dh_installchangelogs ChangeLog
102         dh_installdocs
103         dh_installexamples
104 #       dh_installmenu
105 #       dh_installdebconf       
106 #       dh_installlogrotate     
107 #       dh_installemacsen
108 #       dh_installpam
109 #       dh_installmime
110         dh_pycentral
111         dh_python
112 #       dh_installinit
113 #       dh_installcron
114 #       dh_installinfo
115         dh_installman
116         dh_link
117 ifneq (,$(findstring -s,$(DH_OPTIONS)))
118         dh_strip --no-package=libgnuradio-core0c2a --no-package=libusrp0c2a
119         DH_OPTIONS= dh_strip --package=libgnuradio-core0c2a \
120                 --dbg-package=libgnuradio-core0c2a-dbg
121         DH_OPTIONS= dh_strip --package=libusrp0c2a \
122                 --dbg-package=libusrp0c2a-dbg
123 else
124         dh_strip
125 endif
126         dh_compress 
127 #       dh_movefiles --sourcedir=debian/gnuradio
128         dh_fixperms
129 #       dh_perl
130         dh_makeshlibs
131         dh_installdeb
132         dh_shlibdeps
133         dh_gencontrol
134         dh_md5sums
135         dh_builddeb
136
137 # Build architecture independant packages using the common target.
138 binary-indep: build install
139         $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
140
141 # Build architecture dependant packages using the common target.
142 binary-arch: build install
143         $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
144
145 binary: binary-arch binary-indep
146 .PHONY: build clean binary-indep binary-arch binary install configure