diff options
Diffstat (limited to 'gnome-base/control-center/control-center-2.16.0.ebuild')
-rw-r--r-- | gnome-base/control-center/control-center-2.16.0.ebuild | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/gnome-base/control-center/control-center-2.16.0.ebuild b/gnome-base/control-center/control-center-2.16.0.ebuild new file mode 100644 index 000000000000..448a07c8a4c4 --- /dev/null +++ b/gnome-base/control-center/control-center-2.16.0.ebuild @@ -0,0 +1,99 @@ +# 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.16.0.ebuild,v 1.1 2006/09/07 03:45:44 dang Exp $ + +inherit eutils gnome2 autotools + +DESCRIPTION="The gnome2 Desktop configuration tool" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="alsa eds gstreamer" + +RDEPEND=">=gnome-base/gnome-vfs-2.2 + >=media-libs/fontconfig-1 + >=virtual/xft-2.1.2 + || ( + ( + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXdmcp + x11-libs/libICE + x11-libs/libSM + x11-libs/libXxf86misc + x11-libs/libXau + ) + virtual/x11 + ) + >=dev-libs/glib-2.8 + >=x11-libs/gtk+-2.8.12 + >=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 + >=sys-apps/hal-0.5.6 + >=sys-apps/dbus-0.60 + >=x11-wm/metacity-2.8.6-r1 + >=x11-libs/libxklavier-2.91 + >=gnome-base/libgnome-2.2 + media-libs/freetype + >=gnome-base/orbit-2.12.4 + eds? ( >=gnome-extra/evolution-data-server-1.7 ) + !arm? ( alsa? ( >=media-libs/alsa-lib-0.9 ) ) + gstreamer? ( >=media-libs/gst-plugins-base-0.10.2 )" + +DEPEND="${RDEPEND} + || ( + ( + x11-proto/kbproto + x11-proto/xextproto + x11-libs/libxkbfile + x11-proto/xf86miscproto + x11-proto/scrnsaverproto + ) + virtual/x11 + ) + sys-devel/gettext + >=dev-util/pkgconfig-0.9 + >=dev-util/intltool-0.35 + >=app-text/gnome-doc-utils-0.3.2 + app-text/scrollkeeper + 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() { + gnome2_src_unpack + + # 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 +} |