diff options
author | Marek Szuba <marecki@gentoo.org> | 2017-08-01 12:13:52 +0159 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2017-08-01 12:52:40 +0159 |
commit | 9604746f6afdd6e06de2a4df7cb826ef8e9acf0f (patch) | |
tree | 7c2d4e1e1ff02d69986f65a0c0c4de824add85eb /app-emulation/libspectrum | |
parent | dev-lang/swi-prolog: bump 7.5 development version (diff) | |
download | gentoo-9604746f6afdd6e06de2a4df7cb826ef8e9acf0f.tar.gz gentoo-9604746f6afdd6e06de2a4df7cb826ef8e9acf0f.tar.bz2 gentoo-9604746f6afdd6e06de2a4df7cb826ef8e9acf0f.zip |
app-emulation/libspectrum: Version bump to 1.3.5
Submitted-By: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-emulation/libspectrum')
-rw-r--r-- | app-emulation/libspectrum/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/libspectrum/libspectrum-1.3.5.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/app-emulation/libspectrum/Manifest b/app-emulation/libspectrum/Manifest index 91ca4c9b7640..604c92bb0969 100644 --- a/app-emulation/libspectrum/Manifest +++ b/app-emulation/libspectrum/Manifest @@ -1 +1,2 @@ DIST libspectrum-1.1.1.tar.gz 502942 SHA256 178d3607af2109b6b8dafac4f91912745b9f3c087319945c3a886bb7fe7989d5 SHA512 61197c8d1d6b4b595b55cf7e8f8c43423935291a9fbc688f1bb06d4c3ef53dbcf391a96f0528443518c2ca2d6fe187ee56d5ed915702f13a16ad44aa16037f49 WHIRLPOOL c89c7c3183f9d960dcedf789c763687e66cdaea1b2c41fdd41c1f1b0484cc9039790415bf8f231ff2bea0914fe2ababfd6d174338141bee13859521bf73caa92 +DIST libspectrum-1.3.5.tar.gz 502777 SHA256 674c3c973af342054a3613686a57f5ddd425c2b83cd84a07bcbe5c89f312461d SHA512 2c4447f94d0ada671f2ea17437bd71c85535d600917052fe835e66b634c833356a5b7e425fcd12666b31b3165453fcaa599e8a0fb60494e6a4583bd06f4a474f WHIRLPOOL 57fdcd23cc8eb1a8b1d55406b95e1db38600a057bf552b67e625ad82bd5126caaead0c064302622155b8485ab904cb8a76e1f44749b26d1bb75ea702cf42b115 diff --git a/app-emulation/libspectrum/libspectrum-1.3.5.ebuild b/app-emulation/libspectrum/libspectrum-1.3.5.ebuild new file mode 100644 index 000000000000..512ea8f1d248 --- /dev/null +++ b/app-emulation/libspectrum/libspectrum-1.3.5.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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 gcrypt zlib" + +RDEPEND="dev-libs/glib:2 + audiofile? ( >=media-libs/audiofile-0.3.6 ) + bzip2? ( >=app-arch/bzip2-1.0 ) + gcrypt? ( dev-libs/libgcrypt:0 ) + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND} + dev-lang/perl + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_with audiofile libaudiofile) \ + $(use_with bzip2 bzip2) \ + $(use_with gcrypt libgcrypt) \ + $(use_with zlib zlib) +} + +src_install() { + default + dodoc doc/*.txt *.txt +} |