diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-09-19 04:20:09 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-09-19 04:20:09 +0800 |
commit | f16690c8cc7173790bf2fd2a0d7b364684b29b71 (patch) | |
tree | 41a9401f7a048f64063b5d6266fb6d37068dea19 /ports-mgmt/tinderbox | |
parent | 41761d4af2b5fea5bef930d35782c49f7e371d30 (diff) | |
download | freebsd-ports-gnome-f16690c8cc7173790bf2fd2a0d7b364684b29b71.tar.gz freebsd-ports-gnome-f16690c8cc7173790bf2fd2a0d7b364684b29b71.tar.zst freebsd-ports-gnome-f16690c8cc7173790bf2fd2a0d7b364684b29b71.zip |
- 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]
Diffstat (limited to 'ports-mgmt/tinderbox')
-rw-r--r-- | ports-mgmt/tinderbox/Makefile | 5 | ||||
-rw-r--r-- | ports-mgmt/tinderbox/files/patch-create | 22 | ||||
-rw-r--r-- | ports-mgmt/tinderbox/files/patch-setup.sh | 0 |
3 files changed, 24 insertions, 3 deletions
diff --git a/ports-mgmt/tinderbox/Makefile b/ports-mgmt/tinderbox/Makefile index affee6e2ef70..57157c771f77 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 000000000000..e3b3b75bae45 --- /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 000000000000..e69de29bb2d1 --- /dev/null +++ b/ports-mgmt/tinderbox/files/patch-setup.sh |