summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2023-11-09 07:27:00 +0100
committerHans de Graaff <graaff@gentoo.org>2023-11-09 07:27:24 +0100
commit524c415744c035ae2cda5d83b52c892aa335a68a (patch)
treecb76fff1917a99a0083362ac41622cd783142da5 /net-irc/scrollz/scrollz-2.3-r1.ebuild
parentdev-util/breakpad: build with gcc:14 (diff)
downloadgentoo-524c415744c035ae2cda5d83b52c892aa335a68a.tar.gz
gentoo-524c415744c035ae2cda5d83b52c892aa335a68a.tar.bz2
gentoo-524c415744c035ae2cda5d83b52c892aa335a68a.zip
net-irc/scrollz: drop 2.3-r1
Bug: https://bugs.gentoo.org/777987 Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'net-irc/scrollz/scrollz-2.3-r1.ebuild')
-rw-r--r--net-irc/scrollz/scrollz-2.3-r1.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/net-irc/scrollz/scrollz-2.3-r1.ebuild b/net-irc/scrollz/scrollz-2.3-r1.ebuild
deleted file mode 100644
index cb6b357682e6..000000000000
--- a/net-irc/scrollz/scrollz-2.3-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_P="ScrollZ-${PV}"
-
-DESCRIPTION="Advanced IRC client based on ircII"
-HOMEPAGE="https://www.scrollz.info/"
-SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz"
-S="${WORKDIR}/ScrollZ-${MY_P}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="gmp gnutls ipv6 ssl"
-REQUIRED_USE="gnutls? ( ssl )"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="
- sys-libs/ncurses:0=
- virtual/libcrypt:=
- gmp? ( dev-libs/gmp:0= )
- ssl? (
- gnutls? ( net-libs/gnutls:0= )
- !gnutls? ( dev-libs/openssl:0= )
- )
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.3-fcommon.patch"
-)
-
-src_configure() {
- local _myssl
-
- if use ssl; then
- if use gnutls; then
- _myssl="--with-ssl"
- else
- _myssl="--with-openssl"
- fi
- fi
-
- tc-export CC #397441, ancient autoconf
- econf \
- --with-default-server="irc.gentoo.org" \
- $(use_enable ipv6) \
- --enable-regexp \
- $(use_enable gmp fish) \
- ${_myssl}
-}
-
-src_install() {
- emake \
- DESTDIR="${ED}" \
- mandir="${EPREFIX}/usr/share/man/man1" \
- install
-
- dodoc ChangeLog* NEWS README* todo
-}