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/librelp: librelp-1.2.7.ebuild ChangeLog
Date: Sun, 04 May 2014 14:17:17
Message-Id: 20140504141714.809EC2004C@flycatcher.gentoo.org
1 ultrabug 14/05/04 14:17:14
2
3 Modified: ChangeLog
4 Added: librelp-1.2.7.ebuild
5 Log:
6 version bump fix #509506 thx to 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.26 dev-libs/librelp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 13 Dec 2013 10:24:16 -0000 1.25
24 +++ ChangeLog 4 May 2014 14:17:14 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/librelp
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v 1.25 2013/12/13 10:24:16 ultrabug Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v 1.26 2014/05/04 14:17:14 ultrabug Exp $
31 +
32 +*librelp-1.2.7 (04 May 2014)
33 +
34 + 04 May 2014; Ultrabug <ultrabug@g.o> +librelp-1.2.7.ebuild:
35 + version bump fix #509506 thx to Thomas D.
36
37 13 Dec 2013; Ultrabug <ultrabug@g.o> librelp-1.1.5.ebuild,
38 librelp-1.2.0.ebuild:
39
40
41
42 1.1 dev-libs/librelp/librelp-1.2.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/librelp-1.2.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/librelp-1.2.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: librelp-1.2.7.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/librelp-1.2.7.ebuild,v 1.1 2014/05/04 14:17:14 ultrabug Exp $
52
53 EAPI=5
54
55 inherit autotools-utils
56
57 DESCRIPTION="An easy to use library for the RELP protocol."
58 HOMEPAGE="http://www.librelp.com/"
59 SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-3 doc? ( FDL-1.3 )"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86"
64 IUSE="debug doc +ssl static-libs"
65
66 RDEPEND="
67 ssl? ( >=net-libs/gnutls-2.12.23-r1 )
68 "
69
70 DEPEND="
71 ${RDEPEND}
72 virtual/pkgconfig
73 "
74
75 DOCS=( AUTHORS ChangeLog )
76
77 AUTOTOOLS_IN_SOURCE_BUILD=1
78
79 src_configure() {
80 local myeconfargs=(
81 $(use_enable debug)
82 $(use_enable ssl tls)
83 )
84
85 autotools-utils_src_configure
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90
91 # We don't need the *.la files - do we?
92 find "${ED}"/usr/ -name '*.la' -delete
93
94 if use doc; then
95 dohtml doc/relp.html
96 fi
97 }