diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-10-08 23:12:38 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-10-08 23:12:38 +0000 |
commit | ed91c6307f4f613ded553ca41aee7d1d746df191 (patch) | |
tree | 1bcf632fcca40b3298b4a889edaa5c433cba2b5d /x11-libs | |
parent | Clean up old revision. (diff) | |
download | gentoo-2-ed91c6307f4f613ded553ca41aee7d1d746df191.tar.gz gentoo-2-ed91c6307f4f613ded553ca41aee7d1d746df191.tar.bz2 gentoo-2-ed91c6307f4f613ded553ca41aee7d1d746df191.zip |
Clean up old revisions.
(Portage version: 2.2_rc91/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libwnck/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libwnck/files/libwnck-2.26.2-automagic.patch | 59 | ||||
-rw-r--r-- | x11-libs/libwnck/libwnck-2.26.2-r2.ebuild | 57 | ||||
-rw-r--r-- | x11-libs/libwnck/libwnck-2.30.3.ebuild | 54 | ||||
-rw-r--r-- | x11-libs/libwnck/libwnck-2.30.4.ebuild | 54 |
5 files changed, 6 insertions, 225 deletions
diff --git a/x11-libs/libwnck/ChangeLog b/x11-libs/libwnck/ChangeLog index 1d25a8d4d982..ef936bd7c15d 100644 --- a/x11-libs/libwnck/ChangeLog +++ b/x11-libs/libwnck/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libwnck # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.250 2010/10/07 20:23:51 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.251 2010/10/08 23:12:38 eva Exp $ + + 08 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org> + -libwnck-2.26.2-r2.ebuild, -files/libwnck-2.26.2-automagic.patch, + -libwnck-2.30.3.ebuild, -libwnck-2.30.4.ebuild: + Clean up old revisions. 07 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> libwnck-2.30.2.ebuild: ppc64 stable wrt #324077 diff --git a/x11-libs/libwnck/files/libwnck-2.26.2-automagic.patch b/x11-libs/libwnck/files/libwnck-2.26.2-automagic.patch deleted file mode 100644 index fa65c8c99241..000000000000 --- a/x11-libs/libwnck/files/libwnck-2.26.2-automagic.patch +++ /dev/null @@ -1,59 +0,0 @@ -From e02c2e1e79a3687865266bdbd28318b263f9b381 Mon Sep 17 00:00:00 2001 -From: Gilles Dartiguelongue <eva@gentoo.org> -Date: Sat, 8 Aug 2009 23:34:01 +0200 -Subject: [PATCH] Make startup-notification non-automagic - -See description at http://www.gentoo.org/proj/en/qa/automagic.xml - -This patch makes startup-notification properly switchable at configure -time while retaining auto-detection capability. - -Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=278464 ---- - configure.in | 30 +++++++++++++++++++++--------- - 1 files changed, 21 insertions(+), 9 deletions(-) - -diff --git a/configure.in b/configure.in -index 731ac3f..75fad2d 100644 ---- a/configure.in -+++ b/configure.in -@@ -82,15 +82,27 @@ AC_SUBST(wncklocaledir) - - AC_PATH_PROG(PKG_CONFIG, pkg-config) - --AC_MSG_CHECKING([if building with libstartup-notification]) --STARTUP_NOTIFICATION_REQUIRED=0.4 --if $PKG_CONFIG --atleast-version $STARTUP_NOTIFICATION_REQUIRED libstartup-notification-1.0; then -- AC_MSG_RESULT([yes]) -- AC_DEFINE_UNQUOTED(HAVE_STARTUP_NOTIFICATION, 1, [Define if you have libstartup-notification]) -- STARTUP_NOTIFICATION_PACKAGE=libstartup-notification-1.0 --else -- AC_MSG_RESULT([no]) -- STARTUP_NOTIFICATION_PACKAGE= -+AC_ARG_ENABLE(startup-notification, -+ [AC_HELP_STRING([--enable-startup-notification], -+ [startup notification library @<:@default=auto@:>@])],, -+ [enable_startup_notification=auto]) -+ -+STARTUP_NOTIFICATION_PACKAGE= -+if test "$enable_startup_notification" != "no"; then -+ STARTUP_NOTIFICATION_REQUIRED=0.4 -+ PKG_CHECK_MODULES(STARTUP_NOTIFICATION, -+ [libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_REQUIRED], -+ [have_sn=yes] -+ [have_sn=no]) -+ -+ if test "$have_sn" = "no" -a "$enable_start_notification" = "yes"; then -+ AC_MSG_ERROR([startup-notification support required but not found]) -+ fi -+ -+ if test "$have_sn" = "yes"; then -+ AC_DEFINE_UNQUOTED(HAVE_STARTUP_NOTIFICATION, 1, [Define if you have libstartup-notification]) -+ STARTUP_NOTIFICATION_PACKAGE=libstartup-notification-1.0 -+ fi - fi - AC_SUBST(STARTUP_NOTIFICATION_PACKAGE) - --- -1.6.3.3 - diff --git a/x11-libs/libwnck/libwnck-2.26.2-r2.ebuild b/x11-libs/libwnck/libwnck-2.26.2-r2.ebuild deleted file mode 100644 index 263b89866786..000000000000 --- a/x11-libs/libwnck/libwnck-2.26.2-r2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-2.26.2-r2.ebuild,v 1.11 2010/07/20 02:29:38 jer Exp $ - -EAPI="2" -GCONF_DEBUG="no" - -inherit autotools gnome2 eutils - -DESCRIPTION="A window navigation construction kit" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="doc startup-notification" - -RDEPEND=">=x11-libs/gtk+-2.11.3 - >=dev-libs/glib-2.16.0 - x11-libs/libX11 - x11-libs/libXres - x11-libs/libXext - startup-notification? ( >=x11-libs/startup-notification-0.4 )" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/pkgconfig-0.9 - >=dev-util/intltool-0.40 - dev-util/gtk-doc-am - gnome-base/gnome-common - doc? ( >=dev-util/gtk-doc-1.9 )" - -DOCS="AUTHORS ChangeLog HACKING NEWS README" - -pkg_setup() { - G2CONF="${G2CONF} - --disable-static - $(use_enable startup-notification)" -} - -src_prepare() { - gnome2_src_prepare - - # Fix automagic startup-notification, bug #278464 - epatch "${FILESDIR}"/${P}-automagic.patch - - # Fix glib-mkenum auto generation (bug #279832) - epatch "${FILESDIR}"/${P}-fix-glib-mkenums.diff - # required to force regeneration of wnck-enum-types.h - rm libwnck/wnck-enum-types.h - - intltoolize --force --copy --automake || die "intltoolize failed" - - # Make it libtool-1 compatible, bug #280876 - rm -v m4/lt* m4/libtool.m4 || die "removing libtool macros failed" - - AT_M4DIR="m4" eautoreconf -} diff --git a/x11-libs/libwnck/libwnck-2.30.3.ebuild b/x11-libs/libwnck/libwnck-2.30.3.ebuild deleted file mode 100644 index c4709ce12e7c..000000000000 --- a/x11-libs/libwnck/libwnck-2.30.3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-2.30.3.ebuild,v 1.1 2010/08/24 22:01:21 eva Exp $ - -EAPI="2" -GCONF_DEBUG="no" - -inherit gnome2 - -DESCRIPTION="A window navigation construction kit" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" - -# FIXME: introspection support disabled for now -IUSE="doc introspection startup-notification" - -RDEPEND=">=x11-libs/gtk+-2.19.7 - >=dev-libs/glib-2.16.0 - x11-libs/libX11 - x11-libs/libXres - x11-libs/libXext - introspection? ( >=dev-libs/gobject-introspection-0.6.14 ) - startup-notification? ( >=x11-libs/startup-notification-0.4 )" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/pkgconfig-0.9 - >=dev-util/intltool-0.40 - doc? ( >=dev-util/gtk-doc-1.9 ) - x86-interix? ( sys-libs/itx-bind )" -# eautoreconf needs -# dev-util/gtk-doc-am -# gnome-base/gnome-common - -DOCS="AUTHORS ChangeLog HACKING NEWS README" - -pkg_setup() { - G2CONF="${G2CONF} - --disable-static - $(use_enable introspection) - $(use_enable startup-notification)" -} - -src_prepare() { - gnome2_src_prepare - - if use x86-interix; then - # activate the itx-bind package... - append-flags "-I${EPREFIX}/usr/include/bind" - append-ldflags "-L${EPREFIX}/usr/lib/bind" - fi -} diff --git a/x11-libs/libwnck/libwnck-2.30.4.ebuild b/x11-libs/libwnck/libwnck-2.30.4.ebuild deleted file mode 100644 index c0b5547a60dd..000000000000 --- a/x11-libs/libwnck/libwnck-2.30.4.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-2.30.4.ebuild,v 1.1 2010/09/15 21:54:15 eva Exp $ - -EAPI="2" -GCONF_DEBUG="no" - -inherit gnome2 - -DESCRIPTION="A window navigation construction kit" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" - -# FIXME: introspection support disabled for now -IUSE="doc introspection startup-notification" - -RDEPEND=">=x11-libs/gtk+-2.19.7 - >=dev-libs/glib-2.16.0 - x11-libs/libX11 - x11-libs/libXres - x11-libs/libXext - introspection? ( >=dev-libs/gobject-introspection-0.6.14 ) - startup-notification? ( >=x11-libs/startup-notification-0.4 )" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/pkgconfig-0.9 - >=dev-util/intltool-0.40 - doc? ( >=dev-util/gtk-doc-1.9 ) - x86-interix? ( sys-libs/itx-bind )" -# eautoreconf needs -# dev-util/gtk-doc-am -# gnome-base/gnome-common - -DOCS="AUTHORS ChangeLog HACKING NEWS README" - -pkg_setup() { - G2CONF="${G2CONF} - --disable-static - $(use_enable introspection) - $(use_enable startup-notification)" -} - -src_prepare() { - gnome2_src_prepare - - if use x86-interix; then - # activate the itx-bind package... - append-flags "-I${EPREFIX}/usr/include/bind" - append-ldflags "-L${EPREFIX}/usr/lib/bind" - fi -} |