Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/liblrdf: ChangeLog liblrdf-0.4.0_p20110928.ebuild
Date: Wed, 28 Sep 2011 14:40:55
Message-Id: 20110928144045.5DA6220036@flycatcher.gentoo.org
1 ssuominen 11/09/28 14:40:45
2
3 Modified: ChangeLog
4 Added: liblrdf-0.4.0_p20110928.ebuild
5 Log:
6 Snapshot from new upstream. This one is using libcrypto instead of private MD5 implementation.
7
8 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.43 media-libs/liblrdf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblrdf/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblrdf/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblrdf/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/liblrdf/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 20 Sep 2011 13:17:52 -0000 1.42
24 +++ ChangeLog 28 Sep 2011 14:40:45 -0000 1.43
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/liblrdf
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/ChangeLog,v 1.42 2011/09/20 13:17:52 chainsaw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/ChangeLog,v 1.43 2011/09/28 14:40:45 ssuominen Exp $
30 +
31 +*liblrdf-0.4.0_p20110928 (28 Sep 2011)
32 +
33 + 28 Sep 2011; Samuli Suominen <ssuominen@g.o>
34 + +liblrdf-0.4.0_p20110928.ebuild:
35 + Snapshot from new upstream. This one is using libcrypto instead of private
36 + MD5 implementation.
37
38 20 Sep 2011; Tony Vroon <chainsaw@g.o> liblrdf-0.4.0-r20.ebuild:
39 Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian
40
41
42
43 1.1 media-libs/liblrdf/liblrdf-0.4.0_p20110928.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblrdf/liblrdf-0.4.0_p20110928.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblrdf/liblrdf-0.4.0_p20110928.ebuild?rev=1.1&content-type=text/plain
47
48 Index: liblrdf-0.4.0_p20110928.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/liblrdf-0.4.0_p20110928.ebuild,v 1.1 2011/09/28 14:40:45 ssuominen Exp $
53
54 EAPI=4
55 inherit autotools
56
57 DESCRIPTION="A library for the manipulation of RDF file in LADSPA plugins"
58 HOMEPAGE="http://lrdf.sourceforge.net/ http://github.com/swh/LRDF"
59 SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
64 IUSE="static-libs"
65
66 RDEPEND=">=dev-libs/openssl-1
67 media-libs/raptor:2
68 >=media-libs/ladspa-sdk-1.12"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 DOCS=( AUTHORS ChangeLog README )
73
74 src_prepare() {
75 # http://github.com/swh/LRDF/issues/6
76 sed -i -e '/^Libs/s:Private:private:' lrdf.pc.in || die
77 # http://github.com/swh/LRDF/issues/5
78 mkdir m4
79 eautoreconf
80 }
81
82 src_configure() {
83 econf $(use_enable static-libs static)
84 }
85
86 src_install() {
87 default
88 rm -f "${ED}"usr/lib*/liblrdf.la
89 }