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/lash: ChangeLog lash-0.5.4-r1.ebuild
Date: Fri, 10 Oct 2008 12:27:23
Message-Id: E1KoH5L-0005We-Vf@stork.gentoo.org
1 flameeyes 08/10/10 12:27:11
2
3 Modified: ChangeLog
4 Added: lash-0.5.4-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.21 media-sound/lash/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lash/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lash/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lash/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 7 Aug 2008 17:07:39 -0000 1.20
23 +++ ChangeLog 10 Oct 2008 12:27:11 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/lash
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.20 2008/08/07 17:07:39 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.21 2008/10/10 12:27:11 flameeyes Exp $
29 +
30 +*lash-0.5.4-r1 (10 Oct 2008)
31 +
32 + 10 Oct 2008; Diego Pettenò <flameeyes@g.o> +lash-0.5.4-r1.ebuild:
33 + Update to EAPI=2 and USE deps.
34
35 07 Aug 2008; Alexis Ballier <aballier@g.o>
36 +files/lash-0.5.4-glibc2.8.patch, lash-0.5.4.ebuild:
37
38
39
40 1.1 media-sound/lash/lash-0.5.4-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lash/lash-0.5.4-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lash/lash-0.5.4-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lash-0.5.4-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/lash/lash-0.5.4-r1.ebuild,v 1.1 2008/10/10 12:27:11 flameeyes Exp $
50
51 EAPI=2
52
53 inherit eutils libtool
54
55 DESCRIPTION="LASH Audio Session Handler"
56 HOMEPAGE="http://www.nongnu.org/lash/"
57 SRC_URI="http://download.savannah.gnu.org/releases/lash/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="alsa debug gtk python"
63
64 RDEPEND="alsa? ( media-libs/alsa-lib[midi] )
65 media-sound/jack-audio-connection-kit
66 dev-libs/libxml2
67 gtk? ( >=x11-libs/gtk+-2.0 )
68 python? ( dev-lang/python )
69 || ( sys-libs/readline dev-libs/libedit )"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig
72 python? ( >=dev-lang/swig-1.3.31 )"
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77 epatch "${FILESDIR}/${P}-glibc2.8.patch"
78 elibtoolize
79 }
80
81 src_configure() {
82 local myconf
83
84 # Yet-another-broken-configure: --enable-pylash would disable it.
85 use python || myconf="${myconf} --disable-pylash"
86
87 econf \
88 $(use_enable alsa alsa-midi) \
89 $(use_enable gtk gtk2) \
90 $(use_enable debug) \
91 ${myconf} \
92 --disable-dependency-tracking \
93 || die "econf failed"
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install || die
98
99 dodoc AUTHORS ChangeLog NEWS README TODO
100 }