diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-06-16 07:10:15 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-06-16 07:10:15 +0000 |
commit | f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a (patch) | |
tree | 9d40a6c17d4788fbc837ff2f7f5188969e850bef /net-im | |
parent | gnapster is moving (diff) | |
download | historical-f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a.tar.gz historical-f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a.tar.bz2 historical-f0af7ae5090d8b8e63eacdc7a2740ba4005b9b6a.zip |
a bunch of nice stuff from lordjoe
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/files/digest-gaim-0.11.0-r13 | 1 | ||||
-rw-r--r-- | net-im/gaim/gaim-0.11.0_pre13.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/net-im/gaim/files/digest-gaim-0.11.0-r13 b/net-im/gaim/files/digest-gaim-0.11.0-r13 new file mode 100644 index 000000000000..1c83c8be2901 --- /dev/null +++ b/net-im/gaim/files/digest-gaim-0.11.0-r13 @@ -0,0 +1 @@ +MD5 5acee72cbb145cbf347d18eeb9f3f724 gaim-0.11.0pre13.tar.bz2 diff --git a/net-im/gaim/gaim-0.11.0_pre13.ebuild b/net-im/gaim/gaim-0.11.0_pre13.ebuild new file mode 100644 index 000000000000..c8790c4b2469 --- /dev/null +++ b/net-im/gaim/gaim-0.11.0_pre13.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Joe Bormolini <lordjoe@bigfoot.com> + +P2=gaim-0.11.0pre13 +S=${WORKDIR}/${P2} +DESCRIPTION="Gtk AOL Instant Messenger client" +SRC_URI="http://prdownloads.sourceforge.net/gaim/${P2}.tar.bz2" +HOMEPAGE="http://gaim.sourceforge.net" + +DEPEND=">=x11-libs/gtk+-1.2.3 + gnome? ( >=gnome-base/gnome-libs-1.2.13 ) + perl? ( >=sys-devel/perl-5.6.1 ) + nas? ( >=media-sound/nas-1.4.1-r1 ) + esd? ( >=media-sound/esound-0.2.22-r2 )" + +src_compile() { + + local myopts + if [ "`use gnome`" ] + then + myopts="--with-gnome=${GNOMEDIR} --enable-panel --prefix=/opt/gnome" + else + myopts="--disable-gnome --disable-pixbuf --prefix=/usr/X11R6" + fi + if [ -z "`use esd`" ] ; then + myopts="$myopts --disable-esd" + fi + if [ -z "`use nas`" ] ; then + myopts="$myopts --disable-nas" + fi + if [ -z "`use perl`" ] ; then + myopts="$myopts --disable-perl" + fi + try ./configure --host=${CHOST} ${myopts} + try pmake + +} + +src_install () { + + try make DESTDIR=${D} install + dodoc ChangeLog README README.plugins +} + |