aboutsummaryrefslogtreecommitdiff
path: root/ports-mgmt/portconf
diff options
context:
space:
mode:
authorAlex Dupre <ale@FreeBSD.org>2012-07-09 13:49:02 +0000
committerAlex Dupre <ale@FreeBSD.org>2012-07-09 13:49:02 +0000
commit15fad6f56330c2e75d07d991749573219fd62ff7 (patch)
tree6a654d4282fbd36c402157c8e494b1f834d71f11 /ports-mgmt/portconf
parentad5db0b8b58d08fa756aeb056e87ecccbd6248d4 (diff)
downloadports-15fad6f56330c2e75d07d991749573219fd62ff7.tar.gz
ports-15fad6f56330c2e75d07d991749573219fd62ff7.zip
Match also lowercase letters in port knobs (used by ghostscript) and
update pkg-message.
Notes
Notes: svn path=/head/; revision=300676
Diffstat (limited to 'ports-mgmt/portconf')
-rw-r--r--ports-mgmt/portconf/Makefile2
-rw-r--r--ports-mgmt/portconf/files/pkg-message.in2
-rw-r--r--ports-mgmt/portconf/files/portconf.sh.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/ports-mgmt/portconf/Makefile b/ports-mgmt/portconf/Makefile
index e0422753537a..ae4f353849e6 100644
--- a/ports-mgmt/portconf/Makefile
+++ b/ports-mgmt/portconf/Makefile
@@ -8,7 +8,7 @@
#
PORTNAME= portconf
-PORTVERSION= 1.4
+PORTVERSION= 1.5
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none
diff --git a/ports-mgmt/portconf/files/pkg-message.in b/ports-mgmt/portconf/files/pkg-message.in
index dfc8b199c4f9..37ee60ebb7db 100644
--- a/ports-mgmt/portconf/files/pkg-message.in
+++ b/ports-mgmt/portconf/files/pkg-message.in
@@ -7,7 +7,7 @@ with the following syntax:
---------------------------------------------------------
# this is a comment
*: NOPORTDOCS
-editors/openoffice.org-2: WITH_CCACHE|LOCALIZED_LANG=it
+editors/openoffice-3: WITH_CCACHE|LOCALIZED_LANG=it
print/ghostscript-* print/lpr-wrapper: A4
sysutils/fusefs-kmod*: !KERNCONF | !NOPORTDOCS
www/firefox-i18n: WITHOUT_SWITCHER | FIREFOX_I18N=fr it
diff --git a/ports-mgmt/portconf/files/portconf.sh.in b/ports-mgmt/portconf/files/portconf.sh.in
index e40e2468cfaf..5a3ac83df3f9 100644
--- a/ports-mgmt/portconf/files/portconf.sh.in
+++ b/ports-mgmt/portconf/files/portconf.sh.in
@@ -36,7 +36,7 @@ _pwd=`pwd`
sed '/^#/d;/^[[:space:]]*$/d' "${_conf}" | while read _line; do
for _port in ${_line%%:*}; do
if [ "${_pwd%%${_port}}" != "${_pwd}" ]; then
- echo ${_line#*:} | sed -E 's/([A-Z0-9_]+)(=([^|]+))?/\1=\3/g;s/!([A-Z0-9_]+)=([^|]+)?/.undef \1/g;s/ *\| */|/g;s/ /%/g'
+ echo ${_line#*:} | sed -E 's/([A-Za-z0-9_]+)(=([^|]+))?/\1=\3/g;s/!([A-Za-z0-9_]+)=([^|]+)?/.undef \1/g;s/ *\| */|/g;s/ /%/g'
fi
done
done