diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-24 16:40:42 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-24 16:40:42 +0000 |
commit | dc620fb3d84731ae6e7f8faf391da20217e3569e (patch) | |
tree | 6dc7da09f6537dc850e9fbc1b7720bcffd67aec7 /www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.7.ebuild | |
parent | old (diff) | |
download | gentoo-2-dc620fb3d84731ae6e7f8faf391da20217e3569e.tar.gz gentoo-2-dc620fb3d84731ae6e7f8faf391da20217e3569e.tar.bz2 gentoo-2-dc620fb3d84731ae6e7f8faf391da20217e3569e.zip |
Version bump wrt #440978 by Alessandro Capogna
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.7.ebuild')
-rw-r--r-- | www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.7.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.7.ebuild b/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.7.ebuild new file mode 100644 index 000000000000..8df491b915a6 --- /dev/null +++ b/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.7.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.7.ebuild,v 1.1 2012/11/24 16:40:42 ssuominen Exp $ + +EAPI=5 +inherit multilib nsplugins + +DESCRIPTION="A browser plugin that uses GNOME MPlayer" +HOMEPAGE="http://code.google.com/p/gecko-mediaplayer/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="+curl" + +RDEPEND=">=dev-libs/dbus-glib-0.100 + >=dev-libs/glib-2.30 + dev-libs/nspr + >=media-libs/gmtk-${PV} + >=media-video/gnome-mplayer-${PV}[dbus] + curl? ( net-misc/curl )" +DEPEND="${RDEPEND} + app-arch/xz-utils + virtual/pkgconfig + >=net-misc/npapi-sdk-0.27 + sys-devel/gettext" + +DOCS="ChangeLog DOCS/tech/*.txt" + +src_configure() { + econf \ + --with-plugin-dir=/usr/$(get_libdir)/${PLUGINS_DIR} \ + $(use_with curl libcurl) +} + +src_install() { + default + rm -rf "${ED}"/usr/share/doc/${PN} +} |