diff options
author | Conrad Kostecki <conrad@kostecki.com> | 2018-10-28 19:18:36 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-10-30 00:14:57 +0100 |
commit | 56f30c85fd6a18d1762b5b4ca124ac7bbe0c43a2 (patch) | |
tree | 7ba84c46f88b31e46eb0a219f08688cb4dc51a9c /dev-libs/spsdeclib | |
parent | dev-libs/spsdeclib: droped eutils from inherit. (diff) | |
download | gentoo-56f30c85fd6a18d1762b5b4ca124ac7bbe0c43a2.tar.gz gentoo-56f30c85fd6a18d1762b5b4ca124ac7bbe0c43a2.tar.bz2 gentoo-56f30c85fd6a18d1762b5b4ca124ac7bbe0c43a2.zip |
dev-libs/spsdeclib: drop old version.
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-libs/spsdeclib')
-rw-r--r-- | dev-libs/spsdeclib/spsdeclib-5.1.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1.ebuild deleted file mode 100644 index 22f948e91481..000000000000 --- a/dev-libs/spsdeclib/spsdeclib-5.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils - -DESCRIPTION="Kryoflux SPS Decoder Library" -HOMEPAGE="https://www.kryoflux.com/" -SRC_URI="https://www.kryoflux.com/download/${PN}_${PV}_source.zip" - -KEYWORDS="-* ~amd64 ~x86" -LICENSE="Kryoflux-MAME" -SLOT="0" - -DEPEND="app-arch/unzip" - -S="${WORKDIR}/capsimg_source_linux_macosx/CAPSImg" - -DOCS=( "${WORKDIR}/DONATIONS.txt" "${WORKDIR}/HISTORY.txt" "${WORKDIR}/RELEASE.txt" ) - -PATCHES=( "${FILESDIR}"/add_symlink.patch ) - -src_unpack() { - unpack ${A} - - # Unpacked ZIP-file contains two ZIP files, use the one for Linux - unpack "${WORKDIR}"/capsimg_source_linux_macosx.zip -} - -src_prepare() { - default - - # Respect users CFLAGS and CXXFLAGS - sed -i -e 's/-g//' configure.in || die - sed -i -e 's/CXXFLAGS="${CFLAGS}/CXXFLAGS="${CXXFLAGS}/' configure.in || die - - mv configure.in configure.ac || die - eautoconf - - # Fix permissions, as configure is not marked executable - chmod +x configure || die -} |