Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbsd/
Date: Sun, 06 Dec 2015 18:39:24
Message-Id: 1449427133.d90691b7edf65e7a9b7bbdcc43142c6580252051.mrueg@gentoo
1 commit: d90691b7edf65e7a9b7bbdcc43142c6580252051
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 6 18:38:53 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 6 18:38:53 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d90691b7
7
8 dev-libs/libbsd: Version bump to 0.8.0
9
10 Package-Manager: portage-2.2.26
11
12 dev-libs/libbsd/Manifest | 1 +
13 dev-libs/libbsd/libbsd-0.8.0.ebuild | 40 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-libs/libbsd/Manifest b/dev-libs/libbsd/Manifest
17 index 8ef159d..257d9c6 100644
18 --- a/dev-libs/libbsd/Manifest
19 +++ b/dev-libs/libbsd/Manifest
20 @@ -1 +1,2 @@
21 DIST libbsd-0.7.0.tar.xz 322908 SHA256 0f3b0e17e5c34c038126e0a04351b11e23c6101a7d0ce3beeab29bb6415c10bb SHA512 2c4c8fb2ae7fb5e5aab90f7a59a679220922dfeeaf0d54f80976914fcd507171bb9359f0837c32499e63a0f3e9342c9dcd387a466b359d20e3790ddc8ca17cea WHIRLPOOL 06083651f5678362d3422f96e59d30d8010493f9d1c8c43a94f7ab310daead491c70bce7838cc8302cb448e4a8fa99c7456f0ba9a3b411b292829ba949712b59
22 +DIST libbsd-0.8.0.tar.xz 342016 SHA256 fbb732084bd960e4c78b688aac875be98e290cc6fe462b2ff8ee946a6473e38c SHA512 a2235cde4d24ce55b0ad16eb12b421c3b35ea5ca35cd8dbf25dd9a01f6a12c737b877c8e1dd344d4cfdfbbbc872d17424e3b9944993395d752fc0b80ead7d06a WHIRLPOOL 96e429eb7b44db5bce2def2ab7ef1a773d8dc630deb636e422e96c6521b61f37082b4889e564409e3af779d8d93a85cb54079a15a1415073fd65169a91593ad1
23
24 diff --git a/dev-libs/libbsd/libbsd-0.8.0.ebuild b/dev-libs/libbsd/libbsd-0.8.0.ebuild
25 new file mode 100644
26 index 0000000..ce72644
27 --- /dev/null
28 +++ b/dev-libs/libbsd/libbsd-0.8.0.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +inherit eutils multilib
36 +
37 +DESCRIPTION="An library to provide useful functions commonly found on BSD systems"
38 +HOMEPAGE="http://libbsd.freedesktop.org/wiki/"
39 +SRC_URI="http://${PN}.freedesktop.org/releases/${P}.tar.xz"
40 +
41 +LICENSE="BSD BSD-2 BSD-4 ISC"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
44 +IUSE="static-libs"
45 +
46 +DOCS="ChangeLog README TODO"
47 +
48 +pkg_setup() {
49 + local f="${ROOT}/usr/$(get_libdir)/${PN}.a"
50 + local m="You need to remove ${f} by hand or re-emerge sys-libs/glibc first."
51 + if ! has_version ${CATEGORY}/${PN}; then
52 + if [[ -e ${f} ]]; then
53 + eerror "${m}"
54 + die "${m}"
55 + fi
56 + fi
57 +}
58 +
59 +src_configure() {
60 + # The build system will install libbsd-ctor.a despite of USE="-static-libs"
61 + # which is correct, see:
62 + # http://cgit.freedesktop.org/libbsd/commit/?id=c5b959028734ca2281250c85773d9b5e1d259bc8
63 + econf $(use_enable static-libs static)
64 +}
65 +
66 +src_install() {
67 + default
68 + prune_libtool_files
69 +}