diff options
author | David Seifert <soap@gentoo.org> | 2020-02-18 20:10:52 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-02-18 20:10:52 +0100 |
commit | b77637058726e0896999640c63fe12b137870f64 (patch) | |
tree | 2f38a5670fc5f87ca25c87d98fb6e839724bcce5 | |
parent | sys-cluster/neutron: cleanup (diff) | |
download | gentoo-b77637058726e0896999640c63fe12b137870f64.tar.gz gentoo-b77637058726e0896999640c63fe12b137870f64.tar.bz2 gentoo-b77637058726e0896999640c63fe12b137870f64.zip |
dev-libs/libdshconfig: Port to EAPI 7
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r-- | dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild b/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild index 649f6761cc48..d7ed58d8cbb4 100644 --- a/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild +++ b/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild @@ -1,9 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 - -inherit eutils ltprune +EAPI=7 DESCRIPTION="Library for parsing dsh.style configuration files" HOMEPAGE="http://www.netfort.gr.jp/~dancer/software/downloads/" @@ -12,18 +10,16 @@ SRC_URI="http://www.netfort.gr.jp/~dancer/software/downloads/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~m68k-mint" -IUSE="static-libs" -DEPEND="" RDEPEND="virtual/ssh" src_configure() { - econf \ - $(use_enable static-libs static) + econf --disable-static } src_install() { default - prune_libtool_files --all + # no static archives + find "${D}" -name '*.la' -delete || die } |