blob: 1923d0ef018b48f08fff559f2a4660ecdbe73f60 (
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
57
58
59
60
61
62
63
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-media/gnome-media-2.32.0.ebuild,v 1.9 2011/03/21 22:12:09 nirbheek Exp $
EAPI="3"
GCONF_DEBUG="no"
inherit eutils gnome2
DESCRIPTION="Multimedia related programs for the GNOME desktop"
HOMEPAGE="http://www.gnome.org/"
LICENSE="LGPL-2 GPL-2 FDL-1.1"
SLOT="2"
KEYWORDS="alpha amd64 arm ia64 ~ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="pulseaudio"
# FIXME: automagic dev-util/glade:3 support
RDEPEND=">=dev-libs/glib-2.18.2:2
>=x11-libs/gtk+-2.18.0:2
>=gnome-base/gconf-2.6.1:2
>=media-libs/gstreamer-0.10.23:0.10
>=media-libs/gst-plugins-base-0.10.23:0.10
>=media-libs/gst-plugins-good-0.10:0.10
dev-libs/libunique:1
pulseaudio? ( >=media-sound/pulseaudio-0.9.16[glib] )
>=media-libs/libcanberra-0.13[gtk]
dev-libs/libxml2:2
>=media-libs/gst-plugins-base-0.10.23:0.10
>=media-plugins/gst-plugins-meta-0.10-r2:0.10
>=media-plugins/gst-plugins-gconf-0.10.1:0.10"
DEPEND="${RDEPEND}
app-text/docbook-xml-dtd:4.1.2
>=dev-util/pkgconfig-0.9
>=app-text/scrollkeeper-0.3.11
>=app-text/gnome-doc-utils-0.3.2
>=dev-util/intltool-0.35.0"
pkg_setup() {
G2CONF="${G2CONF}
--disable-static
--disable-scrollkeeper
--disable-schemas-install
--enable-gstprops
--enable-grecord
--enable-profiles
$(use_enable pulseaudio)
$(use_enable !pulseaudio gstmix)"
DOCS="AUTHORS ChangeLog* NEWS MAINTAINERS README"
}
pkg_postinst() {
gnome2_pkg_postinst
ewarn
ewarn "If you cannot play some music format, please check your"
ewarn "USE flags on media-plugins/gst-plugins-meta"
ewarn
if use pulseaudio; then
ewarn "You have enabled pulseaudio support, gstmixer will not be built"
ewarn "If you do not use pulseaudio, you do not want this"
fi
}
|