File: rules

package info (click to toggle)
doc-debian-fr 1.2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 320 kB
  • ctags: 10
  • sloc: makefile: 76; sh: 8
file content (92 lines) | stat: -rwxr-xr-x 2,544 bytes parent folder | download
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
#!/usr/bin/make -f
# Sample debian.rules file - Copyright 1994,1995 by Ian Jackson.
#
# Invoke each target with `./debian/rules <target>'.  All targets should be
# invoked with the package root as the current directory.

# The name of the package
P = doc-debian-fr

INSTALL = install -s

R = debian/tmp

DIRECTORIES = \
        $(R) \
        $(R)/DEBIAN \
        $(R)/usr \
        $(R)/usr/doc \
        $(R)/usr/doc/LANG \
        $(R)/usr/doc/LANG/fr \
        $(R)/usr/doc/LANG/fr/debian \
        $(R)/usr/doc/$(P) \
	$(R)/usr/lib \
	$(R)/usr/lib/menu

# Builds the binary package.
build:
	$(checkdir)
	export LANG=fr_FR; make
	touch build

# Clean $(DIRECTORIES)
clean-dir:
	$(checkdir)
	rm -rf $(R)

# Undoes the effect of `make -f rules build'.
clean: clean-dir
	$(checkdir)
	make clean
	rm -f debian/files* debian/substvars core
	rm -f build

# Makes a binary package.
binary-indep: $(DIRECTORIES) checkroot build
	$(checkdir)
	$(INSTALL) -m 644 debian_manifesto-fr $(R)/usr/doc/LANG/fr/debian/.
	$(INSTALL) -m 644 dselect.beginner.6.fr.txt $(R)/usr/doc/LANG/fr/debian/.
	$(INSTALL) -m 644 install.fr.html $(R)/usr/doc/LANG/fr/debian/.
	$(INSTALL) -m 644 markup.fr.sgml $(R)/usr/doc/LANG/fr/debian/.
	cp -r auto/markup.fr.html $(R)/usr/doc/LANG/fr/debian/.
	$(INSTALL) -m 644 developers-reference.fr.sgml $(R)/usr/doc/LANG/fr/debian/.
	cp -r auto/developers-reference.fr.html $(R)/usr/doc/LANG/fr/debian/.
	$(INSTALL) -m 644 packaging.fr.sgml $(R)/usr/doc/LANG/fr/debian/.
	cp -r auto/packaging.fr.html $(R)/usr/doc/LANG/fr/debian/.
	$(INSTALL) -m 644 index.html $(R)/usr/doc/LANG/fr/debian/.

binary-arch: $(DIRECTORIES) checkroot build
	$(checkdir)
	$(INSTALL) -m 755 debian/postinst $(R)/DEBIAN/.
	$(INSTALL) -m 755 debian/postrm $(R)/DEBIAN/.
	$(INSTALL) -m 644 debian/changelog $(R)/usr/doc/$(P)/changelog.Debian
	$(INSTALL) -m 644 debian/copyright $(R)/usr/doc/$(P)/.
	$(INSTALL) -m 644 debian/menu $(R)/usr/lib/menu/$(P)
	ln -s ../LANG/fr/debian $(R)/usr/doc/$(P)/fr
	gzip -9v $(R)/usr/doc/$(P)/changelog.Debian
	dpkg-gencontrol
	chown -R root.root $(R)
	chmod -R go-ws+rX $(R)
	chmod -R u-s+rw $(R)
	dpkg --build $(R) ..

define checkdir
	test -f debian_manifesto-fr -a -f debian/rules
endef

# Below here is fairly generic really

$(DIRECTORIES):
	install -d -g root -o root -m 755 $@
	chmod g-s $@

binary:		binary-indep binary-arch

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

checkroot:
	$(checkdir)
	test root = "`whoami`"

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