diff options
author | 2012-01-03 16:00:54 +0000 | |
---|---|---|
committer | 2012-01-03 16:00:54 +0000 | |
commit | bdfaeb8e11ddbcdce94caa4662c52d69657db18d (patch) | |
tree | 0f63eb9c8124f771f1f9cd80e94274d9c5759e27 /www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5.ebuild | |
parent | Version bump wrt #390167, drop old (diff) | |
download | gentoo-2-bdfaeb8e11ddbcdce94caa4662c52d69657db18d.tar.gz gentoo-2-bdfaeb8e11ddbcdce94caa4662c52d69657db18d.tar.bz2 gentoo-2-bdfaeb8e11ddbcdce94caa4662c52d69657db18d.zip |
Version bump wrt #397447 by "ScytheMan"
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5.ebuild')
-rw-r--r-- | www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5.ebuild b/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5.ebuild new file mode 100644 index 000000000000..2bf5396f36ca --- /dev/null +++ b/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5.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.5.ebuild,v 1.1 2012/01/03 16:00:54 ssuominen Exp $ + +EAPI=4 +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 ~x86" +IUSE="+curl" + +RDEPEND=">=dev-libs/dbus-glib-0.92 + >=dev-libs/glib-2.26 + dev-libs/nspr + >=media-libs/gmtk-${PV} + >=media-video/gnome-mplayer-${PV}[dbus] + curl? ( net-misc/curl )" +DEPEND="${RDEPEND} + app-arch/xz-utils + dev-util/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} +} |