diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-09-18 20:20:09 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-09-18 20:20:09 +0000 |
commit | fe40b60865a55559cc46a4c4fd6ad640cf40e3fc (patch) | |
tree | 201df490b70ac5e1909ff36e68a092f791d3a759 /ports-mgmt/tinderbox | |
parent | 32e006c98c83189c6c70a92d7f037a6abeab2b44 (diff) | |
download | ports-fe40b60865a55559cc46a4c4fd6ad640cf40e3fc.tar.gz ports-fe40b60865a55559cc46a4c4fd6ad640cf40e3fc.zip |
Notes
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 |