Author: pabs Date: 2010-09-11 09:16:48 +0000 (Sat, 11 Sep 2010) New Revision: 11377
Added: packages/trunk/3dchess/debian/install packages/trunk/3dchess/debian/manpages Modified: packages/trunk/3dchess/debian/changelog packages/trunk/3dchess/debian/compat packages/trunk/3dchess/debian/control packages/trunk/3dchess/debian/rules Log: Switch to debhelper 7 minimal rules file Modified: packages/trunk/3dchess/debian/changelog =================================================================== --- packages/trunk/3dchess/debian/changelog 2010-09-11 09:04:39 UTC (rev 11376) +++ packages/trunk/3dchess/debian/changelog 2010-09-11 09:16:48 UTC (rev 11377) @@ -4,6 +4,7 @@ * Update package description to be more accurate (LP: #602662) * Use new quilt format instead of dpatch and merge inc patches * Bump Standards-Version, no changes needed + * Switch to debhelper 7 minimal rules file -- Paul Wise <[email protected]> Sat, 11 Sep 2010 16:04:40 +0800 Modified: packages/trunk/3dchess/debian/compat =================================================================== --- packages/trunk/3dchess/debian/compat 2010-09-11 09:04:39 UTC (rev 11376) +++ packages/trunk/3dchess/debian/compat 2010-09-11 09:16:48 UTC (rev 11377) @@ -1 +1 @@ -5 +7 Modified: packages/trunk/3dchess/debian/control =================================================================== --- packages/trunk/3dchess/debian/control 2010-09-11 09:04:39 UTC (rev 11376) +++ packages/trunk/3dchess/debian/control 2010-09-11 09:16:48 UTC (rev 11377) @@ -4,7 +4,7 @@ Maintainer: Debian Games Team <[email protected]> Uploaders: Barry deFreese <[email protected]> Standards-Version: 3.9.1 -Build-Depends: debhelper (>= 5), xaw3dg-dev, libx11-dev, libxpm-dev, libxt-dev, x11proto-core-dev, libxaw7-dev +Build-Depends: debhelper (>= 7.0.50~), xaw3dg-dev, libx11-dev, libxpm-dev, libxt-dev, x11proto-core-dev, libxaw7-dev Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/3dchess/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/3dchess/?op=log Added: packages/trunk/3dchess/debian/install =================================================================== --- packages/trunk/3dchess/debian/install (rev 0) +++ packages/trunk/3dchess/debian/install 2010-09-11 09:16:48 UTC (rev 11377) @@ -0,0 +1 @@ +debian/3dchess.desktop usr/share/applications Added: packages/trunk/3dchess/debian/manpages =================================================================== --- packages/trunk/3dchess/debian/manpages (rev 0) +++ packages/trunk/3dchess/debian/manpages 2010-09-11 09:16:48 UTC (rev 11377) @@ -0,0 +1 @@ +debian/3Dc.6 Modified: packages/trunk/3dchess/debian/rules =================================================================== --- packages/trunk/3dchess/debian/rules 2010-09-11 09:04:39 UTC (rev 11376) +++ packages/trunk/3dchess/debian/rules 2010-09-11 09:16:48 UTC (rev 11377) @@ -1,72 +1,15 @@ #!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. +%: + dh $@ --parallel -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif - - -build: build-stamp -build-stamp: - dh_testdir - +override_dh_auto_build: $(MAKE) -C `pwd`/src - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - # Add here commands to clean up after the build process. +override_dh_auto_clean: [ ! -f "`pwd`/src/Makefile" ] || $(MAKE) -C `pwd`/src clean - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - dh_install debian/3dchess.desktop usr/share/applications - +override_dh_auto_install: $(MAKE) -C `pwd`/src install BINDIR=`pwd`/debian/3dchess/usr/games -# 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 +override_dh_installchangelogs: dh_installchangelogs CHANGES - dh_installdocs - dh_installexamples - dh_installmenu - dh_installman debian/3Dc.6 - 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 _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

