svn commit: r392193 - in head/ports-mgmt/porttools: . files
Steven Kreuzer
skreuzer at FreeBSD.org
Wed Jul 15 18:46:49 UTC 2015
Author: skreuzer
Date: Wed Jul 15 18:46:48 2015
New Revision: 392193
URL: https://svnweb.freebsd.org/changeset/ports/392193
Log:
Add a patch to address an issues that causes the port create command to use
a non existant template when trying to use the 'default' template
Added:
head/ports-mgmt/porttools/files/
head/ports-mgmt/porttools/files/patch-scripts_cmd__create.in (contents, props changed)
Modified:
head/ports-mgmt/porttools/Makefile
Modified: head/ports-mgmt/porttools/Makefile
==============================================================================
--- head/ports-mgmt/porttools/Makefile Wed Jul 15 18:38:48 2015 (r392192)
+++ head/ports-mgmt/porttools/Makefile Wed Jul 15 18:46:48 2015 (r392193)
@@ -3,6 +3,7 @@
PORTNAME= porttools
PORTVERSION= 1.05
+PORTREVISION= 1
CATEGORIES= ports-mgmt
MAINTAINER= skreuzer at FreeBSD.org
Added: head/ports-mgmt/porttools/files/patch-scripts_cmd__create.in
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/ports-mgmt/porttools/files/patch-scripts_cmd__create.in Wed Jul 15 18:46:48 2015 (r392193)
@@ -0,0 +1,11 @@
+--- scripts/cmd_create.in.orig 2015-07-15 17:45:24 UTC
++++ scripts/cmd_create.in
+@@ -69,7 +69,7 @@ else
+ fi
+
+ PORTBASE=$(basename ${ARG_PORTNAME})
+-PORTPREFIX=$(echo ${PORTBASE} | cut -d- -f1)
++PORTPREFIX=$(echo ${PORTBASE} | cut -s -d- -f1)
+
+ # Work around the fact that R modules are
+ # prefixed with R-cran
More information about the svn-ports-all
mailing list