aboutsummaryrefslogtreecommitdiffstats
path: root/ports-mgmt
diff options
context:
space:
mode:
authorcrees <crees@FreeBSD.org>2012-06-27 04:18:03 +0800
committercrees <crees@FreeBSD.org>2012-06-27 04:18:03 +0800
commit264f18b2807e45109952739b813a6ba9ba6f91f6 (patch)
tree1851fd7d38108cbe11d651f8aa1358d07b9b744b /ports-mgmt
parent067bee7a9a5af6439a003080c0ca4854761dfa90 (diff)
downloadfreebsd-ports-graphics-264f18b2807e45109952739b813a6ba9ba6f91f6.tar.gz
freebsd-ports-graphics-264f18b2807e45109952739b813a6ba9ba6f91f6.tar.zst
freebsd-ports-graphics-264f18b2807e45109952739b813a6ba9ba6f91f6.zip
Import upstream fix for pkgng users-- failed on tc Setup if perl was installed
via pkgng Approved by: itetcu (maintainer)
Diffstat (limited to 'ports-mgmt')
-rw-r--r--ports-mgmt/tinderbox-devel/Makefile1
-rw-r--r--ports-mgmt/tinderbox-devel/files/patch-lib-tinderlib.sh16
2 files changed, 17 insertions, 0 deletions
diff --git a/ports-mgmt/tinderbox-devel/Makefile b/ports-mgmt/tinderbox-devel/Makefile
index 5e92b49e806..996f374cb7a 100644
--- a/ports-mgmt/tinderbox-devel/Makefile
+++ b/ports-mgmt/tinderbox-devel/Makefile
@@ -6,6 +6,7 @@
PORTNAME= tinderbox
DISTVERSION= 3.4${SNAP}
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= ports-mgmt
MASTER_SITES= http://tinderbox.marcuscom.com/ \
diff --git a/ports-mgmt/tinderbox-devel/files/patch-lib-tinderlib.sh b/ports-mgmt/tinderbox-devel/files/patch-lib-tinderlib.sh
new file mode 100644
index 00000000000..9f856eb7db1
--- /dev/null
+++ b/ports-mgmt/tinderbox-devel/files/patch-lib-tinderlib.sh
@@ -0,0 +1,16 @@
+Index: lib/tinderlib.sh
+===================================================================
+RCS file: /space/cvs/marcuscom-cvs/portstools/tinderbox/lib/tinderlib.sh,v
+retrieving revision 1.69
+diff -u -r1.69 tinderlib.sh
+--- lib/tinderlib.sh 20 Jun 2012 20:47:42 -0000 1.69
++++ lib/tinderlib.sh 26 Jun 2012 19:42:23 -0000
+@@ -664,7 +664,7 @@
+
+ for r in ${reqs} ; do
+ if [ "${use_pkgng}" = "yes" ]; then
+- if [ -z $(pkg info -q ${r}) ]; then
++ if [ -z $(pkg info -qgO ${r}) ]; then
+ missing="${missing} ${r}"
+ error=1
+ fi