changeset 856:495050503ca8

emulation/libretro-dolphin: initial import, closes #1238
author David Demelier <markand@malikania.fr>
date Sun, 25 Aug 2019 10:52:45 +0200
parents f5bef4d52dad
children c85bcd4d1459
files emulation/libretro-dolphin/libretro-dolphin.sh emulation/libretro-dolphin/libretro-dolphin.sha1 emulation/libretro-dolphin/patch-musl.patch
diffstat 3 files changed, 69 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulation/libretro-dolphin/libretro-dolphin.sh	Sun Aug 25 10:52:45 2019 +0200
@@ -0,0 +1,57 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+_COMMIT=e8f27d0c3439b7fa73fba55819589d4aa45e3536
+_SCOMMIT=$(echo $_COMMIT | awk '{ print substr($1, 0, 7) }')
+
+PKGNAME=libretro-dolphin
+PKGVERSION=$_SCOMMIT
+PKGREVISION=1
+PKGLICENSE="GPLv20"
+PKGSUMMARY="libretro implementation for dolphin (Nintendo Gamecube/WII)"
+PKGDOWNLOAD="https://github.com/libretro/dolphin/archive/$_COMMIT.tar.gz
+             https://raw.github.com/libretro/libretro-super/master/dist/info/dolphin_libretro.info"
+PKGDEPENDS="dev/cmake:build"
+
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${CXX:=clang++}
+: ${CXXFLAGS:=-O2}
+
+build()
+{
+	rm -rf dolphin-$_COMMIT
+	tar xvf $_COMMIT.tar.gz
+	cd dolphin-$_COMMIT
+
+	patch -p0 < ../patch-musl.patch
+	mkdir build && cd build
+	cmake .. \
+		-DCMAKE_BUILD_TYPE=Release \
+		-DCMAKE_CXX_COMPILER="$CXX" \
+		-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+		-DCMAKE_C_COMPILER="$CC" \
+		-DCMAKE_C_FLAGS="$CFLAGS" \
+		-DLIBRETRO=On
+	make
+	install -Dm0644 ../../dolphin_libretro.info $DESTDIR/share/libretro/info/dolphin_libretro.info
+	install -Dm0644 dolphin_libretro.so $DESTDIR/lib/libretro/dolphin_libretro.so
+	cd ..
+
+	cd ..
+	rm -rf dolphin-$_COMMIT
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulation/libretro-dolphin/libretro-dolphin.sha1	Sun Aug 25 10:52:45 2019 +0200
@@ -0,0 +1,2 @@
+0a828c80361aadf4e69483531a9ebfdf855c20a5  dolphin_libretro.info
+48aae6314394b1a84b7ec42cda0cd1aa408e7fb1  e8f27d0c3439b7fa73fba55819589d4aa45e3536.tar.gz
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulation/libretro-dolphin/patch-musl.patch	Sun Aug 25 10:52:45 2019 +0200
@@ -0,0 +1,10 @@
+--- ./Source/Core/Core/HW/WiimoteReal/IOLinux.cpp.orig	2019-08-25 08:33:46.477308492 +0200
++++ ./Source/Core/Core/HW/WiimoteReal/IOLinux.cpp	2019-08-25 08:34:05.045309063 +0200
+@@ -6,6 +6,7 @@
+ #include <bluetooth/hci.h>
+ #include <bluetooth/hci_lib.h>
+ #include <bluetooth/l2cap.h>
++#include <sys/select.h>
+ #include <unistd.h>
+ 
+ #include "Common/CommonTypes.h"