Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
Date: Mon, 29 Oct 2018 23:15:30
Message-Id: 1540854897.56f30c85fd6a18d1762b5b4ca124ac7bbe0c43a2.monsieurp@gentoo
1 commit: 56f30c85fd6a18d1762b5b4ca124ac7bbe0c43a2
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sun Oct 28 18:18:36 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 29 23:14:57 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56f30c85
7
8 dev-libs/spsdeclib: drop old version.
9
10 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 dev-libs/spsdeclib/spsdeclib-5.1.ebuild | 43 ---------------------------------
15 1 file changed, 43 deletions(-)
16
17 diff --git a/dev-libs/spsdeclib/spsdeclib-5.1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1.ebuild
18 deleted file mode 100644
19 index 22f948e9148..00000000000
20 --- a/dev-libs/spsdeclib/spsdeclib-5.1.ebuild
21 +++ /dev/null
22 @@ -1,43 +0,0 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -inherit autotools eutils
29 -
30 -DESCRIPTION="Kryoflux SPS Decoder Library"
31 -HOMEPAGE="https://www.kryoflux.com/"
32 -SRC_URI="https://www.kryoflux.com/download/${PN}_${PV}_source.zip"
33 -
34 -KEYWORDS="-* ~amd64 ~x86"
35 -LICENSE="Kryoflux-MAME"
36 -SLOT="0"
37 -
38 -DEPEND="app-arch/unzip"
39 -
40 -S="${WORKDIR}/capsimg_source_linux_macosx/CAPSImg"
41 -
42 -DOCS=( "${WORKDIR}/DONATIONS.txt" "${WORKDIR}/HISTORY.txt" "${WORKDIR}/RELEASE.txt" )
43 -
44 -PATCHES=( "${FILESDIR}"/add_symlink.patch )
45 -
46 -src_unpack() {
47 - unpack ${A}
48 -
49 - # Unpacked ZIP-file contains two ZIP files, use the one for Linux
50 - unpack "${WORKDIR}"/capsimg_source_linux_macosx.zip
51 -}
52 -
53 -src_prepare() {
54 - default
55 -
56 - # Respect users CFLAGS and CXXFLAGS
57 - sed -i -e 's/-g//' configure.in || die
58 - sed -i -e 's/CXXFLAGS="${CFLAGS}/CXXFLAGS="${CXXFLAGS}/' configure.in || die
59 -
60 - mv configure.in configure.ac || die
61 - eautoconf
62 -
63 - # Fix permissions, as configure is not marked executable
64 - chmod +x configure || die
65 -}