diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-07 15:04:17 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-07 15:04:17 +0000 |
commit | 7e8c93201f17cab72b0f3bc1b473d6078f949b9a (patch) | |
tree | 003278f91e235dcfb3f389bff2ec574da3aa86b1 /www-plugins | |
parent | Marked ~sparc64-solaris (diff) | |
download | gentoo-2-7e8c93201f17cab72b0f3bc1b473d6078f949b9a.tar.gz gentoo-2-7e8c93201f17cab72b0f3bc1b473d6078f949b9a.tar.bz2 gentoo-2-7e8c93201f17cab72b0f3bc1b473d6078f949b9a.zip |
New snapshot wrt #393049 to avoid conflict between const and non-const code. Thanks to Juergen Rose for reporting.
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins')
-rw-r--r-- | www-plugins/gecko-mediaplayer/ChangeLog | 9 | ||||
-rw-r--r-- | www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5_beta1_p20111207.ebuild | 48 |
2 files changed, 56 insertions, 1 deletions
diff --git a/www-plugins/gecko-mediaplayer/ChangeLog b/www-plugins/gecko-mediaplayer/ChangeLog index 93650e95f378..0a7f20070b5d 100644 --- a/www-plugins/gecko-mediaplayer/ChangeLog +++ b/www-plugins/gecko-mediaplayer/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for www-plugins/gecko-mediaplayer # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/gecko-mediaplayer/ChangeLog,v 1.60 2011/12/02 22:46:20 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gecko-mediaplayer/ChangeLog,v 1.61 2011/12/07 15:04:17 ssuominen Exp $ + +*gecko-mediaplayer-1.0.5_beta1_p20111207 (07 Dec 2011) + + 07 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> + +gecko-mediaplayer-1.0.5_beta1_p20111207.ebuild: + New snapshot wrt #393049 to avoid conflict between const and non-const code. + Thanks to Juergen Rose for reporting. *gecko-mediaplayer-1.0.5_beta1_p20111203 (02 Dec 2011) diff --git a/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5_beta1_p20111207.ebuild b/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5_beta1_p20111207.ebuild new file mode 100644 index 000000000000..761f160cd596 --- /dev/null +++ b/www-plugins/gecko-mediaplayer/gecko-mediaplayer-1.0.5_beta1_p20111207.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2011 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_beta1_p20111207.ebuild,v 1.1 2011/12/07 15:04:17 ssuominen Exp $ + +EAPI=4 +inherit autotools eutils multilib nsplugins + +MY_P=${PN}-${PV/_beta/b} + +DESCRIPTION="A browser plugin that uses GNOME MPlayer" +HOMEPAGE="http://code.google.com/p/gecko-mediaplayer/" +DEV_URI="http://dev.gentoo.org/~ssuominen" +SRC_URI="${DEV_URI}/${P}.tar.xz + ${DEV_URI}/${PN}-gconf-2.m4.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="+curl" + +RDEPEND=">=dev-libs/dbus-glib-0.98 + >=dev-libs/glib-2.28:2 + dev-libs/nspr + >=media-libs/gmtk-1.0.5_beta + >=media-video/gnome-mplayer-1.0.5_beta[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_prepare() { + AT_M4DIR=${WORKDIR} eautoreconf +} + +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} +} |