From 5d986796ca06410a08cd741b5fddd3c656b5fb6d Mon Sep 17 00:00:00 2001 From: Samuli Suominen Date: Sun, 20 Jun 2010 12:16:58 +0000 Subject: Version bump wrt #305045 by "Shark". (Portage version: 2.2_rc67/cvs/Linux x86_64) --- net-irc/scrollz/ChangeLog | 9 +++++-- net-irc/scrollz/scrollz-2.1.ebuild | 51 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 net-irc/scrollz/scrollz-2.1.ebuild (limited to 'net-irc') diff --git a/net-irc/scrollz/ChangeLog b/net-irc/scrollz/ChangeLog index 238673b47b6d..53ce8a3762a6 100644 --- a/net-irc/scrollz/ChangeLog +++ b/net-irc/scrollz/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/scrollz -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/scrollz/ChangeLog,v 1.29 2008/01/16 20:49:32 grobian Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/scrollz/ChangeLog,v 1.30 2010/06/20 12:16:58 ssuominen Exp $ + +*scrollz-2.1 (20 Jun 2010) + + 20 Jun 2010; Samuli Suominen +scrollz-2.1.ebuild: + Version bump wrt #305045 by "Shark". 16 Jan 2008; Fabian Groffen scrollz-1.9.99.ebuild: Dropped ppc-macos keyword, see you in prefix diff --git a/net-irc/scrollz/scrollz-2.1.ebuild b/net-irc/scrollz/scrollz-2.1.ebuild new file mode 100644 index 000000000000..6b235d8ccf08 --- /dev/null +++ b/net-irc/scrollz/scrollz-2.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/scrollz/scrollz-2.1.ebuild,v 1.1 2010/06/20 12:16:58 ssuominen Exp $ + +EAPI=2 + +DESCRIPTION="Advanced IRC client based on ircII" +HOMEPAGE="http://packages.qa.debian.org/s/scrollz.html" +SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${PV}.orig.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" +IUSE="gmp gnutls ipv6 socks5 ssl" + +DEPEND="sys-libs/ncurses + gmp? ( dev-libs/gmp ) + ssl? ( + gnutls? ( net-libs/gnutls ) + !gnutls? ( dev-libs/openssl ) + )" + +S=${WORKDIR}/${P}.orig + +src_configure() { + local _myssl + + if use ssl; then + if use gnutls; then + _myssl="--with-ssl" + else + _myssl="--with-openssl" + fi + fi + + econf \ + --with-default-server=irc.gentoo.org \ + $(use_enable socks5) \ + $(use_enable ipv6) \ + --enable-regexp \ + $(use_enable gmp fish) \ + ${_myssl} +} + +src_install() { + einstall \ + sharedir="${D}/usr/share" \ + mandir="${D}/usr/share/man/man1" || die + + dodoc ChangeLog* NEWS README* todo || die +} -- cgit v1.2.3-65-gdbad