libyazproxy.la uses libyazpp.la
[yazproxy-moved-to-github.git] / debian / 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 # Force compat level four
10 export DH_COMPAT=4
11
12 # These are used for cross-compiling and for saving the configure script
13 # from having to guess our platform (since we know it already)
14 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
15 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
16
17
18 CFLAGS = -Wall -g
19
20 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
21         CFLAGS += -O0
22 else
23         CFLAGS += -O2
24 endif
25 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
26         INSTALL_PROGRAM += -s
27 endif
28
29 # shared library versions, option 1
30 version=2.0.5
31 major=2
32 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
33 #version=`ls src/.libs/lib*.so.* | \
34 # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
35 #major=`ls src/.libs/lib*.so.* | \
36 # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
37
38 config.status: configure
39         dh_testdir
40         # Add here commands to configure the package.
41         CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-shared --with-yazpp=/usr/bin --without-usemarcon
42
43
44 build: build-stamp
45 build-stamp:  config.status
46         dh_testdir
47
48         # Add here commands to compile the package.
49         $(MAKE)
50
51         touch build-stamp
52
53 clean:
54         dh_testdir
55         dh_testroot
56         rm -f build-stamp 
57
58         # Add here commands to clean up after the build process.
59         -$(MAKE) distclean
60 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
61         cp -f /usr/share/misc/config.sub config.sub
62 endif
63 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
64         cp -f /usr/share/misc/config.guess config.guess
65 endif
66
67
68         dh_clean 
69
70 install: build
71         dh_testdir
72         dh_testroot
73         dh_clean -k 
74         dh_installdirs
75
76         # Add here commands to install the package into debian/tmp
77         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
78
79
80 # Build architecture-independent files here.
81 binary-indep: build install
82 # We have nothing to do by default.
83
84 # Build architecture-dependent files here.
85 binary-arch: build install
86         dh_testdir
87         dh_testroot
88         dh_installdocs -A README
89         dh_installchangelogs 
90         dh_installdocs
91         dh_installexamples
92         mv debian/tmp/usr/share/doc/yazproxy debian/tmp/usr/share/doc/yazproxy-doc
93         dh_install
94 #       dh_installmenu
95 #       dh_installdebconf       
96 #       dh_installlogrotate
97 #       dh_installemacsen
98 #       dh_installpam
99 #       dh_installmime
100 #       dh_installinit
101 #       dh_installcron
102 #       dh_installinfo
103         dh_installman
104         dh_link
105         dh_strip
106         dh_compress
107         dh_fixperms
108 #       dh_perl
109 #       dh_python
110         dh_makeshlibs -V 'libyazproxy2 (>= 1.3.0)'
111         dh_installdeb
112         dh_shlibdeps -l debian/libyazproxy2/usr/lib
113         dh_gencontrol
114         dh_md5sums
115         dh_builddeb
116
117 binary: binary-indep binary-arch
118 .PHONY: build clean binary-indep binary-arch binary install