annotate debian/rules @ 3971:b30ffe58ff18

fix typos in latest checkin. although ( and { look alike, they're not.d'ah.
author eyck
date Fri, 04 Jan 2002 10:27:04 +0000
parents 652d8625c299
children 90e7917f945f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
1 #!/usr/bin/make -f
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
2 # Made with the aid of debmake, by Christoph Lameter,
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
3 # based on the sample debian/rules file for GNU hello by Ian Jackson.
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
4 #export DH_VERBOSE=1
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
5 # This is the debhelper compatability version to use.
1759
df6660716f69 re-install install dir, which I removed before I checked what's causing problems
eyck
parents: 1733
diff changeset
6 export DH_COMPAT=2
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
7
3632
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
8 package := mplayer
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
9 prefix := debian/$(package)
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
10 arch := $(shell dpkg --print-architecture)
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
11
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
12 ifeq ($(arch),powerpc)
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
13 arch-conf += --disable-mp1e
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
14 endif
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
15
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
16
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
17 configure: configure-stamp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
18 configure-stamp:
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
19 dh_testdir
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
20 # Add here commands to configure the package.
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
21 $(checkdir)
3752
61244d76348f enable-streaming unneeded.
eyck
parents: 3632
diff changeset
22 ./configure --prefix=/usr --enable-gui
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
23
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
24 touch configure-stamp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
25
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
26 build: configure-stamp build-stamp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
27 build-stamp:
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
28 dh_testdir
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
29
3632
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
30 # commands to compile the package.
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
31 ${MAKE}
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
32
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
33 touch build-stamp
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
34
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
35 clean:
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
36 dh_testdir
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
37 dh_testroot
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
38 rm -f build-stamp configure-stamp
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
39
3632
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
40 # commands to clean up after the build process.
1719
42c5b24221e7 no need for TVout/fbset/fb.modes.5
eyck
parents: 1705
diff changeset
41 -$(MAKE) distclean
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
42 dh_clean
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
43
3632
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
44 # Build architecture-independent files here.
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
45 binary-indep: build
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
46 # We have nothing to do by default.
845
29a3f57d5e1d spellcheck, start of integration with debian menu system, /etc/mplayer.conf
eyck
parents: 821
diff changeset
47
3632
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
48 # Build architecture-dependent files here.
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
49 binary-arch: build
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
50 dh_testdir
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
51 dh_testroot
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
52 dh_clean -k
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
53 dh_installdirs
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
54
3632
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
55 # commands to install the package into debian/<packagename>
3971
b30ffe58ff18 fix typos in latest checkin. although ( and { look alike, they're not.d'ah.
eyck
parents: 3970
diff changeset
56 $(MAKE) prefix=$(prefix)/usr CONFDIR=$(prefix)/usr/share/mplayer DATADIR=$(prefix)/usr/share/mplayer install
3963
476892c68700 Use install for installing manpages and codecs.conf instead of doing it ourselves.
eyck
parents: 3961
diff changeset
57 #install -m 755 -s mplayer $(CURDIR)/debian/`dh_listpackages`/usr/bin/mplayer
2759
ce39b5cc7e16 add gui, this way we can finally add usable entry to menus. ( Sveg Hartge
eyck
parents: 1862
diff changeset
58 dh_link usr/bin/mplayer usr/bin/gmplayer
3963
476892c68700 Use install for installing manpages and codecs.conf instead of doing it ourselves.
eyck
parents: 3961
diff changeset
59 #install -o root -g root -m 0644 etc/codecs.conf $(prefix)/usr/share/mplayer
845
29a3f57d5e1d spellcheck, start of integration with debian menu system, /etc/mplayer.conf
eyck
parents: 821
diff changeset
60
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
61 dh_installdebconf
1634
3249bbc48bf9 Changes to debian packaging based on patches by Josip Rodin (joy debian org)
eyck
parents: 1397
diff changeset
62 dh_installdocs DOCS/*
1733
220f86ac8c15 examples and started cleanup of rules by andre.dahlqvist@telia.com
eyck
parents: 1721
diff changeset
63 dh_installexamples etc/example.conf
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
64 dh_installmenu
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
65 # dh_installmime
3632
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
66 # dh_installmanpages TVout/fbset/fb.modes.5 TVout/fbset/fbset.8
06911836febd Adam Di Carlo changes. see debian/changelog
eyck
parents: 2760
diff changeset
67 # dh_installmanpages # handled by make install above
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
68 dh_installinfo
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
69 # dh_undocumented
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
70 dh_installchangelogs
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
71 dh_link
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
72 dh_strip
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
73 dh_compress
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
74 dh_fixperms
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
75 # dh_makeshlibs
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
76 dh_installdeb
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
77 dh_perl
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
78 dh_shlibdeps
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
79 dh_gencontrol
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
80 dh_md5sums
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
81 dh_builddeb
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
82
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
83
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
84
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
85 #binary-arch: checkroot build
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
86 # $(checkdir)
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
87 # -rm -rf debian/tmp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
88 # install -d debian/tmp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
89 # cd debian/tmp && install -d `cat ../dirs`
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
90
845
29a3f57d5e1d spellcheck, start of integration with debian menu system, /etc/mplayer.conf
eyck
parents: 821
diff changeset
91
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
92 # Must have debmake installed for this to work. Otherwise please copy
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
93 # /usr/bin/debstd into the debian directory and change debstd to debian/debstd
1397
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
94 # debstd
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
95 # dpkg-gencontrol -isp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
96 # chown -R root.root debian/tmp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
97 # chmod -R go=rX debian/tmp
225b8fb7653f using debhelper instead of hardcoded stuff
eyck
parents: 1231
diff changeset
98 # dpkg --build debian/tmp ..
18
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
99
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
100 binary: binary-indep binary-arch
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
101
531d58007138 Initial revision
arpi_esp
parents:
diff changeset
102 .PHONY: binary binary-arch binary-indep clean checkroot