aboutsummaryrefslogtreecommitdiffstats
path: root/net/asterisk16
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2005-06-19 02:38:33 +0800
committersobomax <sobomax@FreeBSD.org>2005-06-19 02:38:33 +0800
commit13bbcf1b2d2668de6844b873683e0956e2f1ab58 (patch)
treee5c1cb3c70f808915adc2c3c28d8f330bca41366 /net/asterisk16
parenta5a9036645551bacaebfde445a7cb9fb238d928c (diff)
downloadfreebsd-ports-gnome-13bbcf1b2d2668de6844b873683e0956e2f1ab58.tar.gz
freebsd-ports-gnome-13bbcf1b2d2668de6844b873683e0956e2f1ab58.tar.zst
freebsd-ports-gnome-13bbcf1b2d2668de6844b873683e0956e2f1ab58.zip
Use [:lower:]/[:upper:] instead of [a-z]/[A-Z] in tr(1), since the latter
may not work in some locales. PR: 75193 Submitted by: Stuart Barkley <stuartb@4gh.net>
Diffstat (limited to 'net/asterisk16')
-rw-r--r--net/asterisk16/Makefile2
-rw-r--r--net/asterisk16/files/patch-editline::makelist14
2 files changed, 15 insertions, 1 deletions
diff --git a/net/asterisk16/Makefile b/net/asterisk16/Makefile
index 8e936ef47a12..a89c6518acd3 100644
--- a/net/asterisk16/Makefile
+++ b/net/asterisk16/Makefile
@@ -7,7 +7,7 @@
PORTNAME= asterisk
PORTVERSION= 1.0.7
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= net
MASTER_SITES= ftp://ftp.asterisk.org/pub/telephony/asterisk/ \
ftp://ftp.asterisk.org/pub/telephony/asterisk/old-releases/
diff --git a/net/asterisk16/files/patch-editline::makelist b/net/asterisk16/files/patch-editline::makelist
new file mode 100644
index 000000000000..cff9b3ae29e0
--- /dev/null
+++ b/net/asterisk16/files/patch-editline::makelist
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- editline/makelist
++++ editline/makelist
+@@ -145,7 +145,7 @@
+ #
+ -fh)
+ cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
+- sort | tr '[a-z]' '[A-Z]' | $AWK '
++ sort | tr '[:lower:]' '[:upper:]' | $AWK '
+ BEGIN {
+ printf("/* Automatically generated file, do not edit */\n");
+ printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");