- remove obsolete cvsps junk
authorMark Huang <mlhuang@cs.princeton.edu>
Wed, 8 Mar 2006 21:26:19 +0000 (21:26 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Wed, 8 Mar 2006 21:26:19 +0000 (21:26 +0000)
Patchrules [deleted file]

diff --git a/Patchrules b/Patchrules
deleted file mode 100644 (file)
index 4662946..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-#
-# Hack to generate patch rules for make < 3.80
-#
-# Copyright (c) 2003  The Trustees of Princeton University (Trustees).
-# 
-# $Id: Patchrules,v 1.2 2004/04/09 19:37:19 alk-pl_rpm Exp $
-#
-
-while read PatchSet n ; do
-
-[ "$PatchSet" != "PatchSet" ] && continue;
-
-cat <<EOF
-
-# In case the spec file did not explicitly list the PatchSet
-ifeq (\$(origin Patch${n}),undefined)
-Patch${n} := \$(package)-${n}.patch.bz2
-endif
-
-# Get rid of URL
-Patch${n} := \$(notdir \$(Patch${n}))
-
-# Add patch to the list of sources
-SOURCES += SOURCES/\$(Patch${n})
-
-# Generate uncompressed patch
-SOURCES/\$(patsubst %.gz,%,\$(patsubst %.bz2,%,\$(Patch${n}))):
-       mkdir -p SOURCES
-       cvsps --cvs-direct --root \$(CVSROOT) -g -s ${n} \$(MODULE) > \$@
-EOF
-
-done