r7528 - in /general/nvram-wakeup/branches/lenny/debian: changelog control rules
tiber-guest at users.alioth.debian.org
tiber-guest at users.alioth.debian.org
Sat Jan 3 13:48:46 UTC 2009
Author: tiber-guest
Date: Sat Jan 3 13:48:46 2009
New Revision: 7528
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/?sc=1&rev=7528
Log:
switched back from cdbs to plain debian/rules as requested by the release team
Modified:
general/nvram-wakeup/branches/lenny/debian/changelog
general/nvram-wakeup/branches/lenny/debian/control
general/nvram-wakeup/branches/lenny/debian/rules
Modified: general/nvram-wakeup/branches/lenny/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/nvram-wakeup/branches/lenny/debian/changelog?rev=7528&op=diff
==============================================================================
--- general/nvram-wakeup/branches/lenny/debian/changelog (original)
+++ general/nvram-wakeup/branches/lenny/debian/changelog Sat Jan 3 13:48:46 2009
@@ -1,4 +1,4 @@
-nvram-wakeup (0.97-15) unstable; urgency=medium
+nvram-wakeup (0.97-14lenny1) testing-proposed-updates; urgency=medium
[ Tobias Grimm ]
* Don't install /usr/sbin/time anymore. The functionallity of this tool can
@@ -16,7 +16,6 @@
should be automatically created on every installation (closes: #428694)
* Using COMPAT=5 now
* Bumped Standards-Version to 3.8.0
- * Switched Build-System to cdbs, Build-Depend on cdbs
-- Tobias Grimm <etobi at debian.org> Sat, 03 Jan 2009 05:10:45 +0100
Modified: general/nvram-wakeup/branches/lenny/debian/control
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/nvram-wakeup/branches/lenny/debian/control?rev=7528&op=diff
==============================================================================
--- general/nvram-wakeup/branches/lenny/debian/control (original)
+++ general/nvram-wakeup/branches/lenny/debian/control Sat Jan 3 13:48:46 2009
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>
Uploaders: Tobias Grimm <etobi at debian.org>, Thomas Schmidt <tschmidt at debian.org>
-Build-Depends: debhelper (>> 4.1.16), cdbs, dpatch
+Build-Depends: debhelper (>> 4.1.16), dpatch
Standards-Version: 3.8.0
XS-Vcs-Svn: svn://svn.debian.org/pkg-vdr-dvb/general/nvram-wakeup/trunk/
XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/nvram-wakeup/trunk/
Modified: general/nvram-wakeup/branches/lenny/debian/rules
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/general/nvram-wakeup/branches/lenny/debian/rules?rev=7528&op=diff
==============================================================================
--- general/nvram-wakeup/branches/lenny/debian/rules (original)
+++ general/nvram-wakeup/branches/lenny/debian/rules Sat Jan 3 13:48:46 2009
@@ -1,15 +1,84 @@
#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/makefile.mk
-# include /usr/share/cdbs/1/rules/dpatch.mk
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
-DEB_INSTALL_CHANGELOGS_ALL = HISTORY
+# include dpatch stuff
+include /usr/share/dpatch/dpatch.make
-#
-# TODO: This breaks DEB_BUILD_OPTIONS,
-# Better hardcode the essential compiler switches in the upstream source
-# instead of making them overrideable in user overridable variables like
-# CFLAGS!
-#
-DEB_MAKE_INVOKE := $(DEB_MAKE_ENVVARS) make -C $(DEB_BUILDDIR)
+ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -g
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+ INSTALL_PROGRAM += -s
+endif
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ # Add here commands to configure the package.
+
+ touch configure-stamp
+
+
+build: patch-stamp build-stamp
+
+build-stamp: configure-stamp
+ dh_testdir
+
+ # Add here commands to compile the package.
+ $(MAKE)
+
+ touch build-stamp
+
+clean: clean-patched unpatch
+
+clean-patched:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ # Add here commands to clean up after the build process.
+ $(MAKE) clean
+ rm -f debian/guess-helper.mo
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ dh_install
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+# dh_installdebconf
+ dh_installdocs
+ dh_installexamples
+ dh_installmenu
+ dh_installcron
+ dh_installman
+ dh_installinfo
+ dh_installchangelogs HISTORY
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install patch unpatch \
+ configure
More information about the pkg-vdr-dvb-changes
mailing list