Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/libspectrum: ChangeLog libspectrum-0.5.0.1.ebuild
Date: Sun, 25 Jan 2009 02:36:03
Message-Id: E1LQuqs-00070n-Vx@stork.gentoo.org
1 darkside 09/01/25 02:35:58
2
3 Modified: ChangeLog
4 Added: libspectrum-0.5.0.1.ebuild
5 Log:
6 Version bump by José Manuel Ferrer Ortiz
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 app-emulation/libspectrum/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/libspectrum/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/libspectrum/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/libspectrum/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 2 Jun 2008 03:03:44 -0000 1.23
23 +++ ChangeLog 25 Jan 2009 02:35:58 -0000 1.24
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-emulation/libspectrum
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/ChangeLog,v 1.23 2008/06/02 03:03:44 darkside Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/ChangeLog,v 1.24 2009/01/25 02:35:58 darkside Exp $
30 +
31 +*libspectrum-0.5.0.1 (25 Jan 2009)
32 +
33 + 25 Jan 2009; Jeremy Olexa <darkside@g.o>
34 + +libspectrum-0.5.0.1.ebuild:
35 + Version bump by José Manuel Ferrer Ortiz
36
37 02 Jun 2008; Jeremy Olexa <darkside@g.o> metadata.xml:
38 New proxy maintainer and proxied maintainer, bug #222427
39
40
41
42 1.1 app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libspectrum-0.5.0.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild,v 1.1 2009/01/25 02:35:58 darkside Exp $
52
53 inherit eutils autotools
54
55 DESCRIPTION="Spectrum emulation library"
56 HOMEPAGE="http://fuse-emulator.sourceforge.net/libspectrum.php"
57 SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="audiofile bzip2 zlib"
63
64 RDEPEND="zlib? ( sys-libs/zlib )
65 bzip2? ( >=app-arch/bzip2-1.0 )
66 >=dev-libs/glib-2
67 audiofile? ( >=media-libs/audiofile-0.2.3 )"
68 DEPEND="${RDEPEND}
69 dev-lang/perl
70 dev-util/pkgconfig"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 #submitted upstream, see bug #0000000000000000000000000000000000000000000000
76 epatch "${FILESDIR}/${P}-without-bzip2_zlib.patch"
77 eautoreconf
78 }
79
80 src_compile() {
81 econf --with-glib \
82 $(use_with zlib zlib) \
83 $(use_with bzip2 bzip2) \
84 $(use_with audiofile libaudiofile) \
85 || die "econf failed!"
86 emake || die "emake failed!"
87 }
88
89 src_install() {
90 emake install DESTDIR="${D}" || die
91 dodoc AUTHORS ChangeLog README THANKS doc/*.txt *.txt
92 doman doc/libspectrum.3
93 }