diff options
author | Michael Januszewski <spock@gentoo.org> | 2004-11-20 20:52:02 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2004-11-20 20:52:02 +0000 |
commit | 26cec81f55358a49015f63c7b254da1b527caed3 (patch) | |
tree | 3bb70a8a4266420db6994cce6e1667d33fc0eee5 /net-im/gnugadu/gnugadu-2.2.3.ebuild | |
parent | Added vbe (Manifest recommit) (diff) | |
download | gentoo-2-26cec81f55358a49015f63c7b254da1b527caed3.tar.gz gentoo-2-26cec81f55358a49015f63c7b254da1b527caed3.tar.bz2 gentoo-2-26cec81f55358a49015f63c7b254da1b527caed3.zip |
Version bump.
Diffstat (limited to 'net-im/gnugadu/gnugadu-2.2.3.ebuild')
-rw-r--r-- | net-im/gnugadu/gnugadu-2.2.3.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/net-im/gnugadu/gnugadu-2.2.3.ebuild b/net-im/gnugadu/gnugadu-2.2.3.ebuild new file mode 100644 index 000000000000..0846db13ad06 --- /dev/null +++ b/net-im/gnugadu/gnugadu-2.2.3.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/gnugadu/gnugadu-2.2.3.ebuild,v 1.1 2004/11/20 20:52:02 spock Exp $ + +IUSE="debug tlen esd oss xosd arts jabber perl spell" + +inherit eutils + +MY_P="gg2-${PV}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="GTK-based Gadu-Gadu, Tlen and Jabber IM client" +SRC_URI="mirror://sourceforge/ggadu/${MY_P}.tar.gz" +HOMEPAGE="http://gadu.gnu.pl/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" + +DEPEND=">=x11-libs/gtk+-2.4.0 + sys-devel/gettext + >=sys-devel/automake-1.7 + >=sys-devel/libtool-1.4 + jabber? ( >=net-libs/loudmouth-0.17 ) + xosd? ( x11-libs/xosd ) + perl? ( dev-lang/perl dev-perl/XML-Parser ) + arts? ( >=kde-base/arts-0.9.5 ) + esd? ( media-sound/esound ) + tlen? ( net-libs/libtlen ) + spell? ( app-text/gtkspell )" + +src_unpack() { + unpack ${A} + cd ${S} + sed -re 's#GTKSPELL_LIBS=`(.*)`#GTKSPELL_LIBS="`\1` -laspell"#g' -i configure +} + +src_compile() { + + myconf="--with-gui --with-gadu --with-remote --with-docklet_system_tray --with-docklet_dockapp \ + --with-sms --with-update --with-external --with-gghist --with-history-external-viewer" + + if use arts; then + myconf="${myconf} --with-arts --with-arts-prefix=`artsc-config --arts-prefix`" + fi + + econf ${myconf} \ + `use_enable debug` \ + `use_with oss` \ + `use_with esd` \ + `use_with xosd` \ + `use_with arts` \ + `use_with perl` \ + `use_with tlen` \ + `use_with jabber` \ + `use_with spell gtkspell` || die + emake || die +} + +src_install () { + + make DESTDIR=${D} install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} + |