summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2011-03-23 10:57:50 +0100
committerMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2011-03-23 10:57:50 +0100
commit4e7e01f47b50f87d16feacbdb07baa3d109bf338 (patch)
tree7ba273d15f4fb9a70df5d07713f2eff3b34b4d9b /gnome-extra
parentbump libotify (diff)
downloadkeruspe-4e7e01f47b50f87d16feacbdb07baa3d109bf338.tar.gz
keruspe-4e7e01f47b50f87d16feacbdb07baa3d109bf338.tar.bz2
keruspe-4e7e01f47b50f87d16feacbdb07baa3d109bf338.zip
in ::gnome
Diffstat (limited to 'gnome-extra')
-rw-r--r--gnome-extra/gnome-utils/Manifest2
-rw-r--r--gnome-extra/gnome-utils/gnome-utils-2.91.90-r1.ebuild74
2 files changed, 0 insertions, 76 deletions
diff --git a/gnome-extra/gnome-utils/Manifest b/gnome-extra/gnome-utils/Manifest
deleted file mode 100644
index 8cd3b8f5..00000000
--- a/gnome-extra/gnome-utils/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD gnome-utils-2.91.90-r1.ebuild 1935 RMD160 cd70bc0458e96651ebafd8aa7c695acc9157e12d SHA1 ebe67bf5cdcc0041175eea781c7149994ca742e5 SHA256 29f7061f2c4c7f1402be9d70a9d5aeead4b13ea0e8ffa9bf736b36d042aba125
-DIST gnome-utils-2.91.90.tar.bz2 7758719 RMD160 cb7294bfb24d2e323b282f4b55d52a52603a9a48 SHA1 79a25d8ffada374f7340d92f7d0fdef2673beaf5 SHA256 4c72c9be0586813c8dc6acf8b7885cbfe4570c302caf155ab9bfae2108d6524f
diff --git a/gnome-extra/gnome-utils/gnome-utils-2.91.90-r1.ebuild b/gnome-extra/gnome-utils/gnome-utils-2.91.90-r1.ebuild
deleted file mode 100644
index 093d1ed5..00000000
--- a/gnome-extra/gnome-utils/gnome-utils-2.91.90-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="Utilities for the Gnome2 desktop"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="bonobo doc ipv6 test"
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
-fi
-
-# libcanberra 0.26-r2 is needed for gtk+:3 fixes
-RDEPEND=">=dev-libs/glib-2.26.0:2
- >=x11-libs/gtk+-2.91.1:3
- >=gnome-base/gconf-2
- >=gnome-base/gsettings-desktop-schemas-0.1.0
- >=gnome-base/libgtop-2.12
- >=media-libs/libcanberra-0.26-r2[gtk3]
- x11-libs/libXext
- x11-libs/libX11
- bonobo? ( || ( gnome-base/gnome-panel[bonobo] <gnome-base/gnome-panel-2.32 ) )"
-
-DEPEND="${RDEPEND}
- x11-proto/xextproto
- app-text/scrollkeeper
- >=dev-util/intltool-0.40
- >=dev-util/pkgconfig-0.9
- doc? ( >=dev-util/gtk-doc-1.10 )"
-
-pkg_setup() {
- if ! use debug; then
- G2CONF="${G2CONF} --enable-debug=minimum"
- fi
-
- G2CONF="${G2CONF}
- $(use_enable ipv6)
- $(use_enable bonobo gdict-applet)
- --enable-zlib
- --disable-maintainer-flags
- --disable-static
- --disable-schemas-install
- --disable-schemas-compile
- --disable-scrollkeeper"
- DOCS="AUTHORS ChangeLog NEWS README THANKS"
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # Remove idiotic -D.*DISABLE_DEPRECATED cflags
- # This method is kinda prone to breakage. Recheck carefully with next bump.
- # bug 339074
- find . -iname 'Makefile.am' -exec \
- sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die "sed 1 failed"
- # Do Makefile.in after Makefile.am to avoid automake maintainer-mode
- find . -iname 'Makefile.in' -exec \
- sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die "sed 1 failed"
-
- if ! use test ; then
- sed -e 's/ tests//' -i logview/Makefile.{am,in} || die "sed 2 failed"
- fi
-}