Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblogging/
Date: Mon, 06 Mar 2017 14:18:38
Message-Id: 1488809876.0a5fb27219da5afba330f560338c3f77cbc13487.whissi@gentoo
1 commit: 0a5fb27219da5afba330f560338c3f77cbc13487
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 6 14:17:56 2017 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 6 14:17:56 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a5fb272
7
8 dev-libs/liblogging: Bump to v1.0.6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-libs/liblogging/Manifest | 1 +
13 dev-libs/liblogging/liblogging-1.0.6.ebuild | 46 +++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/dev-libs/liblogging/Manifest b/dev-libs/liblogging/Manifest
17 index cff46e64585..33a206f4221 100644
18 --- a/dev-libs/liblogging/Manifest
19 +++ b/dev-libs/liblogging/Manifest
20 @@ -1 +1,2 @@
21 DIST liblogging-1.0.5.tar.gz 571051 SHA256 310dc1691279b7a669d383581fe4b0babdc7bf75c9b54a24e51e60428624890b SHA512 fd0c89b670bdf4d257d6a31b18b44940ba2edae84633ead6577f164e1ded93709445c35027a28f6e7fda4c984964c3446978eaf0abf843e31ecc11b979e2adde WHIRLPOOL 17c22802e9037aee69c6985a627b6eb24281311292543bc4d9e0383290f7181bcf959de07405a5783f09e8d3dcfb2c88ae5701cec97a3812815f40c6a36ea715
22 +DIST liblogging-1.0.6.tar.gz 593393 SHA256 338c6174e5c8652eaa34f956be3451f7491a4416ab489aef63151f802b00bf93 SHA512 09c90a93b2d32afa44be5a800705a64690810a56d21bed1455cb70680b01fecd4efef3881a43f98ebcafa996b6046ed8e5af935eacc12014f330a7fd23674964 WHIRLPOOL b268028ee750276a67c176888eab0f1a621eabbeb787f962ba9405c12cbeacce99870ae37e810dce971f0a64b6c696e0b4cfc013bffd11deabfaa3f0f2ff6db9
23
24 diff --git a/dev-libs/liblogging/liblogging-1.0.6.ebuild b/dev-libs/liblogging/liblogging-1.0.6.ebuild
25 new file mode 100644
26 index 00000000000..6b46fb8ced1
27 --- /dev/null
28 +++ b/dev-libs/liblogging/liblogging-1.0.6.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="Liblogging is an easy to use, portable, open source library for system logging"
38 +HOMEPAGE="http://www.liblogging.org"
39 +SRC_URI="http://download.rsyslog.com/liblogging/${P}.tar.gz"
40 +
41 +LICENSE="BSD-2"
42 +SLOT="0/0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86"
44 +IUSE="rfc3195 static-libs +stdlog systemd"
45 +
46 +RDEPEND="systemd? ( sys-apps/systemd )"
47 +
48 +DEPEND="
49 + ${RDEPEND}
50 + virtual/pkgconfig
51 +"
52 +
53 +DOCS=( ChangeLog )
54 +
55 +src_prepare() {
56 + default
57 +
58 + eautoreconf
59 +}
60 +
61 +src_configure() {
62 + local myeconfargs=(
63 + $(use_enable rfc3195)
64 + $(use_enable stdlog)
65 + $(use_enable systemd journal)
66 + )
67 +
68 + econf "${myeconfargs[@]}"
69 +}
70 +
71 +src_install() {
72 + default
73 +
74 + find "${ED}"usr/lib* -name '*.la' -delete || die
75 +}