0.2 snapshot
[himkr] / debian.old / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # GNU copyright 1997 to 1999 by Joey Hess.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8
9
10 # These are used for cross-compiling and for saving the configure script
11 # from having to guess our platform (since we know it already)
12 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
13 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
14
15
16 CFLAGS = -Wall -g
17 LDFLAGS= -Wl,--as-needed
18
19 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
20         CFLAGS += -O0
21 else
22         CFLAGS += -O2
23 endif
24 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
25         INSTALL_PROGRAM += -s
26 endif
27
28 # shared library versions, option 1
29 version=2.0.5
30 major=2
31 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
32 #version=`ls src/.libs/lib*.so.* | \
33 # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
34 #major=`ls src/.libs/lib*.so.* | \
35 # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
36
37 config.status: configure
38         dh_testdir
39         # Add here commands to configure the package.
40         CFLAGS="$(CFLAGS)" ./configure \
41                         --host=$(DEB_HOST_GNU_TYPE) \
42                         --build=$(DEB_BUILD_GNU_TYPE) \
43                         --prefix=/usr \
44                         --mandir=\$${prefix}/share/man \
45                         --infodir=\$${prefix}/share/info \
46                         --sysconfdir=/etc
47
48 configure:
49         libtoolize --automake
50         aclocal-1.7 || aclocal
51         autoconf
52         autoheader
53         automake-1.7 --add-missing --foreign || automake --add-missing> --foreign
54
55
56 build: build-stamp
57 build-stamp:  config.status
58         dh_testdir
59
60         perl -pi -e's/archive_cmds="\\\$$CC -shared/archive_cmds="\$$CC -Wl,--as-needed -shared/' libtool
61         # Add here commands to compile the package.
62         $(MAKE)
63
64         touch build-stamp
65
66 clean:
67         dh_testdir
68         dh_testroot
69         rm -f build-stamp
70
71         # Add here commands to clean up after the build process.
72         -$(MAKE) distclean
73 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
74         cp -f /usr/share/misc/config.sub config.sub
75 endif
76 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
77         cp -f /usr/share/misc/config.guess config.guess
78 endif
79
80
81         dh_clean
82
83 install: build
84         dh_testdir
85         dh_testroot
86         dh_clean -k
87         dh_installdirs
88
89         # Add here commands to install the package into debian/tmp
90         $(MAKE) install DESTDIR=$(CURDIR)/debian/build
91   #dbg
92         -rm -rf $(CURDIR)/debian/build/usr/lib/debug
93         mkdir -p $(CURDIR)/debian/build/usr/lib/debug
94         for l in `find $(CURDIR)/debian/build/usr/lib/hildon-input-method -name '*.so*'`; do \
95                 cp -vdf $$l \
96                 $(CURDIR)/debian/build/usr/lib/debug/; \
97         done
98
99 # Build architecture-independent files here.
100 binary-indep: build install
101 # We have nothing to do by default.
102
103 # Build architecture-dependent files here.
104 binary-arch: build install
105         dh_testdir
106         dh_testroot
107         dh_installchangelogs
108 #       dh_installexamples
109         dh_installdocs
110         dh_install --sourcedir=debian/build -v
111 #       dh_installmenu
112 #       dh_installdebconf
113 #       dh_installlogrotate
114 #       dh_installemacsen
115 #       dh_installpam
116 #       dh_installmime
117 #       dh_installinit
118 #       dh_installcron
119 #       dh_installinfo
120         dh_installman
121         dh_link
122         dh_strip
123         dh_compress
124         dh_fixperms
125 #       dh_perl
126 #       dh_python
127         dh_makeshlibs
128         dh_installdeb
129         dh_shlibdeps
130         dh_gencontrol
131         dh_md5sums
132         dh_builddeb
133
134 binary: binary-indep binary-arch
135 .PHONY: build clean binary-indep binary-arch binary install