diff options
Diffstat (limited to 'net-im/gaim-cvs/gaim-cvs-0.60-r3.ebuild')
-rw-r--r-- | net-im/gaim-cvs/gaim-cvs-0.60-r3.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-im/gaim-cvs/gaim-cvs-0.60-r3.ebuild b/net-im/gaim-cvs/gaim-cvs-0.60-r3.ebuild new file mode 100644 index 000000000000..4adecab914a1 --- /dev/null +++ b/net-im/gaim-cvs/gaim-cvs-0.60-r3.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim-cvs/gaim-cvs-0.60-r3.ebuild,v 1.1 2003/02/09 23:59:52 sethbc Exp $ + +IUSE="nls perl" + +DESCRIPTION="GTK Instant Messenger client - CVS ebuild." +HOMEPAGE="http://gaim.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="-x86 -ppc" + +DEPEND="=sys-libs/db-1* + !net-im/gaim + >=x11-libs/gtk+-2.0 + >=dev-libs/glib-2.0 + >=media-libs/audiofile-0.2.0 + media-libs/libao + nls? ( sys-devel/gettext ) + perl? ( >=sys-devel/perl-5.6.1 ) + spell? ( >=app-text/gtkspell-2.0.2 )" + +inherit cvs + +ECVS_SERVER="cvs.gaim.sourceforge.net:/cvsroot/gaim" +ECVS_MODULE="gaim" +ECVS_TOP_DIR="${DISTDIR}/cvs-src/${PN}" +S=${WORKDIR}/${ECVS_MODULE} + +src_compile() { + local myconf="--prefix=/usr" + + use perl || myconf="${myconf} --disable-perl" + use spell || myconf="${myconf} --disable-gtkspell" + + use nls || myconf="${myconf} --disable-nls" + + ./autogen.sh ${myconf} || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc ABOUT-NLS AUTHORS HACKING INSTALL NEWS README TODO ChangeLog +} |