diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-02-19 12:00:58 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-02-19 12:00:58 +0000 |
commit | 8a80231b5935916193419b06ac406f323d27962b (patch) | |
tree | 6e99119d42f61b48d9970f53f1dce5fd611560fe /net-analyzer | |
parent | Fixed broken install routines as per bug #82364 (diff) | |
download | historical-8a80231b5935916193419b06ac406f323d27962b.tar.gz historical-8a80231b5935916193419b06ac406f323d27962b.tar.bz2 historical-8a80231b5935916193419b06ac406f323d27962b.zip |
Quoted NTOP_OPTS in /etc/conf.d/ntop to fix bug #80663
Package-Manager: portage-2.0.51.16
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/ntop/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/ntop/Manifest | 14 | ||||
-rw-r--r-- | net-analyzer/ntop/ntop-3.1.ebuild | 4 |
3 files changed, 14 insertions, 10 deletions
diff --git a/net-analyzer/ntop/ChangeLog b/net-analyzer/ntop/ChangeLog index f52c986a86d2..8caa4307936b 100644 --- a/net-analyzer/ntop/ChangeLog +++ b/net-analyzer/ntop/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/ntop # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.34 2005/02/10 18:13:58 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.35 2005/02/19 12:00:58 dragonheart Exp $ + + 19 Feb 2005; Daniel Black <dragonheart@gentoo.org> ntop-3.1.ebuild: + Quoted NTOP_OPTS in /etc/conf.d/ntop to fix bug #80663. Thanks to\ Alan McNeil + <alanmcneil@mac.com> 10 Feb 2005; Aaron Walker <ka0ttic@gentoo.org> ntop-3.1.ebuild: Install internal html files to the correct place for bug 81449. diff --git a/net-analyzer/ntop/Manifest b/net-analyzer/ntop/Manifest index 42bcf2bff466..8d44a09983a0 100644 --- a/net-analyzer/ntop/Manifest +++ b/net-analyzer/ntop/Manifest @@ -1,19 +1,19 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 fafb4e4ce6bacc5a95beefc236748aac ntop-3.1.ebuild 2338 -MD5 ebf97d76921e175f2af48c0811a84cec ntop-3.0.ebuild 1604 -MD5 824a2cd693c9e477b10352d6eb67e850 ChangeLog 4243 +MD5 6387a827ba513cc9fd9749bc3f6298a0 ChangeLog 4422 MD5 846e7479e3e9df4363f2721b7fb47320 metadata.xml 233 +MD5 ebf97d76921e175f2af48c0811a84cec ntop-3.0.ebuild 1604 +MD5 e359b795c421393d502bfdb71932595a ntop-3.1.ebuild 2344 MD5 35c576fac5bd8cbf0da850ccc00dd924 files/digest-ntop-3.0 58 MD5 bb970d07a76d2b939ec08c2796519021 files/digest-ntop-3.1 58 -MD5 a9cad5851ac81cbd8589f60287f3e497 files/ntop-confd 131 MD5 d1e896708a98eaca02f55c44ae517768 files/globals-core.c.diff 536 +MD5 a9cad5851ac81cbd8589f60287f3e497 files/ntop-confd 131 MD5 9e6b1e20779d7fb6699c956adf6b8b05 files/ntop-init 294 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) -iD8DBQFCC6RuEZCkKN40op4RAl6DAKC7rJNJ5vt8qHTxLszylU0bfmm4GgCeP8qs -JbmL1pH5yucOdd5VClVxQL8= -=mHRU +iD8DBQFCFyqAmdTrptrqvGERAr50AJ9hR1GsCjAqS0kJ8iII24gbzjnj9wCgkZxG +kF+Y+NPAQjz2kqJuihGXU6M= +=sG8z -----END PGP SIGNATURE----- diff --git a/net-analyzer/ntop/ntop-3.1.ebuild b/net-analyzer/ntop/ntop-3.1.ebuild index 18d8c4da81bd..ddc21d0d1775 100644 --- a/net-analyzer/ntop/ntop-3.1.ebuild +++ b/net-analyzer/ntop/ntop-3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-3.1.ebuild,v 1.3 2005/02/10 18:13:58 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-3.1.ebuild,v 1.4 2005/02/19 12:00:58 dragonheart Exp $ inherit gnuconfig eutils @@ -85,6 +85,6 @@ src_install() { exeinto /etc/init.d ; newexe ${FILESDIR}/ntop-init ntop insinto /etc/conf.d ; newins ${FILESDIR}/ntop-confd ntop - echo NTOP_OPTS="-u ntop -P /var/lib/ntop" >> ${D}/etc/conf.d/ntop + echo 'NTOP_OPTS="-u ntop -P /var/lib/ntop"' >> ${D}/etc/conf.d/ntop } |