diff options
author | Joseph Jezak <josejx@gentoo.org> | 2005-09-29 14:04:32 +0000 |
---|---|---|
committer | Joseph Jezak <josejx@gentoo.org> | 2005-09-29 14:04:32 +0000 |
commit | a12b220a7de0b77f51a56bad29c274da65d7b3ce (patch) | |
tree | ec9e2a7669912c5a0314a050a7dbaaeed9562940 /net-www | |
parent | Version bump thanks to Andrew D and Joshua Jackson in bug #103301 (diff) | |
download | gentoo-2-a12b220a7de0b77f51a56bad29c274da65d7b3ce.tar.gz gentoo-2-a12b220a7de0b77f51a56bad29c274da65d7b3ce.tar.bz2 gentoo-2-a12b220a7de0b77f51a56bad29c274da65d7b3ce.zip |
Fixed some issues with the ebuild, thanks kanaka.
(Portage version: 2.0.52-r1)
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mplayerplug-in/ChangeLog | 5 | ||||
-rw-r--r-- | net-www/mplayerplug-in/mplayerplug-in-3.11.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/net-www/mplayerplug-in/ChangeLog b/net-www/mplayerplug-in/ChangeLog index 3e541348dd92..c91647fae401 100644 --- a/net-www/mplayerplug-in/ChangeLog +++ b/net-www/mplayerplug-in/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-www/mplayerplug-in # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/ChangeLog,v 1.46 2005/09/29 13:22:07 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/ChangeLog,v 1.47 2005/09/29 14:04:32 josejx Exp $ + + 29 Sep 2005; Joseph Jezak <josejx@gentoo.org> mplayerplug-in-3.11.ebuild: + Fixed some issues with the ebuild, thanks kanaka. 29 Sep 2005; Seemant Kulleen <seemant@gentoo.org> mplayerplug-in-3.11.ebuild: diff --git a/net-www/mplayerplug-in/mplayerplug-in-3.11.ebuild b/net-www/mplayerplug-in/mplayerplug-in-3.11.ebuild index 458f9ba9dd32..c4a70f77b8a9 100644 --- a/net-www/mplayerplug-in/mplayerplug-in-3.11.ebuild +++ b/net-www/mplayerplug-in/mplayerplug-in-3.11.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/mplayerplug-in-3.11.ebuild,v 1.2 2005/09/29 13:22:07 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mplayerplug-in/mplayerplug-in-3.11.ebuild,v 1.3 2005/09/29 14:04:32 josejx Exp $ -inherit nsplugins toolchain-funcs multilib +inherit nsplugins multilib DESCRIPTION="mplayer plug-in for Gecko based browsers" HOMEPAGE="http://mplayerplug-in.sourceforge.net/" @@ -15,7 +15,7 @@ IUSE="gecko-sdk" DEPEND=">=media-video/mplayer-0.92 gecko-sdk? ( net-libs/gecko-sdk ) - !gecko-sdk? || ( >=www-client/mozilla-1.6 www-client/mozilla-firefox) + !gecko-sdk? ( || ( >=www-client/mozilla-1.6 www-client/mozilla-firefox) ) >=x11-libs/gtk+-2.2.0 dev-libs/atk* >=dev-libs/glib-2.2.0 @@ -23,12 +23,10 @@ DEPEND=">=media-video/mplayer-0.92 S=${WORKDIR}/${PN} -PLUGINS="gmp rm qt wmp" - src_compile() { local myconf - if ! use gecko-sdk; then + if use gecko-sdk; then einfo Configuring to build using gecko-sdk myconf="${myconf} --with-gecko-sdk=/usr/$(get_libdir)/gecko-sdk" fi @@ -49,6 +47,8 @@ src_install() { doins mplayerplug-in.xpt || die "xpt failed" inst_plugin /opt/netscape/plugins/mplayerplug-in.xpt + PLUGINS="gmp rm qt wmp" + for plugin in ${PLUGINS}; do ### Install the plugin exeinto /opt/netscape/plugins |