diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-12-22 18:33:04 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-12-22 18:33:04 +0000 |
commit | 3871669aa1a19fc590f3be8b499fdccbeb0c75c9 (patch) | |
tree | a84004cffcafb292b1136f5380c686eb2f6ac99c /net-irc | |
parent | New version (diff) | |
download | gentoo-2-3871669aa1a19fc590f3be8b499fdccbeb0c75c9.tar.gz gentoo-2-3871669aa1a19fc590f3be8b499fdccbeb0c75c9.tar.bz2 gentoo-2-3871669aa1a19fc590f3be8b499fdccbeb0c75c9.zip |
new version; obey USE="-ssl"
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/irssi/ChangeLog | 11 | ||||
-rw-r--r-- | net-irc/irssi/files/digest-irssi-0.8.6-r1 | 1 | ||||
-rw-r--r-- | net-irc/irssi/irssi-0.8.6-r1.ebuild | 81 |
3 files changed, 90 insertions, 3 deletions
diff --git a/net-irc/irssi/ChangeLog b/net-irc/irssi/ChangeLog index 1b78e08f9311..ae9139154dd8 100644 --- a/net-irc/irssi/ChangeLog +++ b/net-irc/irssi/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for net-irc/irssi # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.15 2002/12/20 23:28:57 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.16 2002/12/22 18:33:04 blizzy Exp $ - 21 Dec 2002; Maik Schreiber <blizzy@gentoo.org> : Changed "~x86" to "x86" - in KEYWORDS. +*irssi-0.8.6-r1 (22 Dec 2002) + + 22 Dec 2002; Maik Schreiber <blizzy@gentoo.org> : Obey USE="-ssl" (bug + #12566). + + 21 Dec 2002; Maik Schreiber <blizzy@gentoo.org> irssi-0.8.6.ebuild: Changed + "~x86" to "x86" in KEYWORDS. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/net-irc/irssi/files/digest-irssi-0.8.6-r1 b/net-irc/irssi/files/digest-irssi-0.8.6-r1 new file mode 100644 index 000000000000..0ecb65f16bf8 --- /dev/null +++ b/net-irc/irssi/files/digest-irssi-0.8.6-r1 @@ -0,0 +1 @@ +MD5 6d66982723e2eb8780ae3b8b3a7ba08d irssi-0.8.6.tar.bz2 746551 diff --git a/net-irc/irssi/irssi-0.8.6-r1.ebuild b/net-irc/irssi/irssi-0.8.6-r1.ebuild new file mode 100644 index 000000000000..3df3e43b34c0 --- /dev/null +++ b/net-irc/irssi/irssi-0.8.6-r1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.6-r1.ebuild,v 1.1 2002/12/22 18:33:04 blizzy Exp $ + +IUSE="nls ipv6 perl" + +inherit perl-module + +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 ~sparc" + +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" + + #ssl is auto-detected and must be disabled explicitly + use ssl || myconf="${myconf} --disable-ssl" + + ./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 + perl-module_src_prep + cd ${S}/src/perl/irc + perl-module_src_prep + cd ${S}/src/perl/textui + perl-module_src_prep + cd ${S}/src/perl/ui + perl-module_src_prep + cd ${S} + ) + + make DESTDIR=${D} \ + PREFIX=${D}/usr \ + docdir=/usr/share/doc/${PF} \ + gnulocaledir=${D}/usr/share/locale \ + ${myflags} \ + install || die + + prepalldocs + dodoc AUTHORS ChangeLog README TODO NEWS +} |