Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/seq24: ChangeLog seq24-0.8.7-r1.ebuild
Date: Fri, 10 Oct 2008 12:44:44
Message-Id: E1KoHMH-0005fy-DX@stork.gentoo.org
1 flameeyes 08/10/10 12:44:41
2
3 Modified: ChangeLog
4 Added: seq24-0.8.7-r1.ebuild
5 Log:
6 Update to EAPI=2 and USE deps.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.32 media-sound/seq24/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/seq24/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/seq24/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/seq24/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/seq24/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 4 Jun 2008 13:05:12 -0000 1.31
23 +++ ChangeLog 10 Oct 2008 12:44:41 -0000 1.32
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/seq24
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/seq24/ChangeLog,v 1.31 2008/06/04 13:05:12 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/seq24/ChangeLog,v 1.32 2008/10/10 12:44:41 flameeyes Exp $
29 +
30 +*seq24-0.8.7-r1 (10 Oct 2008)
31 +
32 + 10 Oct 2008; Diego Pettenò <flameeyes@g.o> +seq24-0.8.7-r1.ebuild:
33 + Update to EAPI=2 and USE deps.
34
35 04 Jun 2008; Alexis Ballier <aballier@g.o> seq24-0.8.7.ebuild:
36 Fix build with libsigc++-2.2, thanks to tom <gimpel@××××××××××××.org>, bug
37
38
39
40 1.1 media-sound/seq24/seq24-0.8.7-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/seq24/seq24-0.8.7-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/seq24/seq24-0.8.7-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: seq24-0.8.7-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-sound/seq24/seq24-0.8.7-r1.ebuild,v 1.1 2008/10/10 12:44:41 flameeyes Exp $
50
51 EAPI=2
52
53 inherit eutils
54
55 IUSE="jack lash"
56 DESCRIPTION="Seq24 is a loop based MIDI sequencer with focus on live performances."
57 HOMEPAGE="http://www.filter24.org/seq24/"
58 SRC_URI="http://www.filter24.org/seq24/${P}.tar.gz
59 mirror://gentoo/${P}-sigc22_fix.patch.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 RDEPEND=">=media-libs/alsa-lib-0.9.0[midi]
66 >=dev-cpp/gtkmm-2.4
67 >=dev-libs/libsigc++-2.0
68 jack? ( >=media-sound/jack-audio-connection-kit-0.90.0 )
69 lash? ( >=media-sound/lash-0.5.0 )"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 src_prepare() {
74 # fix #220827
75 if has_version ">=dev-libs/libsigc++-2.2"; then
76 epatch "${WORKDIR}/${P}-sigc22_fix.patch"
77 fi
78 }
79
80 src_configure() {
81 econf \
82 $(use_enable jack jack-support) \
83 $(use_enable lash) \
84 --disable-alsatest \
85 || die
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die
90 dodoc AUTHORS ChangeLog README RTC SEQ24
91 }