net-libs/libisds: Bumped live ebuild to EAPI-6.
authorLars Wendler <polynomial-c@gentoo.org>
Wed, 4 Jan 2017 14:05:47 +0000 (15:05 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Wed, 4 Jan 2017 14:06:34 +0000 (15:06 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

net-libs/libisds/libisds-9999.ebuild

index ab818524b156bce1da191bde6eaf9b7d23d71603..c034a61ef7682857d2024a59b2b6eb1e5c064911 100644 (file)
@@ -1,18 +1,15 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-[[ ${PV} = 9999* ]] && inherit git-2 autotools
-EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
-inherit base eutils
+[[ ${PV} = 9999* ]] && inherit git-r3 autotools
 
 DESCRIPTION="Client library for accessing ISDS Soap services"
 HOMEPAGE="http://xpisar.wz.cz/libisds/"
 if [[ ${PV} = 9999* ]]; then
-       SRC_URI=""
-       KEYWORDS=""
+       EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
 else
        SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz"
        KEYWORDS="~amd64 ~mips ~x86"
@@ -25,7 +22,7 @@ IUSE="+curl debug nls static-libs test"
 COMMON_DEPEND="
        app-crypt/gpgme
        dev-libs/expat
-       dev-libs/libgcrypt:0
+       dev-libs/libgcrypt:0=
        dev-libs/libxml2
        curl? ( net-misc/curl[ssl] )
 "
@@ -40,23 +37,25 @@ RDEPEND="${COMMON_DEPEND}
 DOCS=( NEWS README AUTHORS ChangeLog )
 
 src_prepare() {
-       base_src_prepare
+       default
        [[ ${PV} = 9999* ]] && eautoreconf
 }
 
 src_configure() {
-       econf \
-               --disable-fatalwarnings \
-               $(use_with curl libcurl) \
-               $(use_enable curl curlreauthorizationbug) \
-               $(use_enable debug) \
-               $(use_enable nls) \
-               $(use_enable static-libs static) \
+       local myeconfargs=(
+               --disable-fatalwarnings
+               $(use_with curl libcurl)
+               $(use_enable curl curlreauthorizationbug)
+               $(use_enable debug)
+               $(use_enable nls)
+               $(use_enable static-libs static)
                $(use_enable test)
+       )
+       econf "${myeconfargs[@]}"
 }
 
 src_install() {
-       base_src_install
+       default
 
-       prune_libtool_files --all
+       find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
 }