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: suil-0.6.6.ebuild ChangeLog
Date: Wed, 21 Nov 2012 00:24:27
Message-Id: 20121121002415.52AC320C65@flycatcher.gentoo.org
1 aballier 12/11/21 00:24:15
2
3 Modified: ChangeLog
4 Added: suil-0.6.6.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.10 media-libs/suil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 20 Jul 2012 02:05:42 -0000 1.9
24 +++ ChangeLog 21 Nov 2012 00:24:15 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/suil
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v 1.9 2012/07/20 02:05:42 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v 1.10 2012/11/21 00:24:15 aballier Exp $
30 +
31 +*suil-0.6.6 (21 Nov 2012)
32 +
33 + 21 Nov 2012; Alexis Ballier <aballier@g.o> +suil-0.6.6.ebuild:
34 + version bump
35
36 *suil-0.6.4 (20 Jul 2012)
37
38
39
40
41 1.1 media-libs/suil/suil-0.6.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/suil-0.6.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/suil-0.6.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: suil-0.6.6.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/suil/suil-0.6.6.ebuild,v 1.1 2012/11/21 00:24: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 }