1 | #!/usr/bin/make -f |
---|
2 | |
---|
3 | # Quoting Policy version 3.9.2.0, 2011-04-07 section 4.9: |
---|
4 | |
---|
5 | # /start quote |
---|
6 | # For some packages, notably ones where the same source tree is compiled in |
---|
7 | # different ways to produce two binary packages, the build target does not make |
---|
8 | # much sense. For these packages it is good enough to provide two (or more) |
---|
9 | # targets (build-a and build-b or whatever) for each of the ways of building the |
---|
10 | # package, and a build target that does nothing. The binary target will have to |
---|
11 | # build the package in each of the possible ways and make the binary package out |
---|
12 | # of each. |
---|
13 | # ... |
---|
14 | # When a package has a configuration and build routine which takes a long time, |
---|
15 | # or when the makefiles are poorly designed, or when build needs to run clean |
---|
16 | # first, it is a good idea to touch build when the build process is complete. |
---|
17 | # This will ensure that if debian/rules build is run again it will not rebuild |
---|
18 | # the whole program. |
---|
19 | # /end quote |
---|
20 | |
---|
21 | # Since that fits building I2P very well, we override the build target. |
---|
22 | # |
---|
23 | |
---|
24 | build: |
---|
25 | @echo 'The build target is disabled. Use the appropriate binary target.' |
---|
26 | |
---|
27 | JAVA_HOME=/usr/lib/jvm/default-java |
---|
28 | I2P=$(CURDIR)/pkg-temp |
---|
29 | ROUTERVERSION=$(CURDIR)/router/java/src/net/i2p/router/RouterVersion.java |
---|
30 | |
---|
31 | # I2P's version will be displayed in the router console as "$I2PVERSION-$EXTRAPREFIX$DEBIANVERSION", eg. 0.8.12-0-deb1 |
---|
32 | export EXTRAPREFIX := deb |
---|
33 | export JAVA_HOME I2P |
---|
34 | export DEBIANVERSION := $(shell dpkg-parsechangelog |awk -F' ' '/Version:/{print $$2}' |sed 's/.*-\([[:digit:]]\{1,\}\).*$$/\1/') |
---|
35 | #export DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) |
---|
36 | |
---|
37 | %: |
---|
38 | dh $@ --with quilt |
---|
39 | |
---|
40 | clean: createcopyright |
---|
41 | |
---|
42 | override_dh_auto_clean: |
---|
43 | -[ -r $(CURDIR)/debian/routerversion.java.bak ] && mv -f $(CURDIR)/debian/routerversion.java.bak $(ROUTERVERSION) |
---|
44 | dh_auto_clean |
---|
45 | ant distclean |
---|
46 | rm -f core/c/jbigi/*.[s]o |
---|
47 | rm -rf core/c/jcpuid/lib/ |
---|
48 | #rm -f $(CURDIR)/installer/lib/wrapper/all/wrapper.jar |
---|
49 | debconf-updatepo |
---|
50 | |
---|
51 | override_dh_auto_build: |
---|
52 | |
---|
53 | binary-indep: build-indep |
---|
54 | build-indep: |
---|
55 | dh_prep |
---|
56 | cp -f $(ROUTERVERSION) $(CURDIR)/debian/routerversion.java.bak |
---|
57 | sed -e "s/\(.*EXTRA\ =\ \)[^ ]*\"\(.*\)\"/\1\"\2-$$EXTRAPREFIX$$DEBIANVERSION\"/" < $(ROUTERVERSION) > $(ROUTERVERSION).tmp |
---|
58 | mv -f $(ROUTERVERSION).tmp $(ROUTERVERSION) |
---|
59 | # The next line is used by KYTV when building from source packages |
---|
60 | #[ -r jetty/jetty-5.1.15.tgz ] && ln -sf $(CURDIR)/jetty/jetty-5.1.15.tgz $(CURDIR)/apps/jetty/jetty-5.1.15.tgz |
---|
61 | ant preppkg-unix javadoc |
---|
62 | echo router.updateDisabled=true > $(I2P)/router.config |
---|
63 | mv $(I2P)/runplain.sh $(I2P)/i2prouter-nowrapper |
---|
64 | |
---|
65 | |
---|
66 | binary-arch: build-arch |
---|
67 | build-arch: |
---|
68 | # build jbigi |
---|
69 | cd $(CURDIR)/core/c/jbigi && ./build_jbigi.sh dynamic |
---|
70 | # build jcpuid |
---|
71 | cd $(CURDIR)/core/c/jcpuid && ./build.sh |
---|
72 | |
---|
73 | binary: binary-arch binary-indep |
---|
74 | |
---|
75 | createcopyright: |
---|
76 | @echo " *** Creating debian/copyright*** " |
---|
77 | @rm -f $(CURDIR)/debian/copyright |
---|
78 | @/bin/echo -e "This package was Debianized by kytv <killyourtv@i2pmail.org>" >> $(CURDIR)/debian/copyright |
---|
79 | @/bin/echo -e "Sun, 23 Jan 2011 20:26:51 +0000" >> $(CURDIR)/debian/copyright |
---|
80 | @/bin/echo -e "\nIt was downloaded from http://www.i2p2.de" >> $(CURDIR)/debian/copyright |
---|
81 | @/bin/echo -e "\nI2P is tracked upstream using the Monotone VCS" >> $(CURDIR)/debian/copyright |
---|
82 | @/bin/echo -e "Complete information on fetching the source with monotone can be found" >> $(CURDIR)/debian/copyright |
---|
83 | @/bin/echo -e "at http://www.i2p2.de/newdevelopers#getting-the-i2p-code\n\n\n" >> $(CURDIR)/debian/copyright |
---|
84 | @/bin/cat $(CURDIR)/LICENSE.txt >> $(CURDIR)/debian/copyright |
---|
85 | |
---|
86 | override_dh_compress: |
---|
87 | dh_compress -X.xsl -X.xml |
---|
88 | |
---|
89 | override_dh_installchangelogs: |
---|
90 | dh_installchangelogs history.txt |
---|
91 | |
---|
92 | override_dh_installdocs: |
---|
93 | dh_installdocs -pi2p -plibjbigi-jni --link-doc=i2p-router |
---|
94 | dh_installdocs --remaining-packages |
---|
95 | |
---|
96 | override_dh_dhlibdeps: |
---|
97 | dh_shlibdeps -llibjbigi-jni debian/libjbigi-jni/usr/lib/jni/*.so |
---|
98 | |
---|
99 | #override_dh_installinit: |
---|
100 | # dh_installinit -r |
---|
101 | |
---|
102 | override_dh_builddeb: |
---|
103 | dh_builddeb -- -Zbzip2 |
---|
104 | |
---|
105 | get-orig-source: |
---|
106 | uscan --verbose --rename --destdir $(CURDIR)/.. --watchfile debian/watch --force-download |
---|