summaryrefslogtreecommitdiff
path: root/ports-mgmt/tinderbox-devel
diff options
context:
space:
mode:
authorIon-Mihai Tetcu <itetcu@FreeBSD.org>2006-09-18 20:20:09 +0000
committerIon-Mihai Tetcu <itetcu@FreeBSD.org>2006-09-18 20:20:09 +0000
commitfe40b60865a55559cc46a4c4fd6ad640cf40e3fc (patch)
tree201df490b70ac5e1909ff36e68a092f791d3a759 /ports-mgmt/tinderbox-devel
parent- Add the demo/manual distfile to the "data" group. (diff)
- 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]
Notes
Notes: svn path=/head/; revision=173360
Diffstat (limited to 'ports-mgmt/tinderbox-devel')
-rw-r--r--ports-mgmt/tinderbox-devel/Makefile5
-rw-r--r--ports-mgmt/tinderbox-devel/files/patch-create22
-rw-r--r--ports-mgmt/tinderbox-devel/files/patch-setup.sh0
3 files changed, 24 insertions, 3 deletions
diff --git a/ports-mgmt/tinderbox-devel/Makefile b/ports-mgmt/tinderbox-devel/Makefile
index affee6e2ef70..57157c771f77 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 000000000000..e3b3b75bae45
--- /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 000000000000..e69de29bb2d1
--- /dev/null
+++ b/ports-mgmt/tinderbox-devel/files/patch-setup.sh