diff options
-rw-r--r-- | net-im/gnomeicu/ChangeLog | 9 | ||||
-rw-r--r-- | net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r5 (renamed from net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r3) | 0 | ||||
-rw-r--r-- | net-im/gnomeicu/gnomeicu-0.98.2-r5.ebuild (renamed from net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild) | 15 |
3 files changed, 19 insertions, 5 deletions
diff --git a/net-im/gnomeicu/ChangeLog b/net-im/gnomeicu/ChangeLog index 3ebc0db24fb5..65c000a1b704 100644 --- a/net-im/gnomeicu/ChangeLog +++ b/net-im/gnomeicu/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-im/gnomeicu # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-im/gnomeicu/ChangeLog,v 1.6 2002/07/30 14:28:11 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gnomeicu/ChangeLog,v 1.7 2002/07/30 18:17:44 stroke Exp $ + +*gnomeicu-0.98.2-r5 (30 Jul 2002) + 30 Jul 2002; Gabriele Giorgetti <stroke@gentoo.org> gnomeicu-0.98.2-r5.ebuild : + Disabled socks5 support. Also fixes bug #3775 + If socks5 is in USE gnomeicu will not build, failing with the 'undefined + reference to SOCKSinit' error. This is because we don't have anything to + support socks5 in portage as far as I know. *gnomeicu-0.98.2-r4 (30 Jul 2002) diff --git a/net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r3 b/net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r5 index 379a2569a466..379a2569a466 100644 --- a/net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r3 +++ b/net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r5 diff --git a/net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild b/net-im/gnomeicu/gnomeicu-0.98.2-r5.ebuild index 11d7c9a0242d..66ec7fbee732 100644 --- a/net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild +++ b/net-im/gnomeicu/gnomeicu-0.98.2-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild,v 1.3 2002/07/17 09:08:07 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gnomeicu/gnomeicu-0.98.2-r5.ebuild,v 1.1 2002/07/30 18:17:44 stroke Exp $ S=${WORKDIR}/${P} DESCRIPTION="Gnome ICQ Client" @@ -15,6 +15,8 @@ DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r2 gnome? ( =gnome-base/gnome-panel-1.4* ) esd? ( >=media-sound/esound-0.2.23 )" + # socks5? ( something to support socks5 in portage is needed ) + RDEPEND="nls? ( sys-devel/gettext )" SLOT="0" @@ -24,9 +26,14 @@ KEYWORDS="x86 ppc" src_compile() { local myconf - use esd || myconf="--disable-esd-test" + myconf="--prefix=/usr" + + use esd || myconf="${myconf} --disable-esd-test" - use socks5 || myconf="${myconf} --enable-socks5" + # Disabling socks5 support. if socks5 is present + # in USE, gnomeicu buid will fail. Check ChangeLog + # for more info about this issue. stroke@gentoo.org + # use socks5 && myconf="${myconf} --enable-socks5" use nls || ( \ myconf="${myconf} --disable-nls" @@ -46,7 +53,7 @@ src_compile() { } src_install() { - make prefix=${D}/usr \ + make DESTDIR=${D} \ sysconfdir=${D}/etc \ localstatedir=${D}/var/log \ install || die |