diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-01-25 02:35:58 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-01-25 02:35:58 +0000 |
commit | 35d58e0483b4f28f874d5ac1a06eff32a46d437f (patch) | |
tree | f6a9cb97192396449285bd0e31d7242ee8031a7d /app-emulation/libspectrum | |
parent | (non maintainer commit) [QA] remove old to fix bug 248997 (large file not on ... (diff) | |
download | gentoo-2-35d58e0483b4f28f874d5ac1a06eff32a46d437f.tar.gz gentoo-2-35d58e0483b4f28f874d5ac1a06eff32a46d437f.tar.bz2 gentoo-2-35d58e0483b4f28f874d5ac1a06eff32a46d437f.zip |
Version bump by José Manuel Ferrer Ortiz
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/libspectrum')
-rw-r--r-- | app-emulation/libspectrum/ChangeLog | 10 | ||||
-rw-r--r-- | app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild | 45 |
2 files changed, 53 insertions, 2 deletions
diff --git a/app-emulation/libspectrum/ChangeLog b/app-emulation/libspectrum/ChangeLog index ad6bfce04e81..e32ec15ed303 100644 --- a/app-emulation/libspectrum/ChangeLog +++ b/app-emulation/libspectrum/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emulation/libspectrum -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/ChangeLog,v 1.23 2008/06/02 03:03:44 darkside Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/ChangeLog,v 1.24 2009/01/25 02:35:58 darkside Exp $ + +*libspectrum-0.5.0.1 (25 Jan 2009) + + 25 Jan 2009; Jeremy Olexa <darkside@gentoo.org> + +libspectrum-0.5.0.1.ebuild: + Version bump by José Manuel Ferrer Ortiz 02 Jun 2008; Jeremy Olexa <darkside@gentoo.org> metadata.xml: New proxy maintainer and proxied maintainer, bug #222427 diff --git a/app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild b/app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild new file mode 100644 index 000000000000..6d5ceada60e0 --- /dev/null +++ b/app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $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 $ + +inherit eutils autotools + +DESCRIPTION="Spectrum emulation library" +HOMEPAGE="http://fuse-emulator.sourceforge.net/libspectrum.php" +SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="audiofile bzip2 zlib" + +RDEPEND="zlib? ( sys-libs/zlib ) + bzip2? ( >=app-arch/bzip2-1.0 ) + >=dev-libs/glib-2 + audiofile? ( >=media-libs/audiofile-0.2.3 )" +DEPEND="${RDEPEND} + dev-lang/perl + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + #submitted upstream, see bug #0000000000000000000000000000000000000000000000 + epatch "${FILESDIR}/${P}-without-bzip2_zlib.patch" + eautoreconf +} + +src_compile() { + econf --with-glib \ + $(use_with zlib zlib) \ + $(use_with bzip2 bzip2) \ + $(use_with audiofile libaudiofile) \ + || die "econf failed!" + emake || die "emake failed!" +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc AUTHORS ChangeLog README THANKS doc/*.txt *.txt + doman doc/libspectrum.3 +} |