summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-27 05:21:22 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-27 05:21:22 +0000
commitee71158de47807b67aecf1fd0114eef5cfb367c1 (patch)
treec5240bf11f669f206f520b6b27137a0109664571 /net-analyzer
parentStable on x86; thanks to Thomas Cort for testing (diff)
downloadhistorical-ee71158de47807b67aecf1fd0114eef5cfb367c1.tar.gz
historical-ee71158de47807b67aecf1fd0114eef5cfb367c1.tar.bz2
historical-ee71158de47807b67aecf1fd0114eef5cfb367c1.zip
Make sure the inverted options are handled properly #111557.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/ntop/ChangeLog6
-rw-r--r--net-analyzer/ntop/Manifest10
-rw-r--r--net-analyzer/ntop/files/ntop-3.2-build.patch32
3 files changed, 36 insertions, 12 deletions
diff --git a/net-analyzer/ntop/ChangeLog b/net-analyzer/ntop/ChangeLog
index 259d8f28ef85..75cb6e452dcc 100644
--- a/net-analyzer/ntop/ChangeLog
+++ b/net-analyzer/ntop/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/ntop
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.42 2006/01/12 18:49:12 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.43 2006/01/27 05:21:22 vapier Exp $
+
+ 27 Jan 2006; Mike Frysinger <vapier@gentoo.org>
+ files/ntop-3.2-build.patch:
+ Make sure the inverted options are handled properly #111557.
12 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org> ntop-3.0.ebuild:
Stable on amd64.
diff --git a/net-analyzer/ntop/Manifest b/net-analyzer/ntop/Manifest
index c43207a9c7bd..e34e2758d21d 100644
--- a/net-analyzer/ntop/Manifest
+++ b/net-analyzer/ntop/Manifest
@@ -1,12 +1,12 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
-MD5 d82dbbaed43cc7aa0b4c9228b8f42f1b ChangeLog 5429
+MD5 a2b7895db61397ef0d63613bd44e0f17 ChangeLog 5574
MD5 35c576fac5bd8cbf0da850ccc00dd924 files/digest-ntop-3.0 58
MD5 bb970d07a76d2b939ec08c2796519021 files/digest-ntop-3.1 58
MD5 7a846588a225f1493025737d4bbfb844 files/digest-ntop-3.2 58
MD5 d1e896708a98eaca02f55c44ae517768 files/globals-core.c.diff 536
-MD5 0a1a07f655a6454b160dac679d2c0fde files/ntop-3.2-build.patch 8743
+MD5 21f35f61ff1c20d194e7f4c246c2b002 files/ntop-3.2-build.patch 9369
MD5 43a9167b2aa1fc1db92721d7e4bfeb09 files/ntop-confd 168
MD5 9e6b1e20779d7fb6699c956adf6b8b05 files/ntop-init 294
MD5 846e7479e3e9df4363f2721b7fb47320 metadata.xml 233
@@ -16,7 +16,7 @@ MD5 01c250e02b69cd8bccde11382d0ef74e ntop-3.2.ebuild 1983
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
-iD8DBQFDxqSzntT9W3vfTuoRAkF3AJ9oyreMZ2nF6kTSigd8nYe5UKGQ2wCgrpTw
-j6eAbkz/cByGtClQQvLkBWM=
-=k9GC
+iD8DBQFD2a3h2+ySkm8kpY0RAja2AKCCRAnNLGXraOZq0MemhTc2KFv1GQCdF/+5
+Vm3vVqn/ZNEx5TE8pQlpnfg=
+=OUPK
-----END PGP SIGNATURE-----
diff --git a/net-analyzer/ntop/files/ntop-3.2-build.patch b/net-analyzer/ntop/files/ntop-3.2-build.patch
index 8539b3a98168..eae246978929 100644
--- a/net-analyzer/ntop/files/ntop-3.2-build.patch
+++ b/net-analyzer/ntop/files/ntop-3.2-build.patch
@@ -131,18 +131,26 @@ cleanup autotools
ac_willfailoverride="no")
AC_ARG_ENABLE(void,
-@@ -665,63 +665,63 @@
+@@ -665,63 +665,83 @@
AC_ARG_WITH(ssl,
[ --without-ssl disable HTPPS support [[default=enabled]]],
- ac_disable_openssl="yes",
-+ ac_disable_openssl="$withval",
++ if test "x$withval" = xno; then
++ ac_disable_openssl="yes"
++ else
++ ac_disable_openssl="no"
++ fi,
ac_disable_openssl="no")
AC_ARG_WITH(zlib,
[ --without-zlib disable zlib [[default=enabled]]],
- ac_disable_zlib="yes",
-+ ac_disable_zlib="$withval",
++ if test "x$withval" = xno; then
++ ac_disable_zlib="yes"
++ else
++ ac_disable_zlib="no"
++ fi,
ac_disable_zlib="no")
AC_ARG_ENABLE(sslv3,
@@ -166,7 +174,11 @@ cleanup autotools
AC_ARG_ENABLE(plugins,
[ --disable-plugins disable compilation of plugins [[default=enabled]]],
- ac_disable_plugins="yes",
-+ ac_disable_plugins="$enableval",
++ if test "x$enableval" = xno; then
++ ac_disable_plugins="yes"
++ else
++ ac_disable_plugins="no"
++ fi,
ac_disable_plugins="no")
AC_ARG_ENABLE( static-plugins,
@@ -185,7 +197,11 @@ cleanup autotools
AC_ARG_ENABLE(snmp,
[ --disable-snmp Disable SNMP support [[default=disable]]],
- ac_disable_snmp="no",
-+ ac_disable_snmp="$enableval",
++ if test "x$enableval" = xno; then
++ ac_disable_snmp="yes"
++ else
++ ac_disable_snmp="no"
++ fi,
ac_disable_snmp="yes")
AC_ARG_ENABLE(i18n,
@@ -204,7 +220,11 @@ cleanup autotools
[ --disable-ipv6 use IPv6 [[default=enabled]]],
- ac_disable_ipv6="yes",
- ac_disable_ipv6="no")
-+ ac_disable_ipv6="$enableval",
++ if test "x$enableval" = xno; then
++ ac_disable_ipv6="yes"
++ else
++ ac_disable_ipv6="no"
++ fi,
+ ac_disable_ipv6="no")
dnl>