Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/sratom: ChangeLog sratom-0.4.0.ebuild
Date: Thu, 30 Aug 2012 21:55:29
Message-Id: 20120830215506.6BC3D20CD6@flycatcher.gentoo.org
1 aballier 12/08/30 21:55:06
2
3 Modified: ChangeLog
4 Added: sratom-0.4.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 media-libs/sratom/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sratom/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sratom/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sratom/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/sratom/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 22 May 2012 16:04:12 -0000 1.4
24 +++ ChangeLog 30 Aug 2012 21:55:06 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/sratom
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sratom/ChangeLog,v 1.4 2012/05/22 16:04:12 johu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sratom/ChangeLog,v 1.5 2012/08/30 21:55:06 aballier Exp $
30 +
31 +*sratom-0.4.0 (30 Aug 2012)
32 +
33 + 30 Aug 2012; Alexis Ballier <aballier@g.o> +sratom-0.4.0.ebuild:
34 + version bump
35
36 22 May 2012; Johannes Huber <johu@g.o> sratom-0.2.0.ebuild:
37 Add ~x86 wrt bug #413037
38
39
40
41 1.1 media-libs/sratom/sratom-0.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sratom/sratom-0.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sratom/sratom-0.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sratom-0.4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/sratom/sratom-0.4.0.ebuild,v 1.1 2012/08/30 21:55:06 aballier Exp $
51
52 EAPI=4
53
54 inherit waf-utils
55
56 DESCRIPTION="Library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax"
57 HOMEPAGE="http://drobilla.net/software/sratom/"
58 SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
59
60 LICENSE="ISC"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc static-libs test"
64
65 RDEPEND="media-libs/lv2
66 >=dev-libs/serd-0.14.0
67 >=dev-libs/sord-0.8.0"
68 DEPEND="${RDEPEND}
69 doc? ( app-doc/doxygen )
70 virtual/pkgconfig"
71
72 DOCS=( "NEWS" "README" )
73
74 src_prepare() {
75 sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
76 }
77
78 src_configure() {
79 waf-utils_src_configure \
80 --docdir=/usr/share/doc/${PF} \
81 $(use test && echo "--test") \
82 $(use doc && echo "--docs") \
83 $(use static-libs && echo "--static")
84 }
85
86 src_test() {
87 ./waf test || die
88 }