diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2008-05-12 03:46:18 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2008-05-12 03:46:18 +0000 |
commit | dde7dd0f9faa15b929e4aba97fca5b4c901dbf3c (patch) | |
tree | 04a92b36d3f46f75a1de9f9740cd0024496da173 /app-emulation/libspectrum | |
parent | Marked ~hppa (bug #218794). (diff) | |
download | gentoo-2-dde7dd0f9faa15b929e4aba97fca5b4c901dbf3c.tar.gz gentoo-2-dde7dd0f9faa15b929e4aba97fca5b4c901dbf3c.tar.bz2 gentoo-2-dde7dd0f9faa15b929e4aba97fca5b4c901dbf3c.zip |
0.4.0 Version bump for bug 211145. Ebuild provided by Jose Manuel Ferrer
Ortiz <jmfo1982 at yahoo dot es>. Updates homepage, removes libgcrypt
dependency, adds optional dependencies for audiofile, bzip2 and zlib with USE
variables, does not force make job -j1, adds man page, adds pkgconfig
dependency and makes perl a buildtime-only dependency.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-emulation/libspectrum')
-rw-r--r-- | app-emulation/libspectrum/ChangeLog | 14 | ||||
-rw-r--r-- | app-emulation/libspectrum/libspectrum-0.4.0.ebuild | 33 |
2 files changed, 45 insertions, 2 deletions
diff --git a/app-emulation/libspectrum/ChangeLog b/app-emulation/libspectrum/ChangeLog index e908a900a5fa..d3866bfec5b7 100644 --- a/app-emulation/libspectrum/ChangeLog +++ b/app-emulation/libspectrum/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for app-emulation/libspectrum -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/ChangeLog,v 1.18 2007/02/12 09:30:01 blubb Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/ChangeLog,v 1.19 2008/05/12 03:46:18 vanquirius Exp $ + +*libspectrum-0.4.0 (12 May 2008) + + 12 May 2008; Marcelo Goes <vanquirius@gentoo.org> + +libspectrum-0.4.0.ebuild: + 0.4.0 Version bump for bug 211145. Ebuild provided by Jose Manuel Ferrer + Ortiz <jmfo1982 at yahoo dot es>. Updates homepage, removes libgcrypt + dependency, adds optional dependencies for audiofile, bzip2 and zlib with + USE variables, does not force make job -j1, adds man page, adds pkgconfig + dependency and makes perl a buildtime-only dependency. 12 Feb 2007; Simon Stelling <blubb@gentoo.org> libspectrum-0.2.2-r1.ebuild: diff --git a/app-emulation/libspectrum/libspectrum-0.4.0.ebuild b/app-emulation/libspectrum/libspectrum-0.4.0.ebuild new file mode 100644 index 000000000000..26fe8721ccde --- /dev/null +++ b/app-emulation/libspectrum/libspectrum-0.4.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/libspectrum-0.4.0.ebuild,v 1.1 2008/05/12 03:46:18 vanquirius Exp $ + +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="${DEPEND} + dev-lang/perl + dev-util/pkgconfig" + +src_compile() { + econf --with-glib \ + $(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 +} |