diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-21 18:30:06 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-21 18:30:06 +0000 |
commit | 24d3e7b4dd46a169cc09b790af93ccd9a6019aae (patch) | |
tree | 1b8f0c3377d220e0022a5986f3d8e6cb03541402 /net-im/gnugadu | |
parent | Stable on ppc64 (bug #99754) (diff) | |
download | gentoo-2-24d3e7b4dd46a169cc09b790af93ccd9a6019aae.tar.gz gentoo-2-24d3e7b4dd46a169cc09b790af93ccd9a6019aae.tar.bz2 gentoo-2-24d3e7b4dd46a169cc09b790af93ccd9a6019aae.zip |
Forced gnugadu to use external gg lib, because internal one has security holes. Added net-libs/libgadu to DEPEND. bug #99816
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-im/gnugadu')
-rw-r--r-- | net-im/gnugadu/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/gnugadu/files/digest-gnugadu-2.2.6-r1 | 1 | ||||
-rw-r--r-- | net-im/gnugadu/gnugadu-2.2.6-r1.ebuild | 67 |
3 files changed, 75 insertions, 1 deletions
diff --git a/net-im/gnugadu/ChangeLog b/net-im/gnugadu/ChangeLog index 79d44ac4c168..5f696c1f476b 100644 --- a/net-im/gnugadu/ChangeLog +++ b/net-im/gnugadu/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/gnugadu # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gnugadu/ChangeLog,v 1.37 2005/07/07 18:54:29 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gnugadu/ChangeLog,v 1.38 2005/07/21 18:30:05 sekretarz Exp $ + +*gnugadu-2.2.6-r1 (21 Jul 2005) + + 21 Jul 2005; <sekretarz@gentoo.org> +gnugadu-2.2.6-r1.ebuild: + Forced gnugadu to use external gg lib, because internal one has security + holes. Added net-libs/libgadu to DEPEND. bug #99816 07 Jul 2005; Michał Januszewski <spock@gentoo.org> gnugadu-2.2.6.ebuild: Marked stable on x86. diff --git a/net-im/gnugadu/files/digest-gnugadu-2.2.6-r1 b/net-im/gnugadu/files/digest-gnugadu-2.2.6-r1 new file mode 100644 index 000000000000..b6fcb950f0e8 --- /dev/null +++ b/net-im/gnugadu/files/digest-gnugadu-2.2.6-r1 @@ -0,0 +1 @@ +MD5 b293127984d300cbd8cbf0a89e6b8fa8 gg2-2.2.6.tar.gz 1371439 diff --git a/net-im/gnugadu/gnugadu-2.2.6-r1.ebuild b/net-im/gnugadu/gnugadu-2.2.6-r1.ebuild new file mode 100644 index 000000000000..242e3d8b5f24 --- /dev/null +++ b/net-im/gnugadu/gnugadu-2.2.6-r1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/gnugadu/gnugadu-2.2.6-r1.ebuild,v 1.1 2005/07/21 18:30:05 sekretarz 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 ~sparc" + +DEPEND=">=net-libs/libgadu-20050719 + >=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 --with-external-libgadu" + + 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 + insinto /usr/share/applications + doins gg2.desktop + dodoc AUTHORS ChangeLog NEWS README TODO +} + |