r369 - vdr/vdr-plugin-dvd/trunk/debian
Tobias Grimm
pkg-vdr-dvb-changes@lists.alioth.debian.org
Fri, 01 Apr 2005 23:34:35 +0000
Author: tiber-guest
Date: 2005-04-01 23:34:34 +0000 (Fri, 01 Apr 2005)
New Revision: 369
Modified:
vdr/vdr-plugin-dvd/trunk/debian/rules
Log:
vdr-plugin-dvd: use "standard" rules file, no need to specify NAVDIR
Modified: vdr/vdr-plugin-dvd/trunk/debian/rules
===================================================================
--- vdr/vdr-plugin-dvd/trunk/debian/rules 2005-04-01 23:24:11 UTC (rev 368)
+++ vdr/vdr-plugin-dvd/trunk/debian/rules 2005-04-01 23:34:34 UTC (rev 369)
@@ -8,9 +8,6 @@
# This is the debhelper compatibility version to use.
export DH_COMPAT=4
-# include dpatch stuff
-include /usr/share/dpatch/dpatch.make
-
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -g
endif
@@ -20,38 +17,39 @@
# Set VDR=vdr or VDR=vdrdevel - vdrdevel always uses dpatch
VDR=$(shell dh_listpackages | grep "^vdr.*-" | head -n 1 | sed -e "s/-.*//")
+ifeq ($(VDR), vdrdevel)
+ DPATCH=yes
+endif
-PACKAGE=$(VDR)-plugin-dvd
-VDRDIR=/usr/include/$(VDR)
-DVBDIR=/usr/include
+# To use dpatch uncomment the following line and set Build-Depends to dpatch
+DPATCH=yes
+ifdef DPATCH
+include /usr/share/dpatch/dpatch.make
+else
+patch:
+patch-stamp:
+unpatch:
+endif
+
configure: configure-stamp
-configure-stamp:
+configure-stamp: patch-stamp
dh_testdir
-
touch configure-stamp
-
-build: patch-stamp build-stamp
-
-build-stamp: configure-stamp
+build: build-stamp
+build-stamp: configure-stamp
dh_testdir
-
- $(MAKE) all NEWSTRUCT=1 VDRDIR=$(VDRDIR) VDRINC=$(VDRDIR) \
- LIBDIR=. NAVDIR=/usr/include/dvdnav
-
+ $(MAKE) all DVBDIR=/usr VDRDIR=/usr/include/$(VDR) LIBDIR=.
touch build-stamp
clean: clean-patched unpatch
-
clean-patched:
dh_testdir
dh_testroot
-
rm -f build-stamp configure-stamp
- rm -f libvdr-*.so*
- -make clean
-
+ $(MAKE) -o .dependencies clean
+ rm -f libvdr-*.so.*
dh_clean
install: build
@@ -59,7 +57,6 @@
dh_testroot
dh_clean -k
dh_installdirs
-
dh_install
# Build architecture-independent files here.
@@ -70,18 +67,27 @@
binary-arch: build install
dh_testdir
dh_testroot
+# dh_installdebconf
dh_installdocs
dh_installexamples
- dh_installmenu
- dh_installcron
- dh_installman
- dh_installinfo
- dh_installchangelogs
+# dh_installmenu
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_installinit
+# dh_installcron
+# dh_installman
+# dh_installinfo
+# dh_undocumented
+ dh_installchangelogs HISTORY
dh_link
dh_strip
dh_compress
dh_fixperms
+# dh_makeshlibs
dh_installdeb
+# dh_perl
dh_shlibdeps
/usr/lib/$(VDR)-dev/patchlevel.sh subst
dh_gencontrol
@@ -89,4 +95,5 @@
dh_builddeb
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install patch unpatch configure
+.PHONY: build clean binary-indep binary-arch binary install configure \
+ clean-patched patch unpatch