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 | |
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')
-rw-r--r-- | net-libs/libiscsi/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libiscsi/libiscsi-1.18.0.ebuild | 36 | ||||
-rw-r--r-- | net-libs/libiscsi/libiscsi-9999.ebuild | 4 |
3 files changed, 39 insertions, 2 deletions
diff --git a/net-libs/libiscsi/Manifest b/net-libs/libiscsi/Manifest index e5394b1568bd..e698fad44ce0 100644 --- a/net-libs/libiscsi/Manifest +++ b/net-libs/libiscsi/Manifest @@ -1,2 +1,3 @@ DIST libiscsi-1.15.0.tar.gz 223380 SHA256 489e625e58c1e6da2fa3536f9c4b12290f2d3fb4ce14edc0583b8ba500605c34 SHA512 22c566d4cf10454b9c6208d64f5dab8e32806a5036cd328f8b2d8bf14f9e9c2d519db8df4fc8884f468bad27d645ccf719502d49f6937eace88f590946366e06 WHIRLPOOL f5618c985467df1b76689ae0601d8ec8a251a61ac1d7d7a5e44165b8710827530fbd2595ed87d0b83226fecc5ef8cb5e89dfa90cd6760db800856d5e2367ce69 +DIST libiscsi-1.18.0.tar.gz 271603 SHA256 464d104e12533dc11f0dd7662cbc2f01c132f94aa4f5bd519e3413ef485830e8 SHA512 9869fd86f8ba237d71256b16d0f94ef69fb67fac315bb7a596c4d8d6ed3abba710edf9b5f5a27f5777f7b5d2feb33c09764c27a4e6c56e38dd2566836cffe36e WHIRLPOOL bf0c9b92df030b9b9a9b4045e57b38c1042e623dc0482ead06755c2e9ad980d30e6703ae01ac32d16d0a037b3a41278c5fdce4a315f87c71a3fb7fcba07114d5 DIST libiscsi-1.9.0.tar.gz 182123 SHA256 64d7d6fdb53f0cc4163a0f1dc6cc94618f34a52c4836cf25a42f3769dfd46bbf SHA512 cf88c0f32a21193499720d24f215fb02e7a46ef07999ef59cdad9cad14f92399b3d2e46e8e6f54574dc77225a5b437608216da242971e0d6f35c71830371415a WHIRLPOOL 63af85f03e032ff034b7ce3331f8cb74ffa79c4621efb9873e0b3c76f3f9620439c11216f33d1e97c784f98ecff516048e53f66d88d51dc81578e7e535135588 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 +} diff --git a/net-libs/libiscsi/libiscsi-9999.ebuild b/net-libs/libiscsi/libiscsi-9999.ebuild index d3c3d7c5442b..28f3f6f15348 100644 --- a/net-libs/libiscsi/libiscsi-9999.ebuild +++ b/net-libs/libiscsi/libiscsi-9999.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit autotools eutils git-r3 +inherit autotools git-r3 DESCRIPTION="iscsi client library and utilities" HOMEPAGE="https://github.com/sahlberg/libiscsi" @@ -33,5 +33,5 @@ src_configure() { src_install() { default - prune_libtool_files + find "${D}" -name '*.la' -delete || die } |