diff options
Diffstat (limited to 'media-video/gnome-mplayer/gnome-mplayer-1.0.5_beta1.ebuild')
-rw-r--r-- | media-video/gnome-mplayer/gnome-mplayer-1.0.5_beta1.ebuild | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/media-video/gnome-mplayer/gnome-mplayer-1.0.5_beta1.ebuild b/media-video/gnome-mplayer/gnome-mplayer-1.0.5_beta1.ebuild new file mode 100644 index 000000000000..f9a7be3462f0 --- /dev/null +++ b/media-video/gnome-mplayer/gnome-mplayer-1.0.5_beta1.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/gnome-mplayer/gnome-mplayer-1.0.5_beta1.ebuild,v 1.1 2011/11/18 15:01:34 ssuominen Exp $ + +EAPI=4 +inherit fdo-mime gnome2-utils + +MY_P=${PN}-${PV/_beta/b} + +DESCRIPTION="A GTK+ interface to MPlayer" +HOMEPAGE="http://code.google.com/p/gnome-mplayer/" +SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="alsa +dbus dconf gnome ipod libnotify musicbrainz pulseaudio" + +COMMON_DEPEND=">=dev-libs/glib-2.26:2 + >=media-libs/gmtk-${PV}[dconf=] + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libXScrnSaver + alsa? ( media-libs/alsa-lib ) + dbus? ( >=dev-libs/dbus-glib-0.92 ) + gnome? ( gnome-base/nautilus ) + ipod? ( >=media-libs/libgpod-0.7 ) + libnotify? ( x11-libs/libnotify ) + musicbrainz? ( net-misc/curl + >=media-libs/musicbrainz-3 ) + pulseaudio? ( >=media-sound/pulseaudio-0.9.14 )" +RDEPEND="${COMMON_DEPEND} + || ( >=media-video/mplayer-1.0_rc4_p20100101[ass] media-video/mplayer2[ass] ) + gnome? ( gnome-base/gvfs )" +DEPEND="${COMMON_DEPEND} + dev-util/pkgconfig + sys-devel/gettext" + +DOCS="ChangeLog README DOCS/*.txt DOCS/tech/*.txt" + +S=${WORKDIR}/${MY_P} + +src_configure() { + # FIXME: The only reason why --without-gpm-new-method is passed is lack of testing. + econf \ + --enable-gtk3 \ + $(use_enable gnome nautilus) \ + --with-gio \ + $(use_with dbus) \ + $(use_with alsa) \ + $(use_with pulseaudio) \ + $(use_with libnotify) \ + $(use_with ipod libgpod) \ + $(use_with musicbrainz libmusicbrainz3) \ + --without-gpm-new-method \ + --without-gpm-old-method +} + +src_install() { + default + rm -rf "${ED}"usr/share/doc/${PN} + + if use dconf; then + insinto /usr/share/glib-2.0/schemas + doins apps.*.xml || die + fi +} + +pkg_preinst() { + gnome2_icon_savelist + gnome2_schemas_savelist +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update + gnome2_icon_cache_update + gnome2_schemas_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update + gnome2_icon_cache_update + gnome2_schemas_update --uninstall +} |