diff options
author | Seth Chandler <sethbc@gentoo.org> | 2003-02-09 23:59:52 +0000 |
---|---|---|
committer | Seth Chandler <sethbc@gentoo.org> | 2003-02-09 23:59:52 +0000 |
commit | 6d56fe1f2c74bc5ffb37ed3217d79beaf8d4380d (patch) | |
tree | f41dd5271cbf6a075409bf12f727afb3f478d6e9 /net-im | |
parent | Added media-libs/id3lib to DEPEND (diff) | |
download | gentoo-2-6d56fe1f2c74bc5ffb37ed3217d79beaf8d4380d.tar.gz gentoo-2-6d56fe1f2c74bc5ffb37ed3217d79beaf8d4380d.tar.bz2 gentoo-2-6d56fe1f2c74bc5ffb37ed3217d79beaf8d4380d.zip |
added gaim-cvs-0.60-r3 to portage except im -arch masking for right now, some audio stuffs
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim-cvs/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/gaim-cvs/files/digest-gaim-cvs-0.60-r3 | 0 | ||||
-rw-r--r-- | net-im/gaim-cvs/gaim-cvs-0.60-r3.ebuild | 46 |
3 files changed, 52 insertions, 1 deletions
diff --git a/net-im/gaim-cvs/ChangeLog b/net-im/gaim-cvs/ChangeLog index 20b59186cf45..1214b00a93d7 100644 --- a/net-im/gaim-cvs/ChangeLog +++ b/net-im/gaim-cvs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/gaim-cvs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim-cvs/ChangeLog,v 1.7 2002/12/22 21:29:20 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim-cvs/ChangeLog,v 1.8 2003/02/09 23:59:52 sethbc Exp $ + +*gaim-cvs-0.60-r3 (09 Feb 2003) + + 09 Dec 2003; Seth Chandler <sethbc@gentoo.org> : + bumped to -r3 for some major sound fixes *gaim-cvs-0.60-r2 (28 Oct 2002) diff --git a/net-im/gaim-cvs/files/digest-gaim-cvs-0.60-r3 b/net-im/gaim-cvs/files/digest-gaim-cvs-0.60-r3 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/net-im/gaim-cvs/files/digest-gaim-cvs-0.60-r3 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 +} |