diff options
author | 2003-05-09 22:42:41 +0000 | |
---|---|---|
committer | 2003-05-09 22:42:41 +0000 | |
commit | 113177415cc98750406fbd7ff9784e5a43f02580 (patch) | |
tree | a92557a7afcb9e0b861e7589016f44d9de1f6dae /net-im/gnomeicu/gnomeicu-0.98.111.ebuild | |
parent | initial import from bug 4919 (diff) | |
download | historical-113177415cc98750406fbd7ff9784e5a43f02580.tar.gz historical-113177415cc98750406fbd7ff9784e5a43f02580.tar.bz2 historical-113177415cc98750406fbd7ff9784e5a43f02580.zip |
cleanup and gnet dep fix
Diffstat (limited to 'net-im/gnomeicu/gnomeicu-0.98.111.ebuild')
-rw-r--r-- | net-im/gnomeicu/gnomeicu-0.98.111.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/net-im/gnomeicu/gnomeicu-0.98.111.ebuild b/net-im/gnomeicu/gnomeicu-0.98.111.ebuild deleted file mode 100644 index 45a1eeee7c5d..000000000000 --- a/net-im/gnomeicu/gnomeicu-0.98.111.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2003 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.111.ebuild,v 1.3 2003/02/13 14:08:44 vapier Exp $ - -IUSE="nls esd gnome" - -S=${WORKDIR}/${P} -DESCRIPTION="Gnome ICQ Client" -SRC_URI="mirror://sourceforge/gnomeicu/${P}.tar.bz2" -HOMEPAGE="http://gnomeicu.sourceforge.net/" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86" - -DEPEND=">=x11-libs/gtk+-2.0.5 - >=dev-libs/libxml2-2.4.23 - >=gnome-base/libgnome-2.0.0 - >=gnome-base/libgnomeui-2.0.0 - >=sys-libs/gdbm-1.8.0 - >=gnome-base/libglade-2.0.0 - >=net-libs/gnet-1.1.3 - gnome? ( >=gnome-base/gnome-panel-2.0.0 ) - esd? ( >=media-sound/esound-0.2.28 )" - - # socks5? ( something to support socks5 in portage is needed ) - -RDEPEND="nls? ( sys-devel/gettext )" - - -src_compile() { - local myconf - - myconf="--prefix=/usr" - - use esd || myconf="${myconf} --disable-esd-test" - - # 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" - mkdir ./intl - touch ./intl/libgettext.h - ) - - # remove the panel applet if you dont use gnome, - # nice hack for gnome2 compability - - use gnome || myconf="${myconf} --disable-applet" - - econf \ - ${myconf} || die - - emake || die -} - -src_install() { - make DESTDIR=${D} \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/log \ - install || die - - dodoc AUTHORS COPYING CREDITS ChangeLog NEWS README TODO ABOUT-NLS -} |