From f16690c8cc7173790bf2fd2a0d7b364684b29b71 Mon Sep 17 00:00:00 2001 From: itetcu Date: Mon, 18 Sep 2006 20:20:09 +0000 Subject: - Net/SMTP.pm and Digest/MD5.pm are both installed with perl 5.8.x so drop them from RUN_DEPENDS and add files/patch-setup.sh to patch the distribution [1] - allow creation of a Build that is a substring of an existing one ( files/patch-create) [2] - bump PORTREVISION Submitted by: oliver [1], bsam and marcus [2] Requested by: marcus [1] --- ports-mgmt/tinderbox-devel/Makefile | 5 ++--- ports-mgmt/tinderbox-devel/files/patch-create | 22 ++++++++++++++++++++++ ports-mgmt/tinderbox-devel/files/patch-setup.sh | 0 ports-mgmt/tinderbox/Makefile | 5 ++--- ports-mgmt/tinderbox/files/patch-create | 22 ++++++++++++++++++++++ ports-mgmt/tinderbox/files/patch-setup.sh | 0 6 files changed, 48 insertions(+), 6 deletions(-) create mode 100644 ports-mgmt/tinderbox-devel/files/patch-create create mode 100644 ports-mgmt/tinderbox-devel/files/patch-setup.sh create mode 100644 ports-mgmt/tinderbox/files/patch-create create mode 100644 ports-mgmt/tinderbox/files/patch-setup.sh (limited to 'ports-mgmt') diff --git a/ports-mgmt/tinderbox-devel/Makefile b/ports-mgmt/tinderbox-devel/Makefile index affee6e2ef7..57157c771f7 100644 --- a/ports-mgmt/tinderbox-devel/Makefile +++ b/ports-mgmt/tinderbox-devel/Makefile @@ -6,15 +6,14 @@ PORTNAME= tinderbox PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://tinderbox.marcuscom.com/ MAINTAINER= itetcu@FreeBSD.org COMMENT= Port build tinderbox system -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ - ${SITE_PERL}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net \ - ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB \ +RUN_DEPENDS= ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB \ OPTIONS= PGSQL "With pgsql" Off \ MYSQL "With mysql" On \ diff --git a/ports-mgmt/tinderbox-devel/files/patch-create b/ports-mgmt/tinderbox-devel/files/patch-create new file mode 100644 index 00000000000..e3b3b75bae4 --- /dev/null +++ b/ports-mgmt/tinderbox-devel/files/patch-create @@ -0,0 +1,22 @@ +Index: create +=================================================================== +RCS file: /space/cvs/marcuscom-cvs/portstools/tinderbox/Attic/create,v +retrieving revision 1.5.2.3 +diff -u -r1.5.2.3 create +--- create 6 Apr 2006 05:18:24 -0000 1.5.2.3 ++++ create 13 Sep 2006 19:51:46 -0000 +@@ -49,7 +49,13 @@ + + tcExists () { + list=$(${pb}/scripts/tc list$1 2>/dev/null) +- echo ${list} | grep -qw $2 ++ for obj in ${list}; do ++ if [ x"${obj}" = x"$2" ]; then ++ return 0 ++ fi ++ done ++ ++ return 1 + } + + cleanDirs () { diff --git a/ports-mgmt/tinderbox-devel/files/patch-setup.sh b/ports-mgmt/tinderbox-devel/files/patch-setup.sh new file mode 100644 index 00000000000..e69de29bb2d diff --git a/ports-mgmt/tinderbox/Makefile b/ports-mgmt/tinderbox/Makefile index affee6e2ef7..57157c771f7 100644 --- a/ports-mgmt/tinderbox/Makefile +++ b/ports-mgmt/tinderbox/Makefile @@ -6,15 +6,14 @@ PORTNAME= tinderbox PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://tinderbox.marcuscom.com/ MAINTAINER= itetcu@FreeBSD.org COMMENT= Port build tinderbox system -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ - ${SITE_PERL}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net \ - ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB \ +RUN_DEPENDS= ${LOCALBASE}/share/pear/DB.php:${PORTSDIR}/databases/pear-DB \ OPTIONS= PGSQL "With pgsql" Off \ MYSQL "With mysql" On \ diff --git a/ports-mgmt/tinderbox/files/patch-create b/ports-mgmt/tinderbox/files/patch-create new file mode 100644 index 00000000000..e3b3b75bae4 --- /dev/null +++ b/ports-mgmt/tinderbox/files/patch-create @@ -0,0 +1,22 @@ +Index: create +=================================================================== +RCS file: /space/cvs/marcuscom-cvs/portstools/tinderbox/Attic/create,v +retrieving revision 1.5.2.3 +diff -u -r1.5.2.3 create +--- create 6 Apr 2006 05:18:24 -0000 1.5.2.3 ++++ create 13 Sep 2006 19:51:46 -0000 +@@ -49,7 +49,13 @@ + + tcExists () { + list=$(${pb}/scripts/tc list$1 2>/dev/null) +- echo ${list} | grep -qw $2 ++ for obj in ${list}; do ++ if [ x"${obj}" = x"$2" ]; then ++ return 0 ++ fi ++ done ++ ++ return 1 + } + + cleanDirs () { diff --git a/ports-mgmt/tinderbox/files/patch-setup.sh b/ports-mgmt/tinderbox/files/patch-setup.sh new file mode 100644 index 00000000000..e69de29bb2d -- cgit