blob: b49f0adedd55c4f839f470c347f4e72a79089ac5 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/control-center/control-center-2.14.1.ebuild,v 1.1 2006/04/12 17:31:09 compnerd Exp $
inherit eutils gnome2 autotools
DESCRIPTION="The gnome2 Desktop configuration tool"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="alsa eds gstreamer"
RDEPEND=">=gnome-base/gnome-vfs-2.2
>=media-libs/fontconfig-1
virtual/xft
|| ( (
x11-libs/libXdmcp
x11-libs/libICE
x11-libs/libSM
x11-libs/libXxf86misc
x11-libs/libXau )
virtual/x11 )
>=x11-libs/gtk+-2.8.12
>=dev-libs/glib-2.8
>=gnome-base/libbonobo-2
>=gnome-base/libgnomeui-2.2
>=gnome-base/nautilus-2.6
>=gnome-base/gconf-2
>=gnome-base/libglade-2
>=gnome-base/libbonoboui-2.2
>=gnome-base/gnome-desktop-2.2
>=gnome-base/gnome-menus-2.11.1
media-sound/esound
>=x11-wm/metacity-2.8.6-r1
>=x11-libs/libxklavier-1.14
>=gnome-base/libgnome-2.2
media-libs/freetype
>=gnome-base/orbit-2
eds? ( >=gnome-extra/evolution-data-server-1.3 )
!arm? ( alsa? ( >=media-libs/alsa-lib-0.9 ) )
gstreamer? ( >=media-libs/gst-plugins-base-0.10 )"
DEPEND="${RDEPEND}
|| ( (
x11-libs/libxkbfile
x11-proto/kbproto
x11-proto/xf86miscproto
x11-proto/scrnsaverproto )
virtual/x11 )
app-text/scrollkeeper
>=dev-util/pkgconfig-0.9
>=dev-util/intltool-0.28
>=app-text/gnome-doc-utils-0.3.2
dev-util/desktop-file-utils"
DOCS="AUTHORS ChangeLog NEWS README TODO"
MAKEOPTS="${MAKEOPTS} -j1"
pkg_setup() {
G2CONF="${G2CONF} --disable-schemas-install \
--disable-scrollkeeper \
--enable-vfs-methods \
$(use_enable alsa) \
$(use_enable eds aboutme)"
if use gstreamer ; then
G2CONF="${G2CONF} --enable-gstreamer=0.10"
else
G2CONF="${G2CONF} --enable-gstreamer=no"
fi
}
src_unpack() {
unpack ${A}
cd ${S}
# See http://gcc.gnu.org/cgi-bin/gnatsweb.pl problem #9700 for
# what this is about.
use alpha && epatch ${FILESDIR}/control-center-2.2.0.1-alpha_hack.patch
# Temporary workaround for a problematic behaviour with acme.
epatch ${FILESDIR}/${PN}-2.6.0-remove-pmu.patch
# Gentoo-specific support for xcursor themes. See bug #103638.
epatch ${FILESDIR}/${PN}-2.11-gentoo_xcursor.patch
# Disable the master pty check, as it causes sandbox violations
epatch ${FILESDIR}/${PN}-2.13.5-disable-master-pty.patch
eautoreconf
intltoolize --force || die
}
|