Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/npth/
Date: Fri, 05 Oct 2018 19:27:15
Message-Id: 1538767547.7a379670a34fad8ab0bb064eeebd9d012ff6b4bb.alonbl@gentoo
1 commit: 7a379670a34fad8ab0bb064eeebd9d012ff6b4bb
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 5 19:05:20 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 5 19:25:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a379670
7
8 dev-libs/npth: eapi bump
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11 Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
12
13 dev-libs/npth/npth-1.6-r1.ebuild | 30 ++++++++++++++++++++++++++++++
14 1 file changed, 30 insertions(+)
15
16 diff --git a/dev-libs/npth/npth-1.6-r1.ebuild b/dev-libs/npth/npth-1.6-r1.ebuild
17 new file mode 100644
18 index 00000000000..14e2fc70b37
19 --- /dev/null
20 +++ b/dev-libs/npth/npth-1.6-r1.ebuild
21 @@ -0,0 +1,30 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit libtool
28 +
29 +DESCRIPTION="New GNU Portable Threads Library"
30 +HOMEPAGE="https://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git"
31 +SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
32 +
33 +LICENSE="LGPL-2.1+"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
36 +IUSE="static-libs"
37 +
38 +src_prepare() {
39 + default
40 + elibtoolize # for Solaris shared library
41 +}
42 +
43 +src_configure() {
44 + econf \
45 + $(use_enable static-libs static)
46 +}
47 +
48 +src_install() {
49 + default
50 + find "${D}" -name '*.la' -delete || die
51 +}