From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- app-emulation/libspectrum/Manifest | 5 +++ app-emulation/libspectrum/libspectrum-1.4.2.ebuild | 43 ++++++++++++++++++++++ app-emulation/libspectrum/libspectrum-1.4.4.ebuild | 43 ++++++++++++++++++++++ app-emulation/libspectrum/metadata.xml | 25 +++++++++++++ 4 files changed, 116 insertions(+) create mode 100644 app-emulation/libspectrum/Manifest create mode 100644 app-emulation/libspectrum/libspectrum-1.4.2.ebuild create mode 100644 app-emulation/libspectrum/libspectrum-1.4.4.ebuild create mode 100644 app-emulation/libspectrum/metadata.xml (limited to 'app-emulation/libspectrum') diff --git a/app-emulation/libspectrum/Manifest b/app-emulation/libspectrum/Manifest new file mode 100644 index 000000000000..e4456e926fba --- /dev/null +++ b/app-emulation/libspectrum/Manifest @@ -0,0 +1,5 @@ +DIST libspectrum-1.4.2.tar.gz 568052 BLAKE2B 84ffa5b2ac376c72d309c623610e5e30ebc98ab81a4505ffd88c8fc88145c6d63a112c60a57585c827b352e0a73ec330fc9f3601a714d1a6ad522cc40105d171 SHA512 391eb6fd805ab5a7ba5186ced8aa06be8b25973512860bfd0680585120a9617a1406f9327a7acb3ad7b7e473be8214c9b228d8b4adcf45a8bf3d3b6d27ee4d6f +DIST libspectrum-1.4.4.tar.gz 568684 BLAKE2B b6ab4fc4173e7de9a7c3b14fda03420a56f02c5c590770158443bc37bee99a55dd3bdf6864f8ca33adb5ed59f4abd5c5b97736456ba2e6e6aaa2b49e07097cc4 SHA512 83bb9242010d49898531bb62e0d4d55439b0b6a548b57a7932f074429aca70cf252dfb195e9751384510b08c98bd6bc8eefd8cb3f82b0c8d07fa245ba66e9fe2 +EBUILD libspectrum-1.4.2.ebuild 910 BLAKE2B 334a3b3005951bdebc9ed43cec776e0e09a7f059cf66665a4fdf6f2534c60692dd9ec95eaef3e888cd3358af813a22413339e9b000714aa3d2a4007b02df84cc SHA512 24c577692feff84a71731142e88f5937eb82a75ff7b3f60b5df4a7e8a0c10c9d307baaa312d0d8f519225d0f1a8abd17a3377f0922e6a59924d9a5440e06ae4e +EBUILD libspectrum-1.4.4.ebuild 910 BLAKE2B 334a3b3005951bdebc9ed43cec776e0e09a7f059cf66665a4fdf6f2534c60692dd9ec95eaef3e888cd3358af813a22413339e9b000714aa3d2a4007b02df84cc SHA512 24c577692feff84a71731142e88f5937eb82a75ff7b3f60b5df4a7e8a0c10c9d307baaa312d0d8f519225d0f1a8abd17a3377f0922e6a59924d9a5440e06ae4e +MISC metadata.xml 941 BLAKE2B 7ac8ef35dfa24899f6990e5c92f5c2f70328575196308cd28f6dab967b9c39e73dabfea007c0cbf4a90bf73f5739d9c4a17b22cbe8c670b3a2d5531d47763520 SHA512 79cbe79daa7805ab944614d7d8370bc82e3ce6ecab7218112163ca118198bf176a1a06c87f8e24117f0a293d6dcc1cd0c02477e56655d66eb9b928c7ba7fabdc diff --git a/app-emulation/libspectrum/libspectrum-1.4.2.ebuild b/app-emulation/libspectrum/libspectrum-1.4.2.ebuild new file mode 100644 index 000000000000..75e11f4bc844 --- /dev/null +++ b/app-emulation/libspectrum/libspectrum-1.4.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2018 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() { + local myconf=( + $(use_with audiofile libaudiofile) + $(use_with bzip2) + $(use_with gcrypt libgcrypt) + $(use_with zlib) + ) + econf "${myconf[@]}" +} + +src_test() { + # check only builds test executable but doesn't run it + emake check + ./test/test || die +} + +src_install() { + default + dodoc doc/*.txt *.txt +} diff --git a/app-emulation/libspectrum/libspectrum-1.4.4.ebuild b/app-emulation/libspectrum/libspectrum-1.4.4.ebuild new file mode 100644 index 000000000000..75e11f4bc844 --- /dev/null +++ b/app-emulation/libspectrum/libspectrum-1.4.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2018 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() { + local myconf=( + $(use_with audiofile libaudiofile) + $(use_with bzip2) + $(use_with gcrypt libgcrypt) + $(use_with zlib) + ) + econf "${myconf[@]}" +} + +src_test() { + # check only builds test executable but doesn't run it + emake check + ./test/test || die +} + +src_install() { + default + dodoc doc/*.txt *.txt +} diff --git a/app-emulation/libspectrum/metadata.xml b/app-emulation/libspectrum/metadata.xml new file mode 100644 index 000000000000..68b09e35fe36 --- /dev/null +++ b/app-emulation/libspectrum/metadata.xml @@ -0,0 +1,25 @@ + + + + + 0xe2.0x9a.0x9b@gmail.com + Jan Ziak + + + proxy-maint@gentoo.org + Gentoo Proxy Maintainers Project + + +libspectrum is a library designed to make the input and output of some ZX +Spectrum emulator files slightly easier. It is intended to be usable on Unix +variants, Win32 and Mac OS X. Currently, it is mainly (only?) used by Fuse, +but other Spectrum emulator and utility authors are encouraged to use it. + + + Use dev-libs/libgcrypt for low-level crypto of some + features, including logfiles. + + + fuse-emulator + + -- cgit v1.2.3