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/lilv: ChangeLog lilv-0.14.4.ebuild
Date: Thu, 30 Aug 2012 22:27:01
Message-Id: 20120830222641.09DE420CDD@flycatcher.gentoo.org
1 aballier 12/08/30 22:26:40
2
3 Modified: ChangeLog
4 Added: lilv-0.14.4.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.9 media-libs/lilv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 22 May 2012 16:09:15 -0000 1.8
24 +++ ChangeLog 30 Aug 2012 22:26:40 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/lilv
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.8 2012/05/22 16:09:15 johu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lilv/ChangeLog,v 1.9 2012/08/30 22:26:40 aballier Exp $
30 +
31 +*lilv-0.14.4 (30 Aug 2012)
32 +
33 + 30 Aug 2012; Alexis Ballier <aballier@g.o> +lilv-0.14.4.ebuild:
34 + version bump
35
36 22 May 2012; Johannes Huber <johu@g.o> lilv-0.14.2.ebuild:
37 Add ~x86 wrt bug #413037
38
39
40
41 1.1 media-libs/lilv/lilv-0.14.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/lilv-0.14.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lilv/lilv-0.14.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lilv-0.14.4.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/lilv/lilv-0.14.4.ebuild,v 1.1 2012/08/30 22:26:40 aballier Exp $
51
52 EAPI=4
53
54 inherit base waf-utils bash-completion-r1
55
56 DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications"
57 HOMEPAGE="http://drobilla.net/software/lilv/"
58 SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
59
60 LICENSE="ISC"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc +dyn-manifest static-libs test"
64
65 RDEPEND="media-libs/lv2
66 media-libs/sratom
67 >=dev-libs/serd-0.14.0
68 >=dev-libs/sord-0.8.0"
69 DEPEND="${RDEPEND}
70 doc? ( app-doc/doxygen )
71 virtual/pkgconfig"
72
73 DOCS=( "AUTHORS" "NEWS" "README" )
74
75 src_prepare() {
76 sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
77 }
78
79 src_configure() {
80 waf-utils_src_configure \
81 --docdir="${EPREFIX}"/usr/share/doc/${PF} \
82 --no-bash-completion \
83 $(use test && echo "--test") \
84 $(use doc && echo "--docs") \
85 $(use static-libs && echo "--static") \
86 $(use dyn-manifest && echo "--dyn-manifest")
87 }
88
89 src_test() {
90 ./waf test || die
91 }
92
93 src_install() {
94 waf-utils_src_install
95 newbashcomp utils/lilv.bash_completion ${PN}
96 }