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.2.ebuild
Date: Thu, 31 May 2012 22:24:10
Message-Id: 20120531222355.87D252004B@flycatcher.gentoo.org
1 aballier 12/05/31 22:23:55
2
3 Modified: ChangeLog
4 Added: suil-0.6.2.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 media-libs/suil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 22 May 2012 15:41:08 -0000 1.7
24 +++ ChangeLog 31 May 2012 22:23:55 -0000 1.8
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.7 2012/05/22 15:41:08 johu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/suil/ChangeLog,v 1.8 2012/05/31 22:23:55 aballier Exp $
30 +
31 +*suil-0.6.2 (31 May 2012)
32 +
33 + 31 May 2012; Alexis Ballier <aballier@g.o> +suil-0.6.2.ebuild:
34 + version bump
35
36 22 May 2012; Johannes Huber <johu@g.o> suil-0.6.0.ebuild:
37 Add ~x86 wrt bug #413033
38
39
40
41 1.1 media-libs/suil/suil-0.6.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/suil-0.6.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/suil/suil-0.6.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: suil-0.6.2.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.2.ebuild,v 1.1 2012/05/31 22:23:55 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 PATCHES=( "${FILESDIR}/ldconfig.patch" )
73 DOCS=( "AUTHORS" "NEWS" "README" )
74
75 src_configure() {
76 # otherwise automagic
77 use gtk || sed -i -e 's/gtk+-2.0/DiSaBlEd/' wscript
78 use qt4 || sed -i -e 's/QtGui/DiSaBlEd/' wscript
79 waf-utils_src_configure \
80 "--mandir=/usr/share/man" \
81 "--docdir=/usr/share/doc/${PF}" \
82 $(use doc && echo "--docs")
83 }