diff options
Diffstat (limited to 'net-irc/scrollz/scrollz-2.1.ebuild')
-rw-r--r-- | net-irc/scrollz/scrollz-2.1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/net-irc/scrollz/scrollz-2.1.ebuild b/net-irc/scrollz/scrollz-2.1.ebuild deleted file mode 100644 index 9316aa567d73..000000000000 --- a/net-irc/scrollz/scrollz-2.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -DESCRIPTION="Advanced IRC client based on ircII" -HOMEPAGE="https://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 ~ppc x86" -IUSE="gmp gnutls ipv6 socks5 ssl" - -REQUIRED_USE="gnutls? ( ssl )" - -RDEPEND="sys-libs/ncurses - gmp? ( dev-libs/gmp ) - ssl? ( - gnutls? ( net-libs/gnutls ) - !gnutls? ( dev-libs/openssl ) - )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -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="${ED}/usr/share" \ - mandir="${ED}/usr/share/man/man1" - - dodoc ChangeLog* NEWS README* todo -} |