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/suil: ChangeLog suil-0.6.12.ebuild
Date: Sat, 23 Feb 2013 13:30:19
Message-Id: 20130223133015.83CA72171D@flycatcher.gentoo.org
1 aballier 13/02/23 13:30:15
2
3 Modified: ChangeLog
4 Added: suil-0.6.12.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.12 media-libs/suil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 13 Jan 2013 20:54:52 -0000 1.11
24 +++ ChangeLog 23 Feb 2013 13:30:15 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/suil
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v 1.11 2013/01/13 20:54:52 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v 1.12 2013/02/23 13:30:15 aballier Exp $
30 +
31 +*suil-0.6.12 (23 Feb 2013)
32 +
33 + 23 Feb 2013; Alexis Ballier <aballier@g.o> +suil-0.6.12.ebuild:
34 + version bump
35
36 *suil-0.6.10 (13 Jan 2013)
37
38
39
40
41 1.1 media-libs/suil/suil-0.6.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/suil-0.6.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/suil-0.6.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: suil-0.6.12.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/suil/suil-0.6.12.ebuild,v 1.1 2013/02/23 13:30:15 aballier Exp $
51
52 EAPI=4
53
54 inherit base waf-utils
55
56 DESCRIPTION="Lightweight C library for loading and wrapping LV2 plugin UIs"
57 HOMEPAGE="http://drobilla.net/software/suil/"
58 SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
59
60 LICENSE="ISC"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc gtk qt4"
64
65 RDEPEND="media-libs/lv2
66 gtk? ( x11-libs/gtk+:2 )
67 qt4? ( x11-libs/qt-gui:4 )"
68 DEPEND="${RDEPEND}
69 doc? ( app-doc/doxygen )
70 virtual/pkgconfig"
71
72 DOCS=( "AUTHORS" "NEWS" "README" )
73
74 src_prepare() {
75 sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
76 }
77
78 src_configure() {
79 # otherwise automagic
80 use gtk || sed -i -e 's/gtk+-2.0/DiSaBlEd/' wscript
81 use qt4 || sed -i -e 's/QtGui/DiSaBlEd/' wscript
82 waf-utils_src_configure \
83 "--mandir=${EPREFIX}/usr/share/man" \
84 "--docdir=${EPREFIX}/usr/share/doc/${PF}" \
85 $(use doc && echo "--docs")
86 }