summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/ircii/ChangeLog9
-rw-r--r--net-irc/ircii/files/digest-ircii-200607253
-rw-r--r--net-irc/ircii/ircii-20060725.ebuild30
3 files changed, 40 insertions, 2 deletions
diff --git a/net-irc/ircii/ChangeLog b/net-irc/ircii/ChangeLog
index b56e3ea3a8ac..f4fb6de61ec9 100644
--- a/net-irc/ircii/ChangeLog
+++ b/net-irc/ircii/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/ircii
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ChangeLog,v 1.19 2006/08/22 13:02:03 weeve Exp $
+# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ChangeLog,v 1.20 2007/02/17 12:37:06 armin76 Exp $
+
+*ircii-20060725 (17 Feb 2007)
+
+ 17 Feb 2007; Raúl Porcel <armin76@gentoo.org> +ircii-20060725.ebuild:
+ version bump, bug 166947
22 Aug 2006; Jason Wever <weeve@gentoo.org> ircii-20040820.ebuild:
Stable on SPARC.
diff --git a/net-irc/ircii/files/digest-ircii-20060725 b/net-irc/ircii/files/digest-ircii-20060725
new file mode 100644
index 000000000000..d48477b0f367
--- /dev/null
+++ b/net-irc/ircii/files/digest-ircii-20060725
@@ -0,0 +1,3 @@
+MD5 280ae54367627591c1c43c765eb9d59b ircii-20060725.tar.bz2 560505
+RMD160 9273d491c0a02c6235ff8918778171025d8fd053 ircii-20060725.tar.bz2 560505
+SHA256 102a1ade89e8e76030d0c7de98ff61fa56d462073ebe9305f18bdaa814713752 ircii-20060725.tar.bz2 560505
diff --git a/net-irc/ircii/ircii-20060725.ebuild b/net-irc/ircii/ircii-20060725.ebuild
new file mode 100644
index 000000000000..cf847cf5732d
--- /dev/null
+++ b/net-irc/ircii/ircii-20060725.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ircii-20060725.ebuild,v 1.1 2007/02/17 12:37:06 armin76 Exp $
+
+IUSE="ipv6"
+
+DESCRIPTION="ircII is an IRC and ICB client that runs under most UNIX platforms."
+SRC_URI="ftp://ircii.warped.com/pub/ircII/${P}.tar.bz2"
+HOMEPAGE="http://www.eterna.com.au/ircii/"
+
+RDEPEND="sys-libs/ncurses"
+DEPEND="${RDEPEND}
+ >=sys-apps/sed-4"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~ppc-macos ~sparc ~x86"
+
+src_compile() {
+ econf $(use_enable ipv6) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+
+ dodoc ChangeLog INSTALL NEWS README \
+ doc/Copyright doc/crypto doc/VERSIONS doc/ctcp \
+ || die "dodoc failed"
+}