diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-09-26 12:40:02 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-09-26 12:41:19 +0200 |
commit | 68416ad5359d5bfc8de2f066f9bf9db1a7ce107c (patch) | |
tree | 4866293f9c678509520c202c9a260ea0470fa488 /games-emulation | |
parent | profiles/default/bsd/fbsd: force threads flag to libarchive and xz-utils (diff) | |
download | gentoo-68416ad5359d5bfc8de2f066f9bf9db1a7ce107c.tar.gz gentoo-68416ad5359d5bfc8de2f066f9bf9db1a7ce107c.tar.bz2 gentoo-68416ad5359d5bfc8de2f066f9bf9db1a7ce107c.zip |
games-emulation/mgba: Initial commit (bug #588674).
Thanks to Hadrien Lacour for opening the bug and providing the first
ebuild.
Package-Manager: portage-2.3.1
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mgba/Manifest | 1 | ||||
-rw-r--r-- | games-emulation/mgba/metadata.xml | 11 | ||||
-rw-r--r-- | games-emulation/mgba/mgba-0.5.0.ebuild | 101 |
3 files changed, 113 insertions, 0 deletions
diff --git a/games-emulation/mgba/Manifest b/games-emulation/mgba/Manifest new file mode 100644 index 000000000000..e477450a9596 --- /dev/null +++ b/games-emulation/mgba/Manifest @@ -0,0 +1 @@ +DIST mgba-0.5.0.tar.gz 5360529 SHA256 0efcd1e4f8c8d34d0384919ea19fa625fa2585d35d102c00b31930196c1f49bc SHA512 974b5cf3a0a112e7681d6117e09acaeffe44d72a0a74fddf9068b6c027a0c140d0f762fd97988d26c42e0a282806874870e2e2c1f1f277cb30a0c756f220f533 WHIRLPOOL ae8e975e38c7ab7370f4f20ea274d7e962f6556f0d12e107fc9ee5662e0b0d9680f9fb5358c319071d5b5d0e39c83786a90d41cb28c846cf9dd94597b0530626 diff --git a/games-emulation/mgba/metadata.xml b/games-emulation/mgba/metadata.xml new file mode 100644 index 000000000000..e4c99df19a2a --- /dev/null +++ b/games-emulation/mgba/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>polynomial-c@gentoo.org</email> + <name>Lars Wendler</name> + </maintainer> + <upstream> + <remote-id type="github">mgba-emu/mgba</remote-id> + </upstream> +</pkgmetadata> diff --git a/games-emulation/mgba/mgba-0.5.0.ebuild b/games-emulation/mgba/mgba-0.5.0.ebuild new file mode 100644 index 000000000000..9e9e9fe6241e --- /dev/null +++ b/games-emulation/mgba/mgba-0.5.0.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit fdo-mime gnome2-utils cmake-utils + +DESCRIPTION="A new Game Boy Advance emulator written in C." +HOMEPAGE="https://mgba.io" +SRC_URI="https://github.com/${PN}-emu/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ffmpeg imagemagick opengl qt5 +sdl" +REQUIRED_USE="|| ( qt5 sdl ) + qt5? ( opengl )" + +RDEPEND=" + media-libs/libpng:0= + sys-libs/zlib[minizip] + ffmpeg? ( virtual/ffmpeg ) + imagemagick? ( media-gfx/imagemagick:= ) + opengl? ( virtual/opengl ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5 + dev-qt/qtwidgets:5 + opengl? ( dev-qt/qtopengl:5 ) + ) + sdl? ( media-libs/libsdl2[X,sound,joystick,video,opengl?] )" +DEPEND="${RDEPEND} + >=dev-util/cmake-3.2.2" + +src_prepare() { + default + + # Get rid of any bundled stuff we don't want + for pkg in libpng lzma zlib ; do + rm -r "${S}"/src/third-party/${pkg} || die + done +} + +src_configure() { + local mycmakeargs=( + -DBUILD_GL="$(usex opengl)" + -DBUILD_QT="$(usex qt5)" + -DBUILD_SDL="$(usex sdl)" + -DUSE_FFMPEG="$(usex ffmpeg)" + -DUSE_MAGICK="$(usex imagemagick)" + -DUSE_EPOXY=OFF + -DUSE_LIBZIP=OFF + -DUSE_LZMA=OFF + -DUSE_MINIZIP=ON + -DM_CORE_GB=ON + ) + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile +} + +src_install() { + if use qt5 ; then + for size in 16 24 32 48 64 96 128 256; do + newicon -s ${size} res/${PN}-${size}.png ${PN}.png + done + doman doc/${PN}-qt.6 + domenu res/${PN}-qt.desktop + dobin ../${P}_build/qt/${PN}-qt + fi + if use sdl ; then + doman doc/${PN}.6 + newbin ../${P}_build/sdl/${PN} ${PN}-sdl + fi + + dolib.so ../${P}_build/lib${PN}.so* +} + +pkg_preinst() { + if use qt5 ; then + gnome2_icon_savelist + fi +} + +pkg_postinst() { + if use qt5 ; then + fdo-mime_desktop_database_update + gnome2_icon_cache_update + fi +} + +pkg_postrm() { + if use qt5 ; then + fdo-mime_desktop_database_update + gnome2_icon_cache_update + fi +} |