From: Alessandro Barbieri Date: Sun, 20 Oct 2019 22:20:08 +0000 (+0200) Subject: dev-util/colm: various fixes X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=fdce6d04465e2e25a6915f286965521b702ded70;p=gentoo.git dev-util/colm: various fixes * EAPI 7 * license fix * do not install static library Closes: https://bugs.gentoo.org/698066 Closes: https://github.com/gentoo/gentoo/pull/13293 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: Alessandro Barbieri Signed-off-by: David Seifert --- diff --git a/dev-util/colm/colm-0.13.0.6-r1.ebuild b/dev-util/colm/colm-0.13.0.6-r1.ebuild new file mode 100644 index 000000000000..24c79169a62c --- /dev/null +++ b/dev-util/colm/colm-0.13.0.6-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="COmputer Language Manipulation" +HOMEPAGE="https://www.colm.net/open-source/colm/" +SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86 ~amd64-linux ~x86-linux" + +BDEPEND="app-text/asciidoc" + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}