You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-emulation/sdlmametools/sdlmametools-0.149.ebuild

119 lines
2.6 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit eutils flag-o-matic python-any-r1 games
MY_PV=${PV/.}
MY_P=${PN%tools}${MY_PV}
MY_P=${MY_P%%_p*}
# patches
SRC_URI="$(for PATCH_VER in $(seq 1 ${PV##*_p}) ; do echo "https://dev.gentoo.org/~hasufell/distfiles/${MY_P}u${PATCH_VER}_diff.zip"; done)"
DESCRIPTION="Set of development tools shared between sdlmame and sdlmess"
HOMEPAGE="http://mamedev.org/"
# Upstream doesn't allow fetching with unknown User-Agent such as wget
SRC_URI="$SRC_URI https://dev.gentoo.org/~hasufell/distfiles/${MY_P/sdl}s.zip"
LICENSE="XMAME"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="
dev-libs/expat
media-libs/flac
>=media-libs/libsdl-1.2.10
media-libs/sdl-ttf
sys-libs/zlib"
DEPEND="${RDEPEND}
${PYTHON_DEPS}
app-arch/unzip
virtual/pkgconfig"
S=${WORKDIR}
# Function to disable a makefile option
disable_feature() {
sed -i \
-e "/$1.*=/s:^:# :" \
"${S}"/${2:-makefile} \
|| die "sed failed"
}
# Function to enable a makefile option
enable_feature() {
sed -i \
-e "/^#.*$1.*=/s:^#::" \
"${S}"/${2:-makefile} \
|| die "sed failed"
}
pkg_setup() {
games_pkg_setup
python-any-r1_pkg_setup
}
src_unpack() {
default
unpack ./mame.zip
rm -f mame.zip
}
src_prepare() {
if [[ $PV == *_p* ]] ; then
edos2unix $(find $(grep +++ *diff | awk '{ print $2 }' | sort -u) 2>/dev/null) *diff
einfo "Patching release with source updates"
epatch ${MY_PV%%_p*}*.diff
fi
edos2unix makefile src/osd/sdl/{osdsdl.h,sdl.mak}
epatch \
"${FILESDIR}"/${P}-QA.patch \
"${FILESDIR}"/${P}-system-lua.patch \
"${FILESDIR}"/${P}-no-opengl.patch \
"${FILESDIR}"/${P}-debugger-linking.patch
# Don't compile zlib and expat
einfo "Disabling embedded libraries: expat, flac, jpeg, zlib, lua"
disable_feature BUILD_EXPAT
disable_feature BUILD_FLAC
disable_feature BUILD_JPEG
disable_feature BUILD_ZLIB
# unused, avoid linking
# disable_feature BUILD_LUA
if use amd64; then
einfo "Enabling 64-bit support"
enable_feature PTR64
fi
if use ppc; then
einfo "Enabling PPC support"
enable_feature BIGENDIAN
fi
enable_feature NO_USE_MIDI src/osd/sdl/sdl.mak
enable_feature NO_USE_QTDEBUG src/osd/sdl/sdl.mak
enable_feature NO_OPENGL src/osd/sdl/sdl.mak
enable_feature NO_X11 src/osd/sdl/sdl.mak
}
src_compile() {
emake \
NO_DEBUGGER=1 tools
}
src_install() {
for i in chdman jedutil ldresample ldverify romcmp testkeys ; do
newgamesbin ${i} sdlmame-${i}
newman src/osd/sdl/man/${i}.1 sdlmame-${i}.1
done
prepgamesdirs
}