commit:     477f3780f22f20063f811728286c27bfd2e8d5cc
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  4 14:05:47 2017 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Jan  4 14:06:34 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=477f3780

net-libs/libisds: Bumped live ebuild to EAPI-6.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libisds/libisds-9999.ebuild | 35 +++++++++++++++++------------------
 1 file changed, 17 insertions(+), 18 deletions(-)

diff --git a/net-libs/libisds/libisds-9999.ebuild 
b/net-libs/libisds/libisds-9999.ebuild
index ab81852..c034a61 100644
--- a/net-libs/libisds/libisds-9999.ebuild
+++ b/net-libs/libisds/libisds-9999.ebuild
@@ -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
 }

Reply via email to