chiark / gitweb /
tuntap
[chiark-tcl.git] / debian / rules
1 #!/usr/bin/make -f
2
3 # chiark-tcl - various Tcl bindings and extensions
4 # Copyright 2006 Ian Jackson
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation; either version 2 of the
9 # License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this library; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21
22 majversion=1
23 srcpackage=chiark-tcl
24 libpackage=libtcl-chiark-$(majversion)
25 docpackage=libtcl-chiark-$(majversion)
26 docdir=usr/share/doc/$(docpackage)
27
28 tclh:=$(firstword $(wildcard /usr/include/tcl8.*/tcl.h))
29 tclversion:=$(patsubst /usr/include/tcl%/tcl.h,%,$(tclh))
30
31 define checkdir
32         test -f hbytes/hbytes.tct
33 endef
34
35 build:
36         $(checkdir)
37         $(MAKE) prefix=/usr VERSION=$(majversion) TCL_VERSION=$(tclversion)
38
39 clean:
40         $(checkdir)
41         $(MAKE) clean
42         rm -rf *~ debian/tmp debian/*~ debian/files* debian/substvars*
43         dh_clean
44
45 binary-indep:
46
47 binary-arch:    checkroot build
48         $(checkdir)
49         -rm -rf debian/$(docpackage) debian/$(libpackage)
50         install -d debian/$(libpackage)/usr/lib
51         install -d debian/$(docpackage)/usr/share/doc/$(docpackage)
52
53         set -e; for f in lintian linda; do                                   \
54                 install -d debian/$(libpackage)/usr/share/$$f/overrides;     \
55                 cp debian/$$f-overrides                                      \
56                  debian/$(libpackage)/usr/share/$$f/overrides/$(libpackage); \
57                 done
58
59         cp */*.so debian/$(libpackage)/usr/lib/.
60
61         set -e; for f in */*.[ch]; do                                   \
62                 perl debian/extractdoc <$$f                             \
63                         debian/$(docpackage)/$(docdir)/ $$f .txt;       \
64                 done
65         cp */*.tct debian/README debian/copyright \
66                 debian/$(docpackage)/$(docdir)
67
68         dh_installchangelogs
69         dh_strip
70
71         dh_shlibdeps -Xchiark_tcl_adns -Xchiark_tcl_crypto
72
73         # be consistent about what we compress:
74         dh_compress -X.c.txt -X.h.txt
75
76         dh_fixperms
77         dh_gencontrol
78         dh_md5sums
79         dh_builddeb
80
81 # Below here is fairly generic really
82
83 binary:         binary-indep binary-arch
84
85 source diff:
86         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
87
88 checkroot:
89         $(checkdir)
90         dh_testroot
91
92 .PHONY: binary binary-arch binary-indep clean checkroot