diff options
author | Sam James <sam@gentoo.org> | 2023-12-28 06:13:59 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-12-28 14:57:28 +0000 |
commit | 78ac2ca454ace12f63b73dc8492b3dc86d162381 (patch) | |
tree | 0e36bd45bfda18201cc9476ccb0a3cfa9907e740 /net-irc | |
parent | sys-apps/texinfo: drop 7.1 (diff) | |
download | gentoo-78ac2ca454ace12f63b73dc8492b3dc86d162381.tar.gz gentoo-78ac2ca454ace12f63b73dc8492b3dc86d162381.tar.bz2 gentoo-78ac2ca454ace12f63b73dc8492b3dc86d162381.zip |
net-irc/irssi: drop 1.4.4
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/irssi/irssi-1.4.4.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/net-irc/irssi/irssi-1.4.4.ebuild b/net-irc/irssi/irssi-1.4.4.ebuild deleted file mode 100644 index 46726102547f..000000000000 --- a/net-irc/irssi/irssi-1.4.4.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -GENTOO_DEPEND_ON_PERL="no" -inherit perl-module meson - -DESCRIPTION="A modular textUI IRC client with IPv6 support" -HOMEPAGE="https://irssi.org/" - -if [[ ${PV} == *9999* ]] ; then - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" - inherit git-r3 -else - # Keep for _rc compability - MY_P="${P/_/-}" - - SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV/_/-}/${MY_P}.tar.xz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="otr +perl selinux +proxy" - -RDEPEND=" - >=dev-libs/glib-2.6.0 - dev-libs/openssl:= - sys-libs/ncurses:= - otr? ( - >=dev-libs/libgcrypt-1.2.0:= - >=net-libs/libotr-4.1.0 - ) - perl? ( dev-lang/perl:= ) -" -DEPEND="${RDEPEND}" -BDEPEND="dev-lang/perl - virtual/pkgconfig" -RDEPEND+=" selinux? ( sec-policy/selinux-irc )" - -src_configure() { - local emesonargs=( - -Ddocdir="${EPREFIX}"/usr/share/doc/${PF} - -Dwith-perl-lib=vendor - -Dwith-otr=$(usex otr) - -Dwith-proxy=$(usex proxy) - -Dwith-perl=$(usex perl) - - # Carried over from autotools (for now?), bug #677804 - -Ddisable-utf8proc=yes - -Dwith-fuzzer=no - -Dinstall-glib=no - ) - - meson_src_configure -} - -src_test() { - # We don't want perl-module's src_test - meson_src_test -} - -src_install() { - meson_src_install - - use perl && perl_delete_localpod -} |