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-sound/patchage: ChangeLog patchage-0.4.5.ebuild
Date: Sat, 09 Oct 2010 14:04:01
Message-Id: 20101009133140.50FFE2004C@flycatcher.gentoo.org
1 aballier 10/10/09 13:31:40
2
3 Modified: ChangeLog
4 Added: patchage-0.4.5.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2_rc91/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 media-sound/patchage/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/patchage/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/patchage/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/patchage/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 12 Dec 2009 18:44:51 -0000 1.9
24 +++ ChangeLog 9 Oct 2010 13:31:13 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/patchage
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.9 2009/12/12 18:44:51 aballier Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.10 2010/10/09 13:31:13 aballier Exp $
31 +
32 +*patchage-0.4.5 (09 Oct 2010)
33 +
34 + 09 Oct 2010; Alexis Ballier <aballier@g.o> +patchage-0.4.5.ebuild:
35 + version bump
36
37 *patchage-0.4.4 (12 Dec 2009)
38
39
40
41
42 1.1 media-sound/patchage/patchage-0.4.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/patchage/patchage-0.4.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/patchage/patchage-0.4.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: patchage-0.4.5.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/patchage-0.4.5.ebuild,v 1.1 2010/10/09 13:31:23 aballier Exp $
52
53 EAPI=2
54
55 inherit toolchain-funcs eutils
56
57 DESCRIPTION="Modular patch bay for audio and MIDI systems"
58 HOMEPAGE="http://wiki.drobilla.net/Patchage"
59 SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="alsa debug lash"
65
66 RDEPEND=">=media-libs/raul-0.5.1
67 >=x11-libs/flowcanvas-0.6.0
68 >=dev-cpp/gtkmm-2.11.12
69 >=dev-cpp/glibmm-2.14
70 >=dev-cpp/libglademm-2.6.0
71 dev-cpp/libgnomecanvasmm
72 dev-libs/boost
73 >=media-sound/jack-audio-connection-kit-0.107
74 alsa? ( media-libs/alsa-lib )
75 lash? ( dev-libs/dbus-glib )"
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig"
78
79 src_prepare() {
80 epatch "${FILESDIR}/ldconfig.patch"
81 }
82
83 src_configure() {
84 tc-export CC CXX CPP AR RANLIB
85 ./waf configure \
86 --prefix=/usr \
87 $(use debug && echo "--debug") \
88 $(use alsa || echo "--no-alsa") \
89 $(use lash || echo "--no-lash") \
90 || die
91 }
92
93 src_compile() {
94 ./waf || die
95 }
96
97 src_install() {
98 ./waf install --destdir="${D}" || die
99 dodoc AUTHORS README ChangeLog
100 }