summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 3333a02e28d6807efadfdd810f8722a91b3e3b3c (plain)
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/usr/bin/make -f
# Made with the aid of dh_make, by Craig Small
# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
# Some lines taken from debmake, by Christoph Lameter.
# $Id: rules,v 1.1 1998/12/22 05:06:44 che Exp $


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

build: build-stamp
build-stamp: configure
	dh_testdir
	mkdir build
	cd build; ../configure
	cd ..
#	cd build && CXXFLAGS="-g -Wall -D_POSIX_C_SOURCE=199309" ../configure --disable-nls --disable-static --prefix=/usr
#	cd build && make all-hdr
#	cd build && make -s
	
	# Add here commands to compile the package.
	make
	touch build-stamp

clean:
	dh_testdir
#	dh_testroot
	rm -f build-stamp
	rm -rf build

	# Add here commands to clean up after the build process.
	-$(MAKE) clean
	-$(MAKE) distclean
	dh_clean

# Build architecture-independent files here.
binary-indep: build libapt-pkg-doc
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build apt libapt-pkg-dev

apt: build
#	dh_testversion -papt
	dh_testdir -papt
	dh_testroot -papt
	dh_clean -papt -k
	dh_installdirs -papt usr/bin usr/lib/apt/methods usr/lib/dpkg/methods/apt etc/apt usr/doc/apt var/cache/apt/archives/partial var/state/apt/lists/partial

	cp build/bin/apt-* debian/tmp/usr/bin/
	cp build/bin/libapt-pkg.so.2.0 debian/tmp/usr/lib/
	ln -s libapt-pkg.so.2.0 debian/tmp/usr/lib/libapt-pkg-so.2
	cp build/bin/methods/* debian/tmp/usr/lib/apt/methods/

	cp build/scripts/dselect/* debian/tmp/usr/lib/dpkg/methods/apt/
#	cp debian/sources.list debian/tmp/etc/apt/

	cp build/docs/guide.text debian/tmp/usr/doc/apt/users-guide.txt
	mkdir debian/tmp/usr/doc/apt/users-guide.html/
	cp -a build/docs/guide.html/* debian/tmp/usr/doc/apt/users-guide.html/

#	head -n 500 ChangeLog > debian/ChangeLog

	dh_installdocs -papt 
	dh_installexamples -papt build/docs/examples/*
#	dh_installmenu -papt
#	dh_installinit -papt
#	dh_installcron -papt
	dh_installmanpages -papt

#	dh_undocumented -papt
	dh_installchangelogs -papt
	dh_strip -papt
	dh_compress -papt
	dh_fixperms -papt
	dh_suidregister -papt
	dh_installdeb -papt
	LD_LIBRARY_PATH=debian/tmp/usr/lib dh_shlibdeps -papt
	dh_gencontrol -papt
	dh_makeshlibs -papt
	dh_md5sums -papt
	dh_builddeb -papt

libapt-pkg-dev: build
	dh_testdir -plibapt-pkg-dev
	dh_testroot -plibapt-pkg-dev
	dh_clean -plibapt-pkg-dev -k
	dh_installdirs -plibapt-pkg-dev usr/lib usr/include/apt-pkg
	
	ln -s libapt-pkg.so.2.0 debian/libapt-pkg-dev/usr/lib/libapt-pkg.so

	cp build/include/apt-pkg/*.h debian/libapt-pkg-dev/usr/include/apt-pkg/

	dh_installdocs -plibapt-pkg-dev
	dh_installchangelogs -plibapt-pkg-dev
	dh_strip -plibapt-pkg-dev
	dh_compress -plibapt-pkg-dev
	dh_fixperms -plibapt-pkg-dev
	dh_installdeb -plibapt-pkg-dev
	dh_shlibdeps -plibapt-pkg-dev
	dh_gencontrol -plibapt-pkg-dev
	dh_md5sums -plibapt-pkg-dev
	dh_builddeb -plibapt-pkg-dev

libapt-pkg-doc: build
	dh_testdir -plibapt-pkg-doc
	dh_testroot -plibapt-pkg-doc
	dh_clean -plibapt-pkg-doc -k
	dh_installdirs -plibapt-pkg-doc usr/doc/apt

	cp -a build/docs/cache* build/docs/design* build/docs/dpkg-tech* \
	  build/docs/files* build/docs/method* debian/libapt-pkg-doc/usr/doc/apt/

	dh_installdocs -plibapt-pkg-doc
	dh_installchangelogs -plibapt-pkg-doc
	dh_strip -plibapt-pkg-doc
	dh_compress -plibapt-pkg-doc
	dh_fixperms -plibapt-pkg-doc
	dh_installdeb -plibapt-pkg-doc
	dh_shlibdeps -plibapt-pkg-doc
	dh_gencontrol -plibapt-pkg-doc
	dh_md5sums -plibapt-pkg-doc
	dh_builddeb -plibapt-pkg-doc

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

# Update from CVS
l33ch: really-clean
	cvs update
	utils/mkChangeLog

# Update from CVS and then configure for build
super-l33ch: l33ch Makefile.in

configure:
	make startup

l33ch-stamp: super-l33ch
	touch l33ch-stamp

really-clean: clean
	-find -name Makefile.in -print0 | xargs -0r rm -f
	find -name ChangeLog | xargs rm -f
	rm -f l33ch-stamp

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