diff options
author | Eldad Zack <eldad@gentoo.org> | 2004-10-14 15:03:24 +0000 |
---|---|---|
committer | Eldad Zack <eldad@gentoo.org> | 2004-10-14 15:03:24 +0000 |
commit | c95c91a8bef8b521b660075b03b591df6c47bcf1 (patch) | |
tree | b7ca41ac8d6d19f65739a08af8b225db1ca5a5f2 /net-analyzer/ethereal | |
parent | Added to x86. Use gcc-getCC rather than CC. (diff) | |
download | historical-c95c91a8bef8b521b660075b03b591df6c47bcf1.tar.gz historical-c95c91a8bef8b521b660075b03b591df6c47bcf1.tar.bz2 historical-c95c91a8bef8b521b660075b03b591df6c47bcf1.zip |
Fixed myconf overwriting. Closes bug #66747.
Diffstat (limited to 'net-analyzer/ethereal')
-rw-r--r-- | net-analyzer/ethereal/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/ethereal/Manifest | 18 | ||||
-rw-r--r-- | net-analyzer/ethereal/ethereal-0.10.6.ebuild | 6 |
3 files changed, 16 insertions, 13 deletions
diff --git a/net-analyzer/ethereal/ChangeLog b/net-analyzer/ethereal/ChangeLog index 6254a5e96ac7..2d837e65e66f 100644 --- a/net-analyzer/ethereal/ChangeLog +++ b/net-analyzer/ethereal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/ethereal # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.83 2004/09/03 21:52:59 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.84 2004/10/14 15:03:24 eldad Exp $ + + 14 Oct 2004; Eldad Zack <eldad@gentoo.org> ethereal-0.10.6.ebuild: + Fixed myconf overwriting. Closes bug #66747. 16 Aug 2004; Eldad Zack <eldad@gentoo.org> -files/0.10.3-gcc34.patch, -files/0.10.6-gcc34.patch, ethereal-0.10.6.ebuild: diff --git a/net-analyzer/ethereal/Manifest b/net-analyzer/ethereal/Manifest index d1cf88c32130..b0df9c9be9cf 100644 --- a/net-analyzer/ethereal/Manifest +++ b/net-analyzer/ethereal/Manifest @@ -1,19 +1,19 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 4b8447a4a8741c7d0ea83961f52a04bc ChangeLog 3901 -MD5 67fe3215c33eaf71089ce034d4716645 ethereal-0.10.6.ebuild 2402 MD5 e70cd283dc61b8b8ffdaba5e82ceb873 ethereal-0.10.5.ebuild 2580 -MD5 17a9be2cf8cb9f24e7e5b398392483b4 metadata.xml 224 +MD5 869726c833dbbe3636d1463b1cbcbfe1 ethereal-0.10.6.ebuild 2422 +MD5 22d38477be2dd2484c4ea2a3efb404f3 ChangeLog 4018 MD5 bb9946fe6df0695a2376909c6e3cbd2d ethereal-0.10.5-r1.ebuild 2595 +MD5 17a9be2cf8cb9f24e7e5b398392483b4 metadata.xml 224 +MD5 5a73274ec255373b4e618388cd057275 files/0.10.4-gcc34.patch 458 +MD5 56d5feedd5047dd2b7bcd4c9295addef files/digest-ethereal-0.10.5-r1 69 MD5 56d5feedd5047dd2b7bcd4c9295addef files/digest-ethereal-0.10.5 69 MD5 5bc98004e6492e3349a16bf0591c743e files/digest-ethereal-0.10.6 69 -MD5 56d5feedd5047dd2b7bcd4c9295addef files/digest-ethereal-0.10.5-r1 69 -MD5 5a73274ec255373b4e618388cd057275 files/0.10.4-gcc34.patch 458 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) +Version: GnuPG v1.2.6 (GNU/Linux) -iD8DBQFBUsx4HTu7gpaalycRAru4AJ4+iBscFsEhvPmb6PN43xwu6DuUhACfVZrk -ZUxw3GS0U0pB0Xk1GHKzQvU= -=VEqt +iD8DBQFBbpT8T+MN7JbqCpMRAtWuAJ41JjdVBS6l6ufSICwd5LP6jDGENgCfRdne +hWP38BR2wJ2tsdMTZ6OWwQA= +=/FDE -----END PGP SIGNATURE----- diff --git a/net-analyzer/ethereal/ethereal-0.10.6.ebuild b/net-analyzer/ethereal/ethereal-0.10.6.ebuild index e94a8434cb20..8626e6f1dabe 100644 --- a/net-analyzer/ethereal/ethereal-0.10.6.ebuild +++ b/net-analyzer/ethereal/ethereal-0.10.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.10.6.ebuild,v 1.3 2004/08/16 07:35:32 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.10.6.ebuild,v 1.4 2004/10/14 15:03:24 eldad Exp $ inherit libtool flag-o-matic gcc eutils @@ -47,9 +47,9 @@ src_compile() { $(use_with adns)" if use gtk; then - myconf="$(use_enable gtk2)" + myconf="${myconf} $(use_enable gtk2)" else - myconf="--disable-gtk2" + myconf="${myconf} --disable-gtk2" # --disable-ethereal do not have an influence #myconf="${myconf} --disable-ethereal" |