dev-libs/sblim-sfcc: Update to 2.2.8
authorMichael Vetter <jubalh@iodoru.org>
Mon, 19 Mar 2018 16:24:31 +0000 (16:24 +0000)
committerAndreas Sturmlechner <asturm@gentoo.org>
Thu, 5 Apr 2018 12:20:52 +0000 (14:20 +0200)
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/7510

dev-libs/sblim-sfcc/Manifest
dev-libs/sblim-sfcc/sblim-sfcc-2.2.8.ebuild [new file with mode: 0644]

index c6d3a9da8772dcb3350115cf3b692672286dd991..de4c4cc2064ec3d983552b3bccb5647162348f40 100644 (file)
@@ -1 +1,2 @@
 DIST sblim-sfcc-2.2.5.tar.bz2 376288 BLAKE2B aefe1381abf0b4db5eb19e21f0658cb0ea0503082972313a0187192510d2322035575fed6e36ced3cec61792a012c51482942a9121b0af9692c16dbbc56a1610 SHA512 c4ae3e36eec0a9faab347ba742d4a10cd72c906e89794e4e5a52411ac5bcd10b86ed8130efd02a44bba573654a10cfd1b504cedb638f7f66a47f8ee7215bc78b
+DIST sblim-sfcc-2.2.8.tar.bz2 376918 BLAKE2B 867d7643a9f11cf546e39e839ef5a8d3addc8902dd024f741561b0e22016a11e009779c8f50b7228e7ab21b8b697bd8f767b08a08f61727a07ee37c465c0d223 SHA512 b5eb7712aed1e40f19993ba5f5ee2f1f48c01246d28e9f4d89cee53000801ce4fe7c862a82163a55774c71094223b32bf8981a883ad04e820f9c749e746f52fa
diff --git a/dev-libs/sblim-sfcc/sblim-sfcc-2.2.8.ebuild b/dev-libs/sblim-sfcc/sblim-sfcc-2.2.8.ebuild
new file mode 100644 (file)
index 0000000..b128ee3
--- /dev/null
@@ -0,0 +1,35 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Small Footprint CIM Client Library"
+HOMEPAGE="https://sourceforge.net/apps/mediawiki/sblim"
+SRC_URI="mirror://sourceforge/project/sblim/${PN}/${P}.tar.bz2"
+
+LICENSE="EPL-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+       net-misc/curl[ssl]
+"
+RDEPEND="${DEPEND}"
+
+DOCS=()
+
+src_configure() {
+       local myconf=(
+               --enable-http-chunking
+               --disable-static
+       )
+
+       econf "${myconf[@]}"
+}
+
+src_install() {
+       default
+
+       find "${D}" -name '*.la' -delete || die
+}