diff options
author | 2008-02-26 01:16:28 +0000 | |
---|---|---|
committer | 2008-02-26 01:16:28 +0000 | |
commit | 4937d296af11ae4c0f57c4e4a561d974145f0a77 (patch) | |
tree | df1a1c12d92791146f5f20e346758d7761302add /net-irc | |
parent | Mark stable on AMD64, PPC & X86. Tested on a Core 2 Duo T7700, PowerBook5,9 a... (diff) | |
download | gentoo-2-4937d296af11ae4c0f57c4e4a561d974145f0a77.tar.gz gentoo-2-4937d296af11ae4c0f57c4e4a561d974145f0a77.tar.bz2 gentoo-2-4937d296af11ae4c0f57c4e4a561d974145f0a77.zip |
Version bump. Mark 0.12.0 stable on X86.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/conspire/ChangeLog | 8 | ||||
-rw-r--r-- | net-irc/conspire/conspire-0.12.0.ebuild | 4 | ||||
-rw-r--r-- | net-irc/conspire/conspire-0.13.1.ebuild | 38 |
3 files changed, 47 insertions, 3 deletions
diff --git a/net-irc/conspire/ChangeLog b/net-irc/conspire/ChangeLog index 63a3f0e575a4..cfe898529443 100644 --- a/net-irc/conspire/ChangeLog +++ b/net-irc/conspire/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-irc/conspire # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/ChangeLog,v 1.2 2008/02/25 22:04:36 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/ChangeLog,v 1.3 2008/02/26 01:16:28 chainsaw Exp $ + +*conspire-0.13.1 (26 Feb 2008) + + 26 Feb 2008; Tony Vroon <chainsaw@gentoo.org> conspire-0.12.0.ebuild, + +conspire-0.13.1.ebuild: + Version bump. Mark 0.12.0 stable on X86. 25 Feb 2008; Tony Vroon <chainsaw@gentoo.org> conspire-0.12.0.ebuild: Add ~AMD64 keyword. Tested on a Core 2 Duo T7700. diff --git a/net-irc/conspire/conspire-0.12.0.ebuild b/net-irc/conspire/conspire-0.12.0.ebuild index fb8951dd68cb..e1b6d0d2bc63 100644 --- a/net-irc/conspire/conspire-0.12.0.ebuild +++ b/net-irc/conspire/conspire-0.12.0.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/conspire-0.12.0.ebuild,v 1.2 2008/02/25 22:04:36 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/conspire-0.12.0.ebuild,v 1.3 2008/02/26 01:16:28 chainsaw Exp $ DESCRIPTION="A high quality IRC client which uses a multitude of interfaces" HOMEPAGE="http://www.nenolod.net/conspire/" SRC_URI="http://distfiles.atheme.org/${P}.tbz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~amd64" +KEYWORDS="x86 ~amd64" IUSE="python gnutls ipv6 nls mmx socks5" DEPEND=">=dev-libs/libmowgli-0.6.0 >=x11-libs/gtk+-2.10 diff --git a/net-irc/conspire/conspire-0.13.1.ebuild b/net-irc/conspire/conspire-0.13.1.ebuild new file mode 100644 index 000000000000..d3cebe274868 --- /dev/null +++ b/net-irc/conspire/conspire-0.13.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/conspire/conspire-0.13.1.ebuild,v 1.1 2008/02/26 01:16:28 chainsaw Exp $ + +DESCRIPTION="A high quality IRC client which uses a multitude of interfaces" +HOMEPAGE="http://www.nenolod.net/conspire/" +SRC_URI="http://distfiles.atheme.org/${P}.tbz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="python gnutls ipv6 nls mmx socks5" +DEPEND=">=dev-libs/libmowgli-0.6.0 + >=x11-libs/gtk+-2.10 + >=dev-libs/glib-2.14 + x11-libs/libsexy" +RDEPEND="${DEPEND} + >=sys-apps/dbus-0.60 + nls? ( dev-util/intltool ) + python? ( >=dev-lang/python-2.2 )" + +src_compile() { + econf \ + $(use_enable socks5 socks) \ + $(use_enable ipv6) \ + $(use_enable gnutls) \ + $(use_enable python) \ + $(use_enable mmx) \ + $(use_enable nls) \ + --enable-spell=libsexy \ + --enable-regex \ + || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc NEWS TODO +} |