diff options
author | 2005-05-27 21:14:55 +0000 | |
---|---|---|
committer | 2005-05-27 21:14:55 +0000 | |
commit | 61e99aed6fdf1afec240a34894af3427ac60b4af (patch) | |
tree | 45ee750ad2ea7856cb3bd7a5730778e79353d158 /net-im | |
parent | Stable on SPARC. (diff) | |
download | gentoo-2-61e99aed6fdf1afec240a34894af3427ac60b4af.tar.gz gentoo-2-61e99aed6fdf1afec240a34894af3427ac60b4af.tar.bz2 gentoo-2-61e99aed6fdf1afec240a34894af3427ac60b4af.zip |
add config patch
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gossip/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/gossip/files/gossip-0.8-find_xss.patch | 14 | ||||
-rw-r--r-- | net-im/gossip/gossip-0.8.ebuild | 15 |
3 files changed, 31 insertions, 3 deletions
diff --git a/net-im/gossip/ChangeLog b/net-im/gossip/ChangeLog index b0c997452439..6fb24bc47939 100644 --- a/net-im/gossip/ChangeLog +++ b/net-im/gossip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/gossip # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gossip/ChangeLog,v 1.25 2005/05/02 00:24:12 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gossip/ChangeLog,v 1.26 2005/05/27 21:14:55 foser Exp $ + + 27 May 2005; foser <foser@gentoo.org> gossip-0.8.ebuild : + Fix Xss configure check (#77241( 02 May 2005; Jason Wever <weeve@gentoo.org> gossip-0.8.ebuild: Stable on SPARC. diff --git a/net-im/gossip/files/gossip-0.8-find_xss.patch b/net-im/gossip/files/gossip-0.8-find_xss.patch new file mode 100644 index 000000000000..7b9aba546ad6 --- /dev/null +++ b/net-im/gossip/files/gossip-0.8-find_xss.patch @@ -0,0 +1,14 @@ +diff -uNr gossip-0.8/configure.in gossip-0.8.patched/configure.in +--- gossip-0.8/configure.in 2004-12-27 17:40:19.000000000 +0100 ++++ gossip-0.8.patched/configure.in 2005-05-27 23:05:13.000000000 +0200 +@@ -114,9 +114,7 @@ + if test \! "$XSS_LIBS" = "no"; then + AC_TRY_COMPILE([ + #include <X11/extensions/scrnsaver.h> +- ],[],[enable_xss=no],[ +- AC_DEFINE(USE_SCREENSAVER, 1, [Define if we're using XScreenSaver.]) +- ]) ++ ],[],[enable_xss=yes]) + else + XSS_LIBS="" + enable_xss=no diff --git a/net-im/gossip/gossip-0.8.ebuild b/net-im/gossip/gossip-0.8.ebuild index 0c3101da9c08..771aadf59b7a 100644 --- a/net-im/gossip/gossip-0.8.ebuild +++ b/net-im/gossip/gossip-0.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gossip/gossip-0.8.ebuild,v 1.3 2005/05/02 00:24:12 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gossip/gossip-0.8.ebuild,v 1.4 2005/05/27 21:14:55 foser Exp $ -inherit gnome2 +inherit gnome2 eutils DESCRIPTION="Lightweight Jabber client for GNOME" HOMEPAGE="http://gossip.imendio.org/" @@ -32,3 +32,14 @@ G2CONF="${G2CONF} --disable-dbus" DOCS="AUTHORS README COPYING ChangeLog INSTALL NEWS README" USE_DESTDIR="1" + +src_unpack() { + + unpack ${A} + + cd ${S} + epatch ${FILESDIR}/${P}-find_xss.patch + + autoconf || die + +} |