blob: 21a2ba4a944684aade7e6feefdd4652f1bfd536a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/gnome-mplayer/gnome-mplayer-0.9.5-r2.ebuild,v 1.6 2009/06/07 17:18:33 klausman Exp $
EAPI=2
GCONF_DEBUG=no
inherit gnome2 eutils
DESCRIPTION="MPlayer GUI for GNOME Desktop Environment"
HOMEPAGE="http://code.google.com/p/gnome-mplayer"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc x86"
IUSE="+alsa gnome ipod +libnotify musicbrainz"
RDEPEND="dev-libs/glib:2
>=x11-libs/gtk+-2.12:2
dev-libs/dbus-glib
media-video/mplayer[ass]
alsa? ( media-libs/alsa-lib )
gnome? ( gnome-base/gconf:2
gnome-base/gvfs )
ipod? ( media-libs/libgpod )
libnotify? ( x11-libs/libnotify )
musicbrainz? ( net-misc/curl
media-libs/musicbrainz:3 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
DOCS="ChangeLog README DOCS/keyboard_shortcuts.txt"
PATCHES=( "${FILESDIR}"/${P}-gettext.patch )
src_configure() {
G2CONF="${G2CONF}
--with-gio
--disable-nautilus
$(use_with alsa)
$(use_with gnome gconf)
$(use_enable gnome schemas-install)
$(use_with ipod libgpod)
$(use_with libnotify)
$(use_with musicbrainz libmusicbrainz3)"
gnome2_src_configure
}
src_install() {
gnome2_src_install
# remove duplicate doc dir
rm -rf "${D}"/usr/share/doc/${PN}
# remove empty dir
rmdir -p "${D}"/var/lib
}
|