2020-08-08 21:03:25 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2015-08-25 22:21:55 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2019-03-30 17:40:05 +03:00
|
|
|
EAPI=7
|
2015-08-25 22:21:55 +03:00
|
|
|
|
|
|
|
inherit toolchain-funcs
|
|
|
|
|
2019-03-30 17:40:05 +03:00
|
|
|
DESCRIPTION="Open-source PSF1 (Playstation music) file player"
|
2015-08-25 22:21:55 +03:00
|
|
|
HOMEPAGE="http://projects.raphnet.net/#sexypsf"
|
|
|
|
SRC_URI="http://projects.raphnet.net/sexypsf/${P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2019-06-06 10:38:02 +03:00
|
|
|
KEYWORDS="amd64 ppc x86"
|
2015-08-25 22:21:55 +03:00
|
|
|
|
2020-08-08 21:03:25 +03:00
|
|
|
RDEPEND="sys-libs/zlib"
|
|
|
|
DEPEND="${RDEPEND}"
|
2015-08-25 22:21:55 +03:00
|
|
|
|
2020-08-08 21:03:25 +03:00
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}"/${PN}-0.4.8-Makefile.patch
|
|
|
|
"${FILESDIR}"/${PN}-0.4.8-fno-common.patch
|
|
|
|
)
|
|
|
|
|
|
|
|
src_configure() {
|
2015-08-25 22:21:55 +03:00
|
|
|
tc-export CC
|
2020-08-08 21:03:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake -C Linux
|
2015-08-25 22:21:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
dobin Linux/sexypsf
|
2020-08-08 21:03:25 +03:00
|
|
|
dodoc -r Docs/.
|
2015-08-25 22:21:55 +03:00
|
|
|
}
|