pkgsrc/www/aws/patches/patch-docs__gentexifile
marino bb3560846e www/aws: Update to from version 2.10.0 to 3.1.0
There is no dedicated change log but version 2.10 was introduced to
pkgsrc 2.5 years ago.  The current capability is described by
http://docs.adacore.com/aws-docs/aws.html

This is roughly equivalent to Adacore release 2013 of aws.
The "gnutls" option was added as an alternative to ssl.
2013-07-07 23:46:50 +00:00

29 lines
860 B
Text

$NetBSD: patch-docs__gentexifile,v 1.1 2013/07/07 23:46:50 marino Exp $
Always use native awk, passed though MAKE_ENV
--- docs/gentexifile.orig 2013-07-03 01:11:54.000000000 +0000
+++ docs/gentexifile
@@ -32,12 +32,7 @@ SOURCE=$1
TARGET=`basename ${SOURCE}`.texi
TMPTAR=${TARGET}.tmp
-awk=`type gawk 2>/dev/null`
-if [ x"$awk" = x ]; then
- awk="awk"
-else
- awk="gawk"
-fi
+awk=${AWK}
$awk 'BEGIN{out=1}$1=="end"&&substr($0,1,1)=="e"{out=1}out==1{print}$1=="private"&&$2!="with"&&out==1{out=0; print " -- implementation removed"}' ${SOURCE} > genout
@@ -51,7 +46,7 @@ if [ $# = 1 ]; then
echo "@group" >>${TMPTAR}
fi
echo "" >>${TMPTAR}
-sed -f ada.sed genout >>${TMPTAR}
+sed -E -f ada.sed genout >>${TMPTAR}
echo "" >>${TMPTAR}
if [ $# = 1 ]; then
echo "@end group" >>${TMPTAR}