diff options
author | 2011-02-08 10:24:00 +0000 | |
---|---|---|
committer | 2011-02-08 10:24:00 +0000 | |
commit | 65f9ff3fa88d9a2aa087588ebd25ee50e2890e18 (patch) | |
tree | 9423f244a02da110bd7f609a286e1bf9b3c40ab4 /gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild | |
parent | Version bump, remove old. (diff) | |
download | gentoo-2-65f9ff3fa88d9a2aa087588ebd25ee50e2890e18.tar.gz gentoo-2-65f9ff3fa88d9a2aa087588ebd25ee50e2890e18.tar.bz2 gentoo-2-65f9ff3fa88d9a2aa087588ebd25ee50e2890e18.zip |
Apply upstream patch to fix build with as-needed and try to improve panel behavior on multiscreen systems, bug #348253, upstream #632369 (patches by Vuntz).
(Portage version: 2.1.9.36/cvs/Linux x86_64)
Diffstat (limited to 'gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild')
-rw-r--r-- | gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild b/gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild new file mode 100644 index 000000000000..40aee22ab1a8 --- /dev/null +++ b/gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild @@ -0,0 +1,100 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild,v 1.1 2011/02/08 10:24:00 pacho Exp $ + +EAPI="3" +GCONF_DEBUG="no" +PYTHON_DEPEND="2:2.4" + +inherit gnome2 python eutils autotools + +DESCRIPTION="The GNOME panel" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2 FDL-1.1 LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="+bonobo doc eds +introspection networkmanager" + +RDEPEND=">=gnome-base/gnome-desktop-2.26:2 + >=x11-libs/pango-1.15.4[introspection?] + >=dev-libs/glib-2.25.12:2 + >=x11-libs/gtk+-2.22:2[introspection?] + >=dev-libs/libgweather-2.27.90:2 + dev-libs/libxml2 + >=gnome-base/gconf-2.6.1[introspection?] + >=media-libs/libcanberra-0.23[gtk] + >=gnome-base/gnome-menus-2.27.92 + gnome-base/librsvg + >=dev-libs/dbus-glib-0.80 + >=sys-apps/dbus-1.1.2 + >=x11-libs/cairo-1 + x11-libs/libXau + >=x11-libs/libXrandr-1.2 + bonobo? ( + >=gnome-base/libbonobo-2.20.4 + >=gnome-base/libbonoboui-2.1.1 + >=gnome-base/orbit-2.4 + >=x11-libs/libwnck-2.19.5 ) + eds? ( >=gnome-extra/evolution-data-server-1.6 ) + introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) + networkmanager? ( >=net-misc/networkmanager-0.6.7 )" +DEPEND="${RDEPEND} + >=dev-lang/perl-5 + >=app-text/gnome-doc-utils-0.3.2 + >=dev-util/pkgconfig-0.9 + >=dev-util/intltool-0.40 + ~app-text/docbook-xml-dtd-4.1.2 + doc? ( >=dev-util/gtk-doc-1 ) + gnome-base/gnome-common + dev-util/gtk-doc-am" +# eautoreconf needs +# gnome-base/gnome-common +# dev-util/gtk-doc-am + +pkg_setup() { + G2CONF="${G2CONF} + --disable-deprecation-flags + --disable-static + --disable-scrollkeeper + --disable-schemas-install + --with-in-process-applets=clock,notification-area,wncklet + $(use_enable bonobo) + $(use_enable networkmanager network-manager) + $(use_enable introspection) + $(use_enable eds)" + DOCS="AUTHORS ChangeLog HACKING NEWS README" + python_set_active_version 2 +} + +src_prepare() { + gnome2_src_prepare + + # List the objects before the libraries to fix build with --as-needed + epatch "${FILESDIR}/${P}-as-needed.patch" + + # Try to improve panel behavior on multiscreen systems, bug #348253, upstream #632369 + epatch "${FILESDIR}/${PN}-2.32.1-fix-multiscreen.patch" + epatch "${FILESDIR}/${PN}-2.32.1-fix-multiscreen2.patch" + + intltoolize --force --copy --automake || die "intltoolize failed" + eautoreconf +} + +pkg_postinst() { + local entries="${EROOT}etc/gconf/schemas/panel-default-setup.entries" + local gconftool="${EROOT}usr/bin/gconftool-2" + + if [ -e "$entries" ]; then + einfo "Setting panel gconf defaults..." + + GCONF_CONFIG_SOURCE="$("${gconftool}" --get-default-source | sed "s;:/;:${ROOT};")" + + "${gconftool}" --direct --config-source \ + "${GCONF_CONFIG_SOURCE}" --load="${entries}" + fi + + # Calling this late so it doesn't process the GConf schemas file we already + # took care of. + gnome2_pkg_postinst +} |