diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-28 01:51:40 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-28 01:51:40 +0000 |
commit | 43f8346232b03c1b87088e0b97fabd35c6b7873f (patch) | |
tree | f5caaea48699dd027755c297b10280543a4842b2 /net-im/gnomeicu | |
parent | new gnome-panel 1.4.1 for back and forwards compability in gnome 1.4 and 2 (diff) | |
download | gentoo-2-43f8346232b03c1b87088e0b97fabd35c6b7873f.tar.gz gentoo-2-43f8346232b03c1b87088e0b97fabd35c6b7873f.tar.bz2 gentoo-2-43f8346232b03c1b87088e0b97fabd35c6b7873f.zip |
new version that uses the changed gnome-panel 1.4.1 dep
Diffstat (limited to 'net-im/gnomeicu')
-rw-r--r-- | net-im/gnomeicu/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r3 | 1 | ||||
-rw-r--r-- | net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild | 60 |
3 files changed, 67 insertions, 1 deletions
diff --git a/net-im/gnomeicu/ChangeLog b/net-im/gnomeicu/ChangeLog index ebe216b8c33a..40c61166c73d 100644 --- a/net-im/gnomeicu/ChangeLog +++ b/net-im/gnomeicu/ChangeLog @@ -1,7 +1,12 @@ # 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.4 2002/06/13 20:35:17 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gnomeicu/ChangeLog,v 1.5 2002/06/28 01:51:40 spider Exp $ + +gnomeicu-0.98.2-r3 (28 Jun 2002) + 28 Jun 2002; Spider <spider@gentoo.org> gnomeicu-0.98.2-r3.ebuild : + moved the gnome-core dep to the new gnome-panel. keeping the gnome use flag since its nice :) + gnomeicu-0.98.2-r2 (13 Jun 2002) 13 Jun 2002; Spider <spider@gentoo.org> gnomeicu-0.98.2-r2.ebuild : make a "gnome" useflag that depends on gnome-core. to have -gnome means you won't have the panel applet built, which is a good thing for gnome2 diff --git a/net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r3 b/net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r3 new file mode 100644 index 000000000000..379a2569a466 --- /dev/null +++ b/net-im/gnomeicu/files/digest-gnomeicu-0.98.2-r3 @@ -0,0 +1 @@ +MD5 b0e015d060e3656c51b9dc962ed2a791 gnomeicu-0.98.2.tar.gz 1348190 diff --git a/net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild b/net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild new file mode 100644 index 000000000000..b766d969ae0f --- /dev/null +++ b/net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Author Joshua Pierre <joshua@swool.com>, Maintainer Bart Verwilst <verwilst@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-im/gnomeicu/gnomeicu-0.98.2-r3.ebuild,v 1.1 2002/06/28 01:51:40 spider Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Gnome ICQ Client" +SRC_URI="http://download.sourceforge.net/gnomeicu/${P}.tar.gz" +HOMEPAGE="http://gnomeicu.sourceforge.net/" +SLOT="0" +RDEPEND=">=gnome-base/gnome-libs-1.4.1.2-r2 + >=sys-libs/gdbm-1.8.0 + ( >=gnome-base/libglade-0.16 + <gnome-base/libglade-1.99.0 ) + >=media-libs/gdk-pixbuf-0.9.0 + >=net-libs/gnet-1.1.0 + gnome? ( >=gnome-base/gnome-panel-1.4.1 + <gnome-base/gnome-panel-1.5.0 ) + esd? ( >=media-sound/esound-0.2.23 )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) " + +src_compile() { + local myconf + + if [ -z "`use esd`" ] + then + myconf="--disable-esd-test" + fi + if [ "`use socks5`" ]; + then + myconf="${myconf} --enable-socks5" + fi + + if [ -z "`use nls`" ] + then + myconf="${myconf} --disable-nls" + mkdir ./intl + touch ./intl/libgettext.h + fi + # remove the panel applet if you dont use gnome, nice hack for gnome2 compability + use gnome || myconf="${myconf} --disable-applet" + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die + + emake || die +} + +src_install() { + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/log \ + install || die + + dodoc AUTHORS COPYING CREDITS ChangeLog NEWS README TODO ABOUT-NLS +} |