summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-06-23 21:24:20 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-06-23 22:55:50 +0200
commite68c45947fa4cf5b61806c85d3e1ddfa3e6b9db5 (patch)
tree6b34f07003816418c35cf97c147824b42b6032ad /media-sound/sexypsf
parentdev-lang/yap: Fix building against GCC 9 (diff)
downloadgentoo-e68c45947fa4cf5b61806c85d3e1ddfa3e6b9db5.tar.gz
gentoo-e68c45947fa4cf5b61806c85d3e1ddfa3e6b9db5.tar.bz2
gentoo-e68c45947fa4cf5b61806c85d3e1ddfa3e6b9db5.zip
media-sound/sexypsf: Drop 0.4.7
Package-Manager: Portage-2.3.67, Repoman-2.3.15 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/sexypsf')
-rw-r--r--media-sound/sexypsf/Manifest1
-rw-r--r--media-sound/sexypsf/sexypsf-0.4.7.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/media-sound/sexypsf/Manifest b/media-sound/sexypsf/Manifest
index cb7227120353..44f3dfabc567 100644
--- a/media-sound/sexypsf/Manifest
+++ b/media-sound/sexypsf/Manifest
@@ -1,2 +1 @@
-DIST sexypsf-0.4.7.tar.bz2 83001 BLAKE2B f2c74374f68cda1837ab4f91e338377dee539f60ca28efdc31b10a48d1028aa54892f5a2e2e6e23b145dea88a1e20e9b2a6c0155547c9d7fe10b6a5f415ab72e SHA512 5b4fe7662769e668e15bea0db8785c5355a803dfe39f86eeba6dfce5df573f342525e10bc5317e1cd2b1ef70730ee4cf766c9d02cc9f404b0e39defbb30c364c
DIST sexypsf-0.4.8.tar.bz2 82954 BLAKE2B ce710cfe20372f81e5c4f18857b46e7eef1837b87469bdf999dd677f617802da0f7cb0ff9ff1a0ee78f6424b179b33cc111ba98619dde4a03b178c63397749a4 SHA512 bb95cdb40cf7172fdf815d6a2083adc4f684973534625d76c4fdb04752888acecfdd5ba329f9e2eed64311f30eb4400c8913ace13e4fa371c89c774905dc35d0
diff --git a/media-sound/sexypsf/sexypsf-0.4.7.ebuild b/media-sound/sexypsf/sexypsf-0.4.7.ebuild
deleted file mode 100644
index a439637fec72..000000000000
--- a/media-sound/sexypsf/sexypsf-0.4.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="sexyPSF is an open-source PSF1 (Playstation music) file player"
-HOMEPAGE="http://projects.raphnet.net/#sexypsf"
-SRC_URI="http://projects.raphnet.net/sexypsf/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-#-sparc: 0.4.5: Couldn't load minispf
-KEYWORDS="amd64 ppc -sparc x86"
-IUSE=""
-
-DEPEND="sys-libs/zlib"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-misc.patch
-
- # ppc and sparc are big-endian while all other keywords are
- # little-endian (as far as I know)
- use ppc64 || use ppc || use sparc &&
- sed -i -e "s:-D__LINUX__:& -DMSB_FIRST:" "${S}"/Linux/Makefile
- # what about using the correct macro and avoid to cause severe damages to
- # innocent ears?
- sed -i -e "s:AFMT_S16_LE:AFMT_S16_NE:" "${S}"/Linux/oss.c
-}
-
-src_compile() {
- cd "${S}"/Linux
- emake || die "emake failed"
-}
-
-src_install() {
- dobin Linux/sexypsf
- dodoc Docs/*
-}