Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/uade: ChangeLog uade-2.12.ebuild
Date: Sun, 07 Sep 2008 07:54:55
Message-Id: E1KcF6i-0001lk-83@stork.gentoo.org
1 spock 08/09/07 07:54:52
2
3 Modified: ChangeLog
4 Added: uade-2.12.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc5 x86_64)
8
9 Revision Changes Path
10 1.50 app-emulation/uade/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/uade/ChangeLog?rev=1.50&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/uade/ChangeLog?rev=1.50&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/uade/ChangeLog?r1=1.49&r2=1.50
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v
19 retrieving revision 1.49
20 retrieving revision 1.50
21 diff -u -r1.49 -r1.50
22 --- ChangeLog 28 Jul 2008 19:40:36 -0000 1.49
23 +++ ChangeLog 7 Sep 2008 07:54:51 -0000 1.50
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emulation/uade
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v 1.49 2008/07/28 19:40:36 cardoe Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v 1.50 2008/09/07 07:54:51 spock Exp $
29 +
30 +*uade-2.12 (07 Sep 2008)
31 +
32 + 07 Sep 2008; MichaƂ Januszewski <spock@g.o> +uade-2.12.ebuild:
33 + Version bump.
34
35 28 Jul 2008; Doug Goldstein <cardoe@g.o> metadata.xml:
36 add GLEP 56 USE flag desc from use.local.desc
37
38
39
40 1.1 app-emulation/uade/uade-2.12.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/uade/uade-2.12.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/uade/uade-2.12.ebuild?rev=1.1&content-type=text/plain
44
45 Index: uade-2.12.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/app-emulation/uade/uade-2.12.ebuild,v 1.1 2008/09/07 07:54:51 spock Exp $
50
51 inherit eutils
52
53 DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through UAE emulation"
54 HOMEPAGE="http://zakalwe.fi/uade"
55 SRC_URI="http://zakalwe.fi/uade/uade2/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86"
60 IUSE="audacious"
61
62 RDEPEND="media-libs/libao
63 audacious? ( >=media-sound/audacious-0.2 )"
64
65 DEPEND="${RDEPEND}
66 dev-util/pkgconfig"
67
68 src_compile() {
69 ./configure \
70 --prefix=/usr \
71 --package-prefix="${D}" \
72 $(use_with audacious) \
73 --with-uade123 \
74 --with-text-scope \
75 --without-xmms \
76 || die "configure failed"
77 emake || die 'emake failed'
78 }
79
80 src_install() {
81 make install || die 'make install failed'
82 dodoc AUTHORS ChangeLog doc/BUGS doc/PLANS
83 doman doc/uade123.1
84 }