diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-07-02 18:56:55 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-07-02 18:56:55 +0000 |
commit | 3055af507df5a4183474ae04bb38545b2f59707c (patch) | |
tree | 716e20f63acc7b7a7cca4850af7f3c38085fe344 /net-im | |
parent | *** empty log message *** (diff) | |
download | historical-3055af507df5a4183474ae04bb38545b2f59707c.tar.gz historical-3055af507df5a4183474ae04bb38545b2f59707c.tar.bz2 historical-3055af507df5a4183474ae04bb38545b2f59707c.zip |
*** empty log message ***
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/gaim-0.11.0_pre13.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
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..c1167a7c071e --- /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-core-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 +} + |