summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Fitzgerald <gregf@gentoo.org>2003-07-22 06:02:12 +0000
committerGreg Fitzgerald <gregf@gentoo.org>2003-07-22 06:02:12 +0000
commit13de56e661dbb2af116032388502d6f5f038ca8e (patch)
tree4a360f70779e2af669a6e23aa2eb5b53141a1c15 /net-irc
parentfirst release of ircii (diff)
downloadgentoo-2-13de56e661dbb2af116032388502d6f5f038ca8e.tar.gz
gentoo-2-13de56e661dbb2af116032388502d6f5f038ca8e.tar.bz2
gentoo-2-13de56e661dbb2af116032388502d6f5f038ca8e.zip
first release of ircii
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/ircii/ChangeLog9
-rw-r--r--net-irc/ircii/Manifest3
-rw-r--r--net-irc/ircii/files/digest-ircii-200307091
-rw-r--r--net-irc/ircii/ircii-20030709.ebuild42
4 files changed, 54 insertions, 1 deletions
diff --git a/net-irc/ircii/ChangeLog b/net-irc/ircii/ChangeLog
new file mode 100644
index 000000000000..461d85272bc0
--- /dev/null
+++ b/net-irc/ircii/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for net-irc/ircii
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ChangeLog,v 1.1 2003/07/22 06:02:06 gregf Exp $
+
+*ircii-20030709 (22 Jul 2003)
+
+ 22 Jul 2003; Greg Fitzgerald <gregf@gentoo.org> ircii-20030709.ebuild:
+ Initial Release
+
diff --git a/net-irc/ircii/Manifest b/net-irc/ircii/Manifest
index 9dda91ab0176..f423339cb09c 100644
--- a/net-irc/ircii/Manifest
+++ b/net-irc/ircii/Manifest
@@ -1,2 +1,3 @@
-MD5 b90e27534c4441e54b47dfc0a84129e3 ircii-20030709.ebuild 797
+MD5 66c10d8c8ee583ad79b7af84816538e8 ircii-20030709.ebuild 792
+MD5 4a6f8a3da99d6da0117517c0fa7ef7a1 ChangeLog 330
MD5 954a7ad41538e4a5f68b720074da0891 files/digest-ircii-20030709 67
diff --git a/net-irc/ircii/files/digest-ircii-20030709 b/net-irc/ircii/files/digest-ircii-20030709
new file mode 100644
index 000000000000..badf73b0f067
--- /dev/null
+++ b/net-irc/ircii/files/digest-ircii-20030709
@@ -0,0 +1 @@
+MD5 b84fa6426dc60b2aaa9961ed17dfaef2 ircii-20030709.tar.bz2 557113
diff --git a/net-irc/ircii/ircii-20030709.ebuild b/net-irc/ircii/ircii-20030709.ebuild
new file mode 100644
index 000000000000..09bb33dff462
--- /dev/null
+++ b/net-irc/ircii/ircii-20030709.ebuild
@@ -0,0 +1,42 @@
+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/"
+
+DEPEND=">=dev-libs/glib-1.2
+ sys-libs/ncurses
+ >=sys-apps/sed-4"
+RDEPEND="( sys-devel/gettext )"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+src_unpack() {
+ unpack ${A}
+}
+
+src_compile() {
+
+# use socks || myconf="${myconf} --with-socks"
+
+ use ipv6 && myconf="${myconf} --enable-ipv6"
+
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --sysconfdir=/etc \
+ ${myconf} || die "./configure failed"
+
+ emake || die
+}
+
+src_install() {
+
+ prepalldocs
+ dodoc ChangeLog INSTALL NEWS README
+ dodoc doc/Copyright doc/crypto doc/VERSIONS doc/ctcp
+}