summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2011-04-09 13:09:23 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2011-04-09 13:09:23 +0000
commit652f5082c9aaebc04a98e5ca315487544cfb7bed (patch)
tree8d996b562fbcd763f37b747caa04817677e38d3e /dev-libs
parentLink perl Pilot.so against -lpisock (workaround a bug in perl-module.eclass) ... (diff)
downloadgentoo-2-652f5082c9aaebc04a98e5ca315487544cfb7bed.tar.gz
gentoo-2-652f5082c9aaebc04a98e5ca315487544cfb7bed.tar.bz2
gentoo-2-652f5082c9aaebc04a98e5ca315487544cfb7bed.zip
Clean up old revision.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libunique/ChangeLog6
-rw-r--r--dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch53
-rw-r--r--dev-libs/libunique/libunique-1.0.8.ebuild56
3 files changed, 5 insertions, 110 deletions
diff --git a/dev-libs/libunique/ChangeLog b/dev-libs/libunique/ChangeLog
index ae881db421e1..eff823b756ee 100644
--- a/dev-libs/libunique/ChangeLog
+++ b/dev-libs/libunique/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/libunique
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunique/ChangeLog,v 1.36 2011/03/16 10:12:25 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunique/ChangeLog,v 1.37 2011/04/09 13:09:23 eva Exp $
+
+ 09 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> -libunique-1.0.8.ebuild,
+ -files/libunique-1.0.8-automagic-dbus.patch:
+ Clean up old revision.
16 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
libunique-1.0.8.ebuild, libunique-1.1.6.ebuild:
diff --git a/dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch b/dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch
deleted file mode 100644
index 9b0e9b14e981..000000000000
--- a/dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-# Make dbus support configurable
-# Gnome: https://bugzilla.gnome.org/show_bug.cgi?id=578777
-# Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=265828
-diff -Naur a/configure.ac b/configure.ac
---- a/configure.ac 2009-03-22 05:42:31.000000000 +0530
-+++ b/configure.ac 2009-04-12 16:27:06.816454299 +0530
-@@ -76,16 +76,24 @@
- glib-2.0 >= $GLIB_REQUIRED dnl
- gtk+-2.0 >= $GTK_REQUIRED)
-
--dnl D-Bus backend dependencies
--if $PKG_CONFIG --atleast-version $DBUS_GLIB_REQUIRED dbus-glib-1; then
-- have_dbus=yes
-- PKG_CHECK_MODULES(DBUS, dbus-glib-1 >= $DBUS_GLIB_REQUIRED)
-- AC_SUBST(DBUS_CFLAGS)
-- AC_SUBST(DBUS_LIBS)
-- AC_DEFINE([HAVE_DBUS], [1], [Building with D-Bus support])
-- AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
--else
-- have_dbus=no
-+AC_ARG_ENABLE([dbus],
-+ [AC_HELP_STRING([--enable-dbus],
-+ [Enable with D-Bus support @<:@default=yes@:>@])],
-+ [have_dbus=$enableval],
-+ [have_dbus=yes])
-+
-+if test x$have_dbus = xyes; then
-+ dnl D-Bus backend dependencies
-+ if $PKG_CONFIG --atleast-version $DBUS_GLIB_REQUIRED dbus-glib-1; then
-+ have_dbus=yes
-+ PKG_CHECK_MODULES(DBUS, dbus-glib-1 >= $DBUS_GLIB_REQUIRED)
-+ AC_SUBST(DBUS_CFLAGS)
-+ AC_SUBST(DBUS_LIBS)
-+ AC_DEFINE([HAVE_DBUS], [1], [Building with D-Bus support])
-+ AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
-+ else
-+ have_dbus=no
-+ fi
- fi
-
- AM_CONDITIONAL([HAVE_DBUS], [test x$have_dbus = xyes])
-@@ -171,7 +179,8 @@
-
- echo "
- Configuration:
-- Maintainer flags: $enable_maintainer_flags
-- Debug level: $enable_debug
-- Build documentation: $enable_gtk_doc
-+ Maintainer flags: $enable_maintainer_flags
-+ Debug level: $enable_debug
-+ Build documentation: $enable_gtk_doc
-+ D-Bus support: $have_dbus
- "
diff --git a/dev-libs/libunique/libunique-1.0.8.ebuild b/dev-libs/libunique/libunique-1.0.8.ebuild
deleted file mode 100644
index c1ffb4cb41f1..000000000000
--- a/dev-libs/libunique/libunique-1.0.8.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunique/libunique-1.0.8.ebuild,v 1.21 2011/03/16 10:12:25 nirbheek Exp $
-
-EAPI="2"
-
-inherit autotools eutils gnome2 virtualx
-
-DESCRIPTION="a library for writing single instance application"
-HOMEPAGE="http://live.gnome.org/LibUnique"
-
-LICENSE="LGPL-2.1"
-SLOT="1"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
-IUSE="dbus debug doc"
-
-RDEPEND=">=dev-libs/glib-2.12.0:2
- >=x11-libs/gtk+-2.11.0:2
- x11-libs/libX11
- dbus? ( >=dev-libs/dbus-glib-0.70 )"
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.17
- dev-util/gtk-doc-am
- doc? ( >=dev-util/gtk-doc-1.6 )"
-
-DOCS="AUTHORS NEWS ChangeLog README TODO"
-
-src_prepare() {
- gnome2_src_prepare
-
- # Make dbus support configurable, bug #265828
- epatch "${FILESDIR}/${P}-automagic-dbus.patch"
- eautoreconf
-}
-
-src_test() {
- cd "${S}/tests"
-
- # Fix environment variable leakage (due to `su` etc)
- unset DBUS_SESSION_BUS_ADDRESS
-
- # Force Xemake to use Xvfb, bug 279840
- unset XAUTHORITY
- unset DISPLAY
-
- cp "${FILESDIR}/run-tests" . || die "Unable to cp \${FILESDIR}/run-tests"
- Xemake -f run-tests || die "Tests failed"
-}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-static
- $(use_enable dbus)
- $(use_enable debug)"
-}