diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-28 02:30:18 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-28 02:30:18 +0000 |
commit | c88cb728c4f5406a28bbfae71aaf71780c3e27cf (patch) | |
tree | 6320cba0fdaa66b7e454c5af7a69b32006ef146d /net-im | |
parent | version blooper (diff) | |
download | historical-c88cb728c4f5406a28bbfae71aaf71780c3e27cf.tar.gz historical-c88cb728c4f5406a28bbfae71aaf71780c3e27cf.tar.bz2 historical-c88cb728c4f5406a28bbfae71aaf71780c3e27cf.zip |
depending on gnome-panel instead of gnome-core
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/ChangeLog | 6 | ||||
-rw-r--r-- | net-im/gaim/files/digest-gaim-0.59-r2 | 1 | ||||
-rw-r--r-- | net-im/gaim/gaim-0.59-r2.ebuild | 85 |
3 files changed, 92 insertions, 0 deletions
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog index a039ec8bd452..cf44230d1351 100644 --- a/net-im/gaim/ChangeLog +++ b/net-im/gaim/ChangeLog @@ -2,6 +2,12 @@ # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL # $ Header: $ + +gaim-0.59-r2 ( 28 Jun 2002) + 28 Jun 2002; Spider <spider@gentoo.org> gaim-0.59-r2.ebuild: + moved gnome-core to gnome-panel 1.4.1 + + *gaim-0.59-r1 (27 June 2002) 27 June 2002; Jays Kwak <jayskwak@gentoo.org> gaim-0.59-r1.ebuild diff --git a/net-im/gaim/files/digest-gaim-0.59-r2 b/net-im/gaim/files/digest-gaim-0.59-r2 new file mode 100644 index 000000000000..9db3fc84d835 --- /dev/null +++ b/net-im/gaim/files/digest-gaim-0.59-r2 @@ -0,0 +1 @@ +MD5 d32006df4d76095413b4bf0ab2d29351 gaim-0.59.tar.bz2 1496899 diff --git a/net-im/gaim/gaim-0.59-r2.ebuild b/net-im/gaim/gaim-0.59-r2.ebuild new file mode 100644 index 000000000000..e3e0013b7e6c --- /dev/null +++ b/net-im/gaim/gaim-0.59-r2.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-0.59-r2.ebuild,v 1.1 2002/06/28 02:30:18 spider Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Gtk Instant Messenger client" + +SRC_URI1="http://unc.dl.sourceforge.net/sourceforge/gaim/${P}.tar.bz2" +SRC_URI2="http://telia.dl.sourceforge.net/sourceforge/gaim/${P}.tar.bz2" +SRC_URI3="http://belnet.dl.sourceforge.net/sourceforge/gaim/${P}.tar.bz2" +SRC_URI="${SRC_URI1} ${SRC_URI2} ${SRC_URI3}" + +HOMEPAGE="http://gaim.sourceforge.net" +LICENSE="GPL-2" +SLOT="0" +DEPEND="=x11-libs/gtk+-1.2* + =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.1 + <gnome-base/gnome-panel-1.5.0 + >=media-libs/gdk-pixbuf-0.16.0 )" + +RDEPEND="${DEPEND}" + +src_unpack() { + + unpack ${P}.tar.bz2 + + # patch for korean encoding + # It should be ok with other languages + # the patch only works with nls + use nls && patch -p0 < ${FILESDIR}/${P}-korean.patch + +} + +src_compile() { + + local myopts gnomeopts + + use esd || myopts="--disable-esd" + use nas || myopts="${myopts} --disable-nas" + use perl || myopts="${myopts} --disable-perl" + + use arts || myopts="${myopts} --disable-artsc" + use arts && KDEDIR="${KDE3DIR}" + + use nls || myopts="${myopts} --disable-nls" + + gnomeopts="${myopts}" + myopts="${myopts} --disable-gnome" + + # always build standalone gaim program + + # transparency + # patch -p1 < ${FILESDIR}/transparency.diff || die + econf ${myopts} || die + emake || die + + # if gnome support is enabled, then build gaim_applet + use gnome && ( \ + gnomeopts="${gnomeopts} --with-gnome=${GNOME_PATH} --enable-panel" + + # save appletless version and clean up + cp src/gaim ${S}/gaim || die "standalone version failed to build" + make distclean || die + + econf ${gnomeopts} || die + emake || die + ) + +} + +src_install () { + + make DESTDIR=${D} install || die + + # if gnome enabled, make sure to install standalone version also + use gnome && dobin ${S}/gaim + + dodoc ABOUT-NLS AUTHORS HACKING INSTALL NEWS README TODO +} |