diff options
author | Sam James <sam@gentoo.org> | 2022-04-17 20:03:42 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-17 20:16:51 +0100 |
commit | 80eb60265c3dd27edeca957ea659a5a144db9348 (patch) | |
tree | 0bc60647650c6f8c45f561f54d95aa516446fb91 /net-libs/libiscsi | |
parent | net-libs/czmq: drop 4.2.0 (diff) | |
download | gentoo-80eb60265c3dd27edeca957ea659a5a144db9348.tar.gz gentoo-80eb60265c3dd27edeca957ea659a5a144db9348.tar.bz2 gentoo-80eb60265c3dd27edeca957ea659a5a144db9348.zip |
net-libs/libiscsi: drop 1.19.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/libiscsi')
-rw-r--r-- | net-libs/libiscsi/libiscsi-1.19.0.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-libs/libiscsi/libiscsi-1.19.0.ebuild b/net-libs/libiscsi/libiscsi-1.19.0.ebuild deleted file mode 100644 index bbf7c504a2ce..000000000000 --- a/net-libs/libiscsi/libiscsi-1.19.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/sahlberg/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-remove-ld-iscsi.patch.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -fi - -DESCRIPTION="iscsi client library and utilities" -HOMEPAGE="https://github.com/sahlberg/libiscsi" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" - -RDEPEND="dev-libs/libgcrypt:0=" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.18.0-fno-common.patch - "${FILESDIR}"/${PN}-1.18.0-fno-common-2.patch - "${FILESDIR}"/${PN}-1.18.0-fno-common-3.patch - "${WORKDIR}"/${P}-remove-ld-iscsi.patch -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --enable-manpages \ - --disable-static \ - --disable-werror -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -} |