r311 - packages/libperl6-slurp-perl/trunk

Allard Hoeve hoeve-guest@haydn.debian.org
Wed, 15 Sep 2004 09:43:01 -0600


Author: hoeve-guest
Date: 2004-09-15 09:42:55 -0600 (Wed, 15 Sep 2004)
New Revision: 311

Removed:
   packages/libperl6-slurp-perl/trunk/rules
Log:
There was a rules file in the root of the package archive that wasn't needed

Deleted: packages/libperl6-slurp-perl/trunk/rules
===================================================================
--- packages/libperl6-slurp-perl/trunk/rules	2004-09-14 18:30:00 UTC (rev 310)
+++ packages/libperl6-slurp-perl/trunk/rules	2004-09-15 15:42:55 UTC (rev 311)
@@ -1,91 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-PERL    ?= /usr/bin/perl
-
-package := $(firstword $(shell dh_listpackages))
-prefix  := $(PWD)/debian/$(package)/usr
-
-version := $(shell dpkg-parsechangelog | \
-		sed -ne 's/^Version: *\([0-9]\+:\)*//p')
-
-tag:
-	cvs tag -c -F $(subst .,_,debian_version_$(version))
-ifeq ($(findstring -,$(version)),)
-	cvs tag -c -F $(subst .,_,upstream_version_$(version))
-endif
-
-
-
-build: build-stamp
-
-build-stamp:
-	dh_testdir
-
-	$(PERL) Makefile.PL INSTALLDIRS=vendor PERL=$(PERL)
-	$(MAKE) LD_RUN_PATH=
-
-	touch build-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-
-	# Add here commands to clean up after the build process.
-	-$(MAKE) distclean
-
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
-	# Add here commands to install the package into debian/libperl6-form-perl.
-	$(MAKE) pure_install PREFIX=$(prefix)
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs Changes
-	dh_installdocs
-	dh_installexamples
-#	dh_install
-#	dh_installmenu
-#	dh_installdebconf	
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
-#	dh_installcron
-#	dh_installinfo
-	dh_installman
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-#	dh_perl
-#	dh_python
-#	dh_makeshlibs
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-
-# Build architecture-dependent files here.
-binary-arch: build install
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure