diff options
-rw-r--r-- | net-irc/irssi/ChangeLog | 41 | ||||
-rw-r--r-- | net-irc/irssi/files/digest-irssi-0.8.5-r2 | 1 | ||||
-rw-r--r-- | net-irc/irssi/irssi-0.8.5-r2.ebuild | 73 |
3 files changed, 91 insertions, 24 deletions
diff --git a/net-irc/irssi/ChangeLog b/net-irc/irssi/ChangeLog index b9d774d47263..634f321af527 100644 --- a/net-irc/irssi/ChangeLog +++ b/net-irc/irssi/ChangeLog @@ -1,34 +1,27 @@ # ChangeLog for homeblutgensgentoo-x86net-ircirssiChangeLog/ # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.5 2002/07/25 04:51:31 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.6 2002/09/12 22:40:24 drobbins Exp $ -irssi-0.8.5-r1 (15 Jul 2002) +*irssi-0.8.5-r2 (12 Sep 2002) - 24 Jul 2002; Mark Guertin <gerk@gentoo.org> : - Added ppc to keywords + 12 Sep 2002; Daniel Robbins <drobbins@gentoo.org>: new rev bump with + configuration flag fixes: several use/configure combos were toggled, the + ebuild had "--enable-perl" instead of "--with-perl", etc. - 15 Jul 2002; Ben Lutgens <lamer@gentoo.org> ChangeLog : +*irssi-0.8.5-r1 (15 Jul 2002) - incremented the version number. Anyone with socks in use gets an additional - depend on net-misc/dante-1.1.13. It's needed for libsocks.so and socks.h - (otherwise toggling the option --with-socks does no good) needs more socks - testing however so it's getting masked) + 24 Jul 2002; Mark Guertin <gerk@gentoo.org>: Added ppc to keywords -irssi-0.8.5 (23 Jun 2002) - 23 Jun 2002; lamer <lamer@gentoo.org> - Updated to latest version from upstream. Fixes a topic string overflow - DoS attack. Upgrade now. + 15 Jul 2002; Ben Lutgens <lamer@gentoo.org> ChangeLog: Incremented the + version number. Anyone with socks in use gets an additional depend on + net-misc/dante-1.1.13. It's needed for libsocks.so and socks.h (otherwise + toggling the option --with-socks does no good) needs more socks testing + however so it's getting masked) - 11 Apr 2002; Spider <spider@gentoo.org> - Update all glib dependencies to use glib-1.2* in preparation of unmasking the glib-2.0.1 packages +*irssi-0.8.5 (23 Jun 2002) + 23 Jun 2002; lamer <lamer@gentoo.org>: Updated to latest version from + upstream. Fixes a topic string overflow DoS attack. Upgrade now. -*irssi-0.7.98.4 (1 Feb 2002) - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. + 11 Apr 2002; Spider <spider@gentoo.org>: Update all glib dependencies to use + glib-1.2* in preparation of unmasking the glib-2.0.1 packages diff --git a/net-irc/irssi/files/digest-irssi-0.8.5-r2 b/net-irc/irssi/files/digest-irssi-0.8.5-r2 new file mode 100644 index 000000000000..1d894caa40ff --- /dev/null +++ b/net-irc/irssi/files/digest-irssi-0.8.5-r2 @@ -0,0 +1 @@ +MD5 e9f3ab84da0c8eeda21b2c3823e0ad96 irssi-0.8.5.tar.bz2 738657 diff --git a/net-irc/irssi/irssi-0.8.5-r2.ebuild b/net-irc/irssi/irssi-0.8.5-r2.ebuild new file mode 100644 index 000000000000..256b82b6e3ac --- /dev/null +++ b/net-irc/irssi/irssi-0.8.5-r2.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.5-r2.ebuild,v 1.1 2002/09/12 22:40:24 drobbins Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A modular textUI IRC client with IPv6 support." +SRC_URI="http://irssi.org/files/${P}.tar.bz2" +HOMEPAGE="http://irssi.org" + +DEPEND=" + =dev-libs/glib-1.2* + sys-libs/ncurses + perl? ( sys-devel/perl )" + #socks? ( >=net-misc/dante-1.1.13 ) + +RDEPEND="nls? ( sys-devel/gettext )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc" + + +src_compile() { + + # Note: there is an option to build a GUI for irssi, but according + # to the website the GUI is no longer developed, so that option is + # not used here. + + # Edit these if you like + myconf="--without-servertest --with-bot --with-proxy --with-ncurses" + + use nls || myconf="${myconf} --disable-nls" + + #perl is auto-detected and must be explicitly disabled + use perl || myconf="${myconf} --with-perl=no" + + #ipv6 needs to be explicitly enabled + use ipv6 && myconf="${myconf} --enable-ipv6" + + #socks needs to be explicitly enabled + #use socks && myconf="${myconf} --with-socks" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --sysconfdir=/etc \ + ${myconf} || die "./configure failed" + + emake || die +} + +src_install () { + myflags="" + + use perl && ( \ + cd ${S}/src/perl/common + mv Makefile Makefile.orig + sed "s:^PREFIX:PREFIX = ${D}/usr:" \ + Makefile.orig > Makefile + cd ${S} + ) + + make DESTDIR=${D} \ + PREFIX=${D}/usr \ + docdir=/usr/share/doc/${PF} \ + gnulocaledir=${D}/usr/share/locale \ + ${myflags} \ + install || die + + dodoc AUTHORS ChangeLog README TODO NEWS +} |