diff options
author | Chuck Short <zul@gentoo.org> | 2003-09-10 23:57:55 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2003-09-10 23:57:55 +0000 |
commit | 3c9699a0bf82ca058b40ebde89ad2407e40bee6d (patch) | |
tree | 6a94e7318c2d873afd05e50de69c57e05f05a1f5 /net-irc | |
parent | Initial version, closes #19448 (diff) | |
download | gentoo-2-3c9699a0bf82ca058b40ebde89ad2407e40bee6d.tar.gz gentoo-2-3c9699a0bf82ca058b40ebde89ad2407e40bee6d.tar.bz2 gentoo-2-3c9699a0bf82ca058b40ebde89ad2407e40bee6d.zip |
Initial version, closes #19448
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/irc-client/ChangeLog | 8 | ||||
-rw-r--r-- | net-irc/irc-client/Manifest | 3 | ||||
-rw-r--r-- | net-irc/irc-client/files/digest-irc-client-2.10.3_p3 | 1 | ||||
-rw-r--r-- | net-irc/irc-client/irc-client-2.10.3_p3.ebuild | 52 |
4 files changed, 63 insertions, 1 deletions
diff --git a/net-irc/irc-client/ChangeLog b/net-irc/irc-client/ChangeLog new file mode 100644 index 000000000000..1c5aaf0bfa0a --- /dev/null +++ b/net-irc/irc-client/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-irc/irc-client +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/irc-client/ChangeLog,v 1.1 2003/09/10 23:56:26 zul Exp $ + + 10 Sep 2003; Chuck Short <zul@gentoo.org> : + Initial Version, ebuild written by Jesus Perez <jesus.pr@worldonline.es> + closes #19448. + diff --git a/net-irc/irc-client/Manifest b/net-irc/irc-client/Manifest index a5750ec7abf1..ef8a84afe652 100644 --- a/net-irc/irc-client/Manifest +++ b/net-irc/irc-client/Manifest @@ -1,2 +1,3 @@ -MD5 88eabe7a9031e19fac5077fd0ccd5d7b irc-client-2.10.3_p3.ebuild 1214 +MD5 2bb7881862893fce65bb2616203e222d irc-client-2.10.3_p3.ebuild 1320 +MD5 0a62eef3a560dec8cea5d2b73863a70e ChangeLog 354 MD5 11c6c72ebc4796aa655378f37a51cfa6 files/digest-irc-client-2.10.3_p3 60 diff --git a/net-irc/irc-client/files/digest-irc-client-2.10.3_p3 b/net-irc/irc-client/files/digest-irc-client-2.10.3_p3 new file mode 100644 index 000000000000..9f651d97a3bf --- /dev/null +++ b/net-irc/irc-client/files/digest-irc-client-2.10.3_p3 @@ -0,0 +1 @@ +MD5 bec7916f39043609c528afac507a2e00 irc2.10.3p3.tgz 671722 diff --git a/net-irc/irc-client/irc-client-2.10.3_p3.ebuild b/net-irc/irc-client/irc-client-2.10.3_p3.ebuild new file mode 100644 index 000000000000..33f11193b0f2 --- /dev/null +++ b/net-irc/irc-client/irc-client-2.10.3_p3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p3.ebuild,v 1.1 2003/09/10 23:56:26 zul Exp $ + +MY_P=irc +MY_PV=2.10.3p3 +DESCRIPTION="A simplistic RFC compliant IRC client" +HOMEPAGE="http://www.irc.org" +SRC_URI="ftp://ftp.irc.org/irc/server/${MY_P}${MY_PV}.tgz + ftp://ftp.funet.fi/pub/unix/irc/server/${MY_P}${MY_PV}.tgz" +LICENSE="GPL-1" +SLOT="0" + +KEYWORDS="~x86" +IUSE="ipv6" + +DEPEND="virtual/glibc + sys-libs/ncurses + sys-libs/zlib" + +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P}${MY_PV} + +src_compile () { + + use ipv6 && myconf="--with-ip6" || myconf="--without-ip6" + + ./configure \ + --prefix=/usr \ + --host=${CHOST} \ + --mandir=/usr/share/man \ + --sysconfdir=/etc/ircd \ + --localstatedir=/var/run/ircd \ + $myconf || die "Configure failed" + + # irc doesnt recognize the proper CHOST properly in some cases. + # Cheap hack to get it working properly. - zul + cd `support/config.guess` + emake client || die "client build failed" +} + +src_install() { + + # See note above. + cd `support/config.guess` + make \ + prefix=${D}/usr \ + client_man_dir=${D}/usr/share/man/man1 \ + install-client || die "client installed failed" + dodoc ../doc/Etiquette ../doc/alt-irc-faq ../doc/rfc* +} |