diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-03-03 07:28:36 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-03-03 07:28:36 +0000 |
commit | 10f7ebae82f795bf591c9c7c2d8ae68185dbf7d4 (patch) | |
tree | be876f36ce8c3eecf02f677343ee3ccc728c4edf /net-im/gaim | |
parent | Removing bad char in ChangeLog (diff) | |
download | gentoo-2-10f7ebae82f795bf591c9c7c2d8ae68185dbf7d4.tar.gz gentoo-2-10f7ebae82f795bf591c9c7c2d8ae68185dbf7d4.tar.bz2 gentoo-2-10f7ebae82f795bf591c9c7c2d8ae68185dbf7d4.zip |
bump, unstable
Diffstat (limited to 'net-im/gaim')
-rw-r--r-- | net-im/gaim/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/gaim/files/digest-gaim-0.59.9 | 2 | ||||
-rw-r--r-- | net-im/gaim/gaim-0.59.9.ebuild | 72 |
3 files changed, 80 insertions, 1 deletions
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog index db189880fc0d..97c580c271b5 100644 --- a/net-im/gaim/ChangeLog +++ b/net-im/gaim/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/gaim # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.35 2003/02/12 08:00:37 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.36 2003/03/03 07:28:36 lostlogic Exp $ + +*gaim-0.59.9 (03 Mar 2003) + + 03 Mar 2003; Brandon Low <lostlogic@gentoo.org> gaim-0.59.9.ebuild: + Bump fixes for aol-8.0, stabilize soon if possible *gaim-0.59.8-r1 (13 Jan 2003) diff --git a/net-im/gaim/files/digest-gaim-0.59.9 b/net-im/gaim/files/digest-gaim-0.59.9 new file mode 100644 index 000000000000..eec8755a2e30 --- /dev/null +++ b/net-im/gaim/files/digest-gaim-0.59.9 @@ -0,0 +1,2 @@ +MD5 ef0aec77daccbc21d34b45955fc44b1c gaim-0.59.9.tar.bz2 1557480 +MD5 232d7920051a714eedb0dd75decf4084 encrypt.tar.gz 32517 diff --git a/net-im/gaim/gaim-0.59.9.ebuild b/net-im/gaim/gaim-0.59.9.ebuild new file mode 100644 index 000000000000..1af6e661655b --- /dev/null +++ b/net-im/gaim/gaim-0.59.9.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-0.59.9.ebuild,v 1.1 2003/03/03 07:28:36 lostlogic Exp $ + +inherit kde-functions eutils + +DESCRIPTION="GTK Instant Messenger client" +SRC_URI="mirror://sourceforge/gaim/${P}.tar.bz2 + ssl? ( mirror://sourceforge/gaim-encryption/encrypt.tar.gz )" +HOMEPAGE="http://gaim.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc" +IUSE="nas nls esd gnome arts perl ssl" + +DEPEND="=sys-libs/db-1* + esd? ( >=media-sound/esound-0.2.22-r2 ) + nls? ( sys-devel/gettext ) + nas? ( >=media-libs/nas-1.4.1-r1 ) + arts? ( >=kde-base/arts-0.9.5 ) + perl? ( >=sys-devel/perl-5.6.1 ) + ( gnome? ( =gnome-base/gnome-panel-1.4* >=media-libs/gdk-pixbuf-0.16.0 ) : + ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* ) ) + ssl? ( dev-libs/openssl )" + +src_unpack() { + unpack ${P}.tar.bz2 + cd ${S}/plugins + use ssl && { + unpack encrypt.tar.gz + epatch encrypt/patchfile.0.59.5 + } +} + +src_compile() { + local myconf + use esd || myconf="--disable-esd" + use perl || myconf="${myconf} --disable-perl" + use nas && myconf="${myconf} --enable-nas" || myconf="${myconf} --disable-nas" + + use arts && set-kdedir 3 || myconf="${myconf} --disable-artsc" + use nls || myconf="${myconf} --disable-nls" + + # We always build a standalone version of gaim. + # In this build, GNOME is always disabled. + cp configure{,.old} # fix for #13533 + sed -e 's:-I\\$(top_srcdir)::' configure.old > configure + econf ${myconf} --disable-gnome || die + emake || die + + # if gnome support is enabled (and gtk2 disabled), then build gaim_applet + if [ "`use gnome`" ]; + then + # save applet-less version and clean up... + cp src/gaim ${S}/gaim || die "standalone version failed to build" + make distclean || die + + econf ${myconf} --with-gnome=${GNOME_PATH} --enable-panel || die + emake || die "applet failed to build" + fi +} + +src_install () { + make DESTDIR=${D} install || die + # if gnome enabled, make sure to install standalone version also + if [ "`use gnome`" ] + then + dobin ${S}/gaim + fi + dodoc ABOUT-NLS AUTHORS HACKING INSTALL NEWS README TODO +} |