diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2016-12-05 23:21:47 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-12-13 20:07:20 +0100 |
commit | b9df0a2e012d1b9529c1229fd520fd459103cd7f (patch) | |
tree | 81d8e3db99c8d56a8c1cbf4c702fc477a9c145d2 /net-libs/libiscsi/libiscsi-1.18.0.ebuild | |
parent | app-pda/jpilot: Version bump to 1.8.2 (diff) | |
download | gentoo-b9df0a2e012d1b9529c1229fd520fd459103cd7f.tar.gz gentoo-b9df0a2e012d1b9529c1229fd520fd459103cd7f.tar.bz2 gentoo-b9df0a2e012d1b9529c1229fd520fd459103cd7f.zip |
net-libs/libiscsi: 1.18.0 version bump
Builds fine with GCC-5.4.0.
Gentoo-bug: 561722
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3026
Diffstat (limited to 'net-libs/libiscsi/libiscsi-1.18.0.ebuild')
-rw-r--r-- | net-libs/libiscsi/libiscsi-1.18.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-libs/libiscsi/libiscsi-1.18.0.ebuild b/net-libs/libiscsi/libiscsi-1.18.0.ebuild new file mode 100644 index 000000000000..0fe2eb116f5a --- /dev/null +++ b/net-libs/libiscsi/libiscsi-1.18.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="iscsi client library and utilities" +HOMEPAGE="https://github.com/sahlberg/libiscsi" +SRC_URI="https://github.com/sahlberg/libiscsi/archive/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86" +IUSE="static-libs" + +RDEPEND="dev-libs/libgcrypt:0=" +DEPEND="${RDEPEND}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --enable-manpages \ + --disable-werror \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |