aboutsummaryrefslogtreecommitdiffstats
path: root/debian/rules
blob: 6f1b48db74305ca3a15c605eb201819cc6afa9aa (plain) (blame)
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
#!/usr/bin/make -f

#export DH_VERBOSE=1

ifeq ($(DEB_BUILD_GNU_SYSTEM),linux-gnu)
  DEVS=x11,fb+s
else
  DEVS=x11
endif

confargs := --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
	--mandir=/usr/share/man \
	--with-gc --with-ssl \
	--with-migemo="migemo -t egrep /usr/share/migemo/migemo-dict" \
	--with-editor=/usr/bin/sensible-editor \
	--enable-gopher \
	--enable-image=$(DEVS) \
	--enable-m17n --enable-unicode --enable-nls

builddir := .

build: build-stamp
build-stamp:
	dh_testdir
	cd $(builddir) && ./configure $(confargs)
	cd $(builddir) && LC_ALL=C $(MAKE) OPTS="-Wall -g -DDEBIAN"
	cd $(builddir)/po && LC_ALL=C $(MAKE) update-gmo
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	if test -f $(builddir)/Makefile; then cd $(builddir) && $(MAKE) distclean; fi
	rm -f $(builddir)/po/*.gmo
	rm -f $(builddir)/po/stamp-po
	rm -f extract-stamp patch-stamp configure-stamp build-stamp install-stamp
	dh_clean

install: install-stamp
install-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs

	# Add here commands to install the package into debian/w3m.
	cd $(builddir) && $(MAKE) install DESTDIR=`pwd`/debian/w3m
	cd $(builddir)/Bonus && find . -type f -perm 0100 -print | \
	while read i; \
	do \
		sed -e 's:/usr/local/bin/ruby:/usr/bin/ruby:' \
		    -e 's:/bin/env:/usr/bin/env:' \
			$$i \
			> `pwd`/../../../debian/w3m/usr/share/doc/w3m/examples/$$i ; \
	done
	install -m 644 debian/w3mconfig `pwd`/debian/w3m/etc/w3m/config
	install -m 644 debian/mailcap `pwd`/debian/w3m/etc/w3m/mailcap
	dh_movefiles --sourcedir=debian/w3m
	touch install-stamp

binary-indep: build-stamp install-stamp
# We have nothing to do by default.

binary-arch: build-stamp install-stamp
	dh_testdir -a
	dh_testroot -a
	dh_installdocs -a
	cp -a $(builddir)/doc-jp/README.img `pwd`/debian/w3m-img/usr/share/doc/w3m-img/README.img.ja
	cp -a $(builddir)/doc-jp/* `pwd`/debian/w3m/usr/share/doc/w3m/ja/
	-rm -f `pwd`/debian/w3m/usr/share/doc/w3m/ja/w3m.1
	-rm -f `pwd`/debian/w3m/usr/share/doc/w3m/ja/README.img
	-rm -f `pwd`/debian/w3m/usr/share/doc/w3m/ja/README.cygwin
	-rm -rf `pwd`/debian/w3m/usr/share/doc/w3m/ja/CVS
	dh_installexamples -a
	cd `pwd`/debian/w3m/usr/share/doc/w3m && \
		mv ja/keymap.* ja/examples; mv ja/menu.* ja/examples
	dh_installmenu
	dh_installmime
#	dh_installman
	dh_installchangelogs -a $(builddir)/ChangeLog
	dh_strip -a
	dh_compress -a
	dh_fixperms -a
	dh_installdeb -a
	dh_shlibdeps -a
	dh_gencontrol -a
#	dh_makeshlibs -a
	dh_md5sums -a
	dh_builddeb -a

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

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