diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-10-20 19:35:37 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-10-20 19:35:37 +0000 |
commit | 5d066bedba205c5fb986f18423b644c9b85575fd (patch) | |
tree | b4f29a044168efb22cbdd373c9956380de1afc97 /net-www | |
parent | Add in a module (diff) | |
download | gentoo-2-5d066bedba205c5fb986f18423b644c9b85575fd.tar.gz gentoo-2-5d066bedba205c5fb986f18423b644c9b85575fd.tar.bz2 gentoo-2-5d066bedba205c5fb986f18423b644c9b85575fd.zip |
Fix gnash cvs ebuild thanks to Hal Engel <hvengel@astound.net> in bug 151895
(Portage version: 2.1.2_pre3-r5)
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/gnash/ChangeLog | 6 | ||||
-rw-r--r-- | net-www/gnash/files/digest-gnash-0.7.1_p20099999 | 1 | ||||
-rw-r--r-- | net-www/gnash/gnash-0.7.1_p20099999.ebuild | 7 |
3 files changed, 10 insertions, 4 deletions
diff --git a/net-www/gnash/ChangeLog b/net-www/gnash/ChangeLog index f6634005a966..b6613b6bbb21 100644 --- a/net-www/gnash/ChangeLog +++ b/net-www/gnash/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-www/gnash # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/ChangeLog,v 1.22 2006/10/07 19:50:33 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/ChangeLog,v 1.23 2006/10/20 19:35:37 genstef Exp $ + + 20 Oct 2006; Stefan Schweizer <genstef@gentoo.org> + gnash-0.7.1_p20099999.ebuild: + Fix gnash cvs ebuild thanks to Hal Engel <hvengel@astound.net> in bug 151895 07 Oct 2006; Stefan Schweizer <genstef@gentoo.org> gnash-0.7.1_p20099999.ebuild: diff --git a/net-www/gnash/files/digest-gnash-0.7.1_p20099999 b/net-www/gnash/files/digest-gnash-0.7.1_p20099999 index 8b137891791f..e69de29bb2d1 100644 --- a/net-www/gnash/files/digest-gnash-0.7.1_p20099999 +++ b/net-www/gnash/files/digest-gnash-0.7.1_p20099999 @@ -1 +0,0 @@ - diff --git a/net-www/gnash/gnash-0.7.1_p20099999.ebuild b/net-www/gnash/gnash-0.7.1_p20099999.ebuild index d560e2e8d038..250e07db6708 100644 --- a/net-www/gnash/gnash-0.7.1_p20099999.ebuild +++ b/net-www/gnash/gnash-0.7.1_p20099999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/gnash-0.7.1_p20099999.ebuild,v 1.3 2006/10/07 19:50:33 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/gnash-0.7.1_p20099999.ebuild,v 1.4 2006/10/20 19:35:37 genstef Exp $ inherit nsplugins kde-functions autotools cvs @@ -90,6 +90,10 @@ src_compile() { myconf="${myconf} --enable-sound=sdl" fi + if use kde; then + myconf="${myconf} --enable-gui=KDE" + fi + econf \ $(use_enable kde klash) \ $(use_enable mad mp3) \ @@ -97,7 +101,6 @@ src_compile() { $(use_enable xml) \ $(use_enable video_cards_i810 i810-lod-bias) \ --without-gcc-arch \ - --enable-visibility \ ${myconf} || die "econf failed" emake || die "emake failed" } |