diff options
author | Oz Tiram <oz.tiram@gmail.com> | 2020-02-23 09:52:30 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-02-27 15:54:41 +0200 |
commit | 3de4ad09f3cd12196c132c108a3368f121cf0b9a (patch) | |
tree | 98fe5aae7c6813ee1ae80a10f6527a5ceae69c49 /dev-libs/libite/libite-2.1.2.ebuild | |
parent | dev-lang/swi-prolog: bump development version (diff) | |
download | gentoo-3de4ad09f3cd12196c132c108a3368f121cf0b9a.tar.gz gentoo-3de4ad09f3cd12196c132c108a3368f121cf0b9a.tar.bz2 gentoo-3de4ad09f3cd12196c132c108a3368f121cf0b9a.zip |
dev-libs/libite: bump version to 2.1.2
Package-Manager: Portage-2.3.84, Repoman-2.3.16
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-libs/libite/libite-2.1.2.ebuild')
-rw-r--r-- | dev-libs/libite/libite-2.1.2.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-libs/libite/libite-2.1.2.ebuild b/dev-libs/libite/libite-2.1.2.ebuild new file mode 100644 index 000000000000..f0baf554132e --- /dev/null +++ b/dev-libs/libite/libite-2.1.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A collection of useful BSD APIs" +HOMEPAGE="https://github.com/troglobit/libite" +SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +src_configure() { + econf --enable-static=$(usex static-libs) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die + rm "${D}/usr/share/doc/${PF}/LICENSE" || die +} |