diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-07-15 20:02:18 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-07-15 21:27:56 +0200 |
commit | 3a45d7e0053db3fcb9b44213b6db622e296f5306 (patch) | |
tree | a8309c0c9768c24a2eaa4a13ecbbb6e0ee3134d5 /games-emulation/yabause/yabause-0.9.14.ebuild | |
parent | games-emulation/yabause: 0.9.15 version bump, EAPI-6, fix Qt 5.11 (diff) | |
download | gentoo-3a45d7e0053db3fcb9b44213b6db622e296f5306.tar.gz gentoo-3a45d7e0053db3fcb9b44213b6db622e296f5306.tar.bz2 gentoo-3a45d7e0053db3fcb9b44213b6db622e296f5306.zip |
games-emulation/yabause: Drop 0.9.14
Package-Manager: Portage-2.3.42, Repoman-2.3.9
Diffstat (limited to 'games-emulation/yabause/yabause-0.9.14.ebuild')
-rw-r--r-- | games-emulation/yabause/yabause-0.9.14.ebuild | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/games-emulation/yabause/yabause-0.9.14.ebuild b/games-emulation/yabause/yabause-0.9.14.ebuild deleted file mode 100644 index b13959e8a4a0..000000000000 --- a/games-emulation/yabause/yabause-0.9.14.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils cmake-utils games - -DESCRIPTION="A Sega Saturn emulator" -HOMEPAGE="http://yabause.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="openal opengl pic qt5 sdl" - -# x11-libs/libXrandr is an automagic dep -# qt5 over qt4 and libsdl2 over libsdl is -# also done automatically. Send patches -# upstream to make the choices explicit. -RDEPEND=" - x11-libs/libXrandr - openal? ( media-libs/openal ) - opengl? ( - media-libs/freeglut - virtual/glu - virtual/opengl - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtwidgets:5 - opengl? ( dev-qt/qtopengl:5 ) - ) - !qt5? ( - dev-libs/glib:2 - x11-libs/gtk+:2 - x11-libs/gtkglext - ) - sdl? ( media-libs/libsdl2[opengl?,video] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-RWX.patch - "${FILESDIR}"/${P}-cmake.patch -) - -src_prepare() { - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DBINDIR="${GAMES_BINDIR}" - -DTRANSDIR="${GAMES_DATADIR}"/${PN}/yts - -DYAB_OPTIMIZATION="" - $(cmake-utils_use sdl YAB_WANT_SDL) - $(cmake-utils_use openal YAB_WANT_OPENAL) - $(cmake-utils_use opengl YAB_WANT_OPENGL) - $(cmake-utils_use !pic SH2_DYNAREC) - -DYAB_PORTS=$(usex qt5 "qt" "gtk") - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - dodoc AUTHORS ChangeLog GOALS README README.LIN - prepgamesdirs -} |