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/libspectrum-0.4.0.ebuild | |
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/libspectrum-0.4.0.ebuild')
-rw-r--r-- | app-emulation/libspectrum/libspectrum-0.4.0.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
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 +} |