pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/scripts Recognize inet6 in PKG_SUPPORTED_OPTIONS as...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7d0d89d3a7c3
branches:  trunk
changeset: 495009:7d0d89d3a7c3
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Jun 01 18:16:20 2005 +0000

description:
Recognize inet6 in PKG_SUPPORTED_OPTIONS as an indicator
that a package support IPv6 (for the README-IPv6.html generation).

diffstat:

 mk/scripts/mkreadme |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r fdf2c0ea6719 -r 7d0d89d3a7c3 mk/scripts/mkreadme
--- a/mk/scripts/mkreadme       Wed Jun 01 18:14:23 2005 +0000
+++ b/mk/scripts/mkreadme       Wed Jun 01 18:16:20 2005 +0000
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: mkreadme,v 1.7 2005/05/22 01:37:31 dmcmahill Exp $
+# $NetBSD: mkreadme,v 1.8 2005/06/01 18:16:20 wiz Exp $
 #
 # Script for README.html generation
 #
@@ -419,7 +419,7 @@
 cd ${PKGSRCDIR}
 ipv6=${TMPDIR}/ipv6pkgs
 ipv6_entries=${TMPDIR}/ipv6_entries
-${GREP} -l '^BUILD_DEFS.*=.*USE_INET6' */*/Makefile  | ${SED} 's;Makefile;;g' > $ipv6
+${GREP} -l -e '^BUILD_DEFS.*=.*USE_INET6' -e '^PKG_SUPPORTED_OPTIONS.*=.*inet6' */*/Makefile */*/options.mk | ${SED} -e 's;Makefile;;g' -e 's;options.mk;;g' > $ipv6
 ${FGREP} -f $ipv6 README-all.html | sort -t/ +1 > $ipv6_entries
 ${SED} \
     -e "/%%TRS%%/r${ipv6_entries}" \



Home | Main Index | Thread Index | Old Index