]> git.donarmstrong.com Git - debian/debian-policy.git/blob - debian/rules
Manually added patch 117
[debian/debian-policy.git] / debian / rules
1 #!/usr/bin/make -f
2 ############################ -*- Mode: Makefile -*- ###########################
3 ## rules ---
4 ## Author           : Manoj Srivastava ( srivasta@tiamat.datasync.com )
5 ## Created On       : Thu Oct 29 15:35:55 1998
6 ## Created On Node  : tiamat.datasync.com
7 ## Last Modified By : Manoj Srivastava
8 ## Last Modified On : Wed Sep  6 09:37:43 2000
9 ## Last Machine Used: glaurung.green-gryphon.com
10 ## Update Count     : 56
11 ## Status           : Unknown, Use with caution!
12 ## HISTORY          :
13 ## Description      :
14 ## $Id$
15 ###############################################################################
16
17 # ifdef ARCH
18 #   ha:=-a$(ARCH)
19 # endif
20
21 # set the dpkg-architecture vars; but we don't use them, so we'll comment out
22 # export DEB_BUILD_ARCH      := $(shell dpkg-architecture $(ha) -qDEB_BUILD_ARCH)
23 # export DEB_BUILD_GNU_CPU   := $(shell dpkg-architecture $(ha) -qDEB_BUILD_GNU_CPU)
24 # export DEB_BUILD_GNU_SYSTEM:= $(shell dpkg-architecture $(ha) -qDEB_BUILD_GNU_SYSTEM)
25 # export DEB_BUILD_GNU_TYPE  := $(shell dpkg-architecture $(ha) -qDEB_BUILD_GNU_TYPE)
26 # export DEB_HOST_ARCH       := $(shell dpkg-architecture $(ha) -qDEB_HOST_ARCH)
27 # export DEB_HOST_GNU_CPU    := $(shell dpkg-architecture $(ha) -qDEB_HOST_GNU_CPU)
28 # export DEB_HOST_GNU_SYSTEM := $(shell dpkg-architecture $(ha) -qDEB_HOST_GNU_SYSTEM)
29 # export DEB_HOST_GNU_TYPE   := $(shell dpkg-architecture $(ha) -qDEB_HOST_GNU_TYPE)
30
31
32 # The name of the package (for example, `emacs').
33 package := $(shell grep Source debian/control | sed 's/^Source: //')
34 # arch  := $(shell dpkg --print-installation-architecture)
35 date    := $(shell date +"%Y-%m-%d")
36 version := $(shell LC_ALL=C dpkg-parsechangelog | \
37                    grep ^Version: | sed 's/^Version: *//')
38
39 # Location of the source dir
40 SRCTOP    := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi;)
41 TMPTOP    := $(SRCTOP)/debian/tmp
42 DOCDIR    := $(TMPTOP)/usr/share/doc/$(package)
43 LIBDIR    := $(TMPTOP)/usr/share/doc-base
44
45
46 SGML_FILES      = policy menu-policy mime-policy policy-process perl-policy
47 DESC_FILES      = debian-policy debian-menu-policy debian-perl-policy \
48                   debian-mime-policy debian-policy-process debconf-spec \
49                   fhs
50
51 # While we have two versions of the FHS installed in the source package,
52 # we need to modify this to handle it.  This is the easiest way to do it.
53 # FHS_ARCHIVE  =$(shell ls -1 fhs*.tar.gz)
54 # And with version 2.1, we have to build the text and dvi versions
55 # ourselves :-(
56 FHS_ARCHIVE  =fhs-2.1-source.tar.gz
57 FHS_HTML     =fhs-2.1.html.tar.gz
58 FHS_FILES    =fhs/fhs.ps fhs/fhs.txt fhs/fhs.pdf
59 FHS_BYHAND   =fhs-2.1.html.tar.gz fhs/fhs.txt
60 # FSSTND_FILES =FSSTND-FAQ fsstnd-1.2.dvi.gz fsstnd-1.2.ps.gz fsstnd-1.2.txt.gz
61 POLICY_FILES = $(SGML_FILES:=.sgml) $(SGML_FILES:=.txt.gz) \
62                virtual-package-names-list.txt \
63                upgrading-checklist.txt libc6-migration.txt version.ent \
64                debconf_spec/debconf_specification.html \
65                debconf_spec/debconf_specification.txt.gz
66 BYHAND_FILES = $(SGML_FILES:=.txt.gz) $(SGML_FILES:=.html.tar.gz) \
67                debconf_spec/debconf_specification.txt.gz \
68                debconf_spec/debconf_specification.html \
69                libc6-migration.txt virtual-package-names-list.txt \
70                policy.ps.gz policy.pdf.gz upgrading-checklist.txt \
71                $(FHS_BYHAND)
72
73 FILES_TO_CLEAN  = debian/files debian/buildinfo  debian/substvars \
74                   debian/postinst debian/prerm \
75                   version.ent upgrading-checklist.txt \
76                   $(SGML_FILES:=.txt.gz) $(SGML_FILES:=.html.tar.gz) \
77                   policy.pdf.gz policy.ps.gz \
78                   debconf_specification.xml.tar.gz
79
80 STAMPS_TO_CLEAN = stamp-policy stamp-build stamp-configure
81 DIRS_TO_CLEAN   = debian/tmp fhs $(SGML_FILES:=.html)
82
83
84 install_file   = /usr/bin/install -p    -o root -g root  -m  644
85 install_program= /usr/bin/install -p    -o root -g root  -m  755
86 make_directory = /usr/bin/install -p -d -o root -g root  -m  755
87
88 GROFF_VERSION := $(shell dpkg -s groff | sed -n -e 's/Version: //p')
89
90
91 all build: stamp-build
92 stamp-build:
93         $(checkdir)
94         -test -f stamp-configure || $(MAKE) -f debian/rules configure
95         # Set PERL5LIB to use our version of DebianDoc_SGML::Format::Text
96         set -e; \
97         for file in $(SGML_FILES); do \
98           nsgmls -gues $$file.sgml; \
99           debiandoc2html $$file.sgml; \
100           env PERL5LIB=. debiandoc2text $$file.sgml; \
101           if [ -f $$file.text ]; then mv $$file.text $$file.txt; fi; \
102           gzip -9 $$file.txt; \
103           tar -cf $$file.html.tar $$file.html; \
104           gzip -9 $$file.html.tar; \
105         done
106         tar -zxf $(FHS_ARCHIVE)
107         # Need to use a patched tmac.m macro file if we're using a pre-1.16
108         # groff; version 1.16 is apparently fixed
109         if dpkg --compare-versions $(GROFF_VERSION) lt 1.16; then \
110             cp /usr/share/groff/tmac/tmac.m fhs && \
111             cd fhs && patch -p1 < ../mm1.32-patch; \
112         fi
113         # The extra '.' in the tmac path doesn't matter if
114         GROFF_TMAC_PATH=. cd fhs && $(MAKE) fhs.ps fhs.pdf fhs.txt
115         links -dump fhs-changes-2.1.html | perl -pe 's/[\r\0]//g' > \
116                     fhs/fhs-changes-2.1.txt
117         links -dump upgrading-checklist.html | perl -pe 's/[\r\0]//g' > \
118                     upgrading-checklist.txt
119         $(MAKE) -C debconf_spec all
120         gzip -9f debconf_spec/debconf_specification.txt
121         touch stamp-build
122
123 configure: stamp-configure
124 stamp-configure:
125         rm -f version.ent
126         echo "<!entity version \"$(version)\">" >> version.ent
127         echo "<!entity date    \"$(date)\">"        >> version.ent
128         touch stamp-configure
129
130 clean:
131 # Undoes the effect of `make -f debian/rules build'.
132         $(checkdir)
133         $(MAKE) -C debconf_spec clean
134         rm -f  $(FILES_TO_CLEAN) $(STAMPS_TO_CLEAN)
135         rm -rf $(DIRS_TO_CLEAN)
136         rm -f core `find . \( -name '*.orig' -o -name '*.rej' -o \
137           -name '*~' -o -name '*.bak' -o -name '#*#' -o \
138           -name '.*.orig' -o -name '.*.rej' -o -name '.SUMS' -o \
139           -size 0 \) -print` TAGS
140
141
142 binary:         binary-indep binary-arch
143 binary-arch:    build
144         $(checkdir)
145 # There are no architecture-dependent files to be uploaded
146 # generated by this package.  If there were any they would be
147 # made here.
148
149 binary-indep:   stamp-policy
150 stamp-policy:  build
151         @test $$(id | sed -e 's/(.*$$//' -e 's/^uid=//') || \
152                 (echo need root priviledges; exit 1)
153         $(checkdir)
154 #       This is unnecessary; commenting out
155 #       test -f stamp-build     || $(MAKE) -f        debian/rules build
156         -rm -rf                 $(TMPTOP)
157         $(make_directory)       $(TMPTOP)/DEBIAN
158 #       $(make_directory)       $(DOCDIR)/fsstnd
159         $(make_directory)       $(DOCDIR)/fhs
160         $(make_directory)       $(LIBDIR)
161         # create a substvar to reference from debian/control so that
162         # we don't hardcode the policy compliance of the policy
163         # package.  I guess some might question this but I take it as
164         # a given that the debian-policy pkg must always comply with
165         # itself...
166         echo "debian-policy:Version=$(version)"      > debian/substvars
167         $(install_file)     $(POLICY_FILES)          $(DOCDIR)/
168 #       $(install_file)     $(FSSTND_FILES)          $(DOCDIR)/fsstnd/
169         $(install_file)     $(FHS_FILES)             $(DOCDIR)/fhs/
170         $(install_file)     debian/changelog         $(DOCDIR)/
171         # Be more specific with file compression
172         -gzip -9            $(DOCDIR)/*.txt $(DOCDIR)/*.sgml \
173                                 $(DOCDIR)/fhs/* $(DOCDIR)/changelog
174         $(install_file)     debian/copyright         $(DOCDIR)/
175         GZIP=-9 cd debconf_spec && \
176           tar -zcf ../debconf_specification.xml.tar.gz *
177         $(install_file)     debconf_specification.xml.tar.gz $(DOCDIR)/
178         set -e; \
179         for file in $(DESC_FILES); do \
180           $(install_file) $$file.desc $(LIBDIR)/$$file; \
181         done
182         set -e; \
183         for file in $(SGML_FILES); do \
184           tar -C $(DOCDIR) -zxf $$file.html.tar.gz; \
185         done
186         tar -C $(DOCDIR)/fhs -zxf $(FHS_HTML)
187         sed -e 's/#PACKAGE#/$(package)/g' debian/postinst.in > debian/postinst
188         sed -e 's/#PACKAGE#/$(package)/g' debian/prerm.in > debian/prerm
189         $(install_program)  debian/postinst          debian/tmp/DEBIAN/
190         $(install_program)  debian/prerm             debian/tmp/DEBIAN/
191         dpkg-gencontrol     -pdebian-policy -Pdebian/tmp -isp
192         chown               -R root:root debian/tmp
193         chmod               -R go=rX debian/tmp
194         dpkg                --build debian/tmp ..
195         # Set PERL5LIB to use our version of DebianDoc_SGML::Format::LaTeX
196         env PERL5LIB=. debiandoc2latexps   policy.sgml
197         gzip -9f            policy.ps
198         env PERL5LIB=. debiandoc2latexpdf  policy.sgml
199         gzip -9f            policy.pdf
200         set -e; \
201         for i in            $(BYHAND_FILES); do                          \
202           $(install_file)   $$i            ..                          ; \
203           dpkg-distaddfile  -fdebian/files `basename $$i`     byhand - ; \
204         done
205         touch               stamp-policy
206
207
208 define checkdir
209         test -f debian/rules -a -f policy.sgml
210 endef
211
212 source diff:
213         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
214
215 .PHONY: configure build binary binary-arch binary-indep clean checkroot
216
217 #Local variables:
218 #mode: makefile
219 #End: