Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/liblogging: liblogging-1.0.4.ebuild ChangeLog
Date: Sun, 04 May 2014 14:08:34
Message-Id: 20140504140827.64D3A2004C@flycatcher.gentoo.org
1 ultrabug 14/05/04 14:08:27
2
3 Modified: ChangeLog
4 Added: liblogging-1.0.4.ebuild
5 Log:
6 version bump fix #508224 thx to clabbe.montjoie and Thomas D.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
9
10 Revision Changes Path
11 1.2 dev-libs/liblogging/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblogging/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblogging/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblogging/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/liblogging/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 10 Mar 2014 11:26:33 -0000 1.1
24 +++ ChangeLog 4 May 2014 14:08:27 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/liblogging
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblogging/ChangeLog,v 1.1 2014/03/10 11:26:33 ultrabug Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblogging/ChangeLog,v 1.2 2014/05/04 14:08:27 ultrabug Exp $
30 +
31 +*liblogging-1.0.4 (04 May 2014)
32 +
33 + 04 May 2014; Ultrabug <ultrabug@g.o> +liblogging-1.0.4.ebuild:
34 + version bump fix #508224 thx to clabbe.montjoie and Thomas D.
35
36 *liblogging-1.0.2 (10 Mar 2014)
37
38
39
40
41 1.1 dev-libs/liblogging/liblogging-1.0.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblogging/liblogging-1.0.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblogging/liblogging-1.0.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: liblogging-1.0.4.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/liblogging/liblogging-1.0.4.ebuild,v 1.1 2014/05/04 14:08:27 ultrabug Exp $
51
52 EAPI=5
53
54 inherit autotools-utils eutils
55
56 DESCRIPTION="Liblogging is an easy to use, portable, open source library for system logging."
57 HOMEPAGE="http://www.liblogging.org"
58 SRC_URI="http://download.rsyslog.com/liblogging/${P}.tar.gz"
59
60 LICENSE="BSD-2"
61 SLOT="0/0"
62 KEYWORDS="~amd64 ~arm ~hppa ~x86"
63 IUSE="rfc3195 static-libs +stdlog systemd"
64
65 RDEPEND="systemd? ( sys-apps/systemd )"
66
67 DEPEND="
68 ${RDEPEND}
69 virtual/pkgconfig
70 "
71
72 DOCS=( ChangeLog )
73
74 AUTOTOOLS_IN_SOURCE_BUILD=1
75
76 src_configure() {
77 local myeconfargs=(
78 $(use_enable rfc3195)
79 $(use_enable stdlog)
80 $(use_enable systemd journal)
81 )
82 autotools-utils_src_configure
83 }