pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Remove melonds, newer version in HEAD.
Module Name: pkgsrc-wip
Committed By: nia <nia%NetBSD.org@localhost>
Pushed By: nee
Date: Fri Sep 13 11:12:42 2019 +0100
Changeset: 3b9e55496efa51d567b5919fb3afa3c7fff8ab34
Modified Files:
Makefile
Removed Files:
melonds/DESCR
melonds/Makefile
melonds/PLIST
melonds/TODO
melonds/distinfo
melonds/patches/patch-src_libui__sdl_LAN__PCap.cpp
Log Message:
Remove melonds, newer version in HEAD.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=3b9e55496efa51d567b5919fb3afa3c7fff8ab34
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 -
melonds/DESCR | 11 --------
melonds/Makefile | 24 ----------------
melonds/PLIST | 2 --
melonds/TODO | 4 ---
melonds/distinfo | 7 -----
melonds/patches/patch-src_libui__sdl_LAN__PCap.cpp | 33 ----------------------
7 files changed, 82 deletions(-)
diffs:
diff --git a/Makefile b/Makefile
index 8968e52fab..a5e1d7de98 100644
--- a/Makefile
+++ b/Makefile
@@ -2179,7 +2179,6 @@ SUBDIR+= meep
SUBDIR+= meep-mpi
SUBDIR+= meep-openmpi
SUBDIR+= meka-git
-SUBDIR+= melonds
SUBDIR+= memdump
SUBDIR+= memgrep
SUBDIR+= menumaker
diff --git a/melonds/DESCR b/melonds/DESCR
deleted file mode 100644
index d50cffceab..0000000000
--- a/melonds/DESCR
+++ /dev/null
@@ -1,11 +0,0 @@
-melonDS aims at providing fast and accurate Nintendo DS emulation. While it
-is still a work in progress, it has a pretty solid set of features:
-
-* Nearly complete core (CPU, video, audio, ...)
-* OpenGL renderer, 3D upscaling
-* RTC, microphone, lid close/open
-* Joystick support
-* Savestates
-* Various display position/sizing/rotation modes
-* (WIP) Wifi: local multiplayer, online connectivity
-* and more are planned!
diff --git a/melonds/Makefile b/melonds/Makefile
deleted file mode 100644
index 7cd5e2cf08..0000000000
--- a/melonds/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# $NetBSD$
-
-DISTNAME= melonDS-0.8.2
-PKGNAME= ${DISTNAME:S/DS/ds/}
-CATEGORIES= emulators
-MASTER_SITES= ${MASTER_SITE_GITHUB:=Arisotura/}
-
-MAINTAINER= nia%NetBSD.org@localhost
-HOMEPAGE= http://melonds.kuribo64.net/
-COMMENT= Nintendo DS emulator, sorta
-LICENSE= gnu-gpl-v3
-
-USE_CMAKE= yes
-USE_LANGUAGES= c c++11
-
-# C++11
-GCC_REQD+= 4.8
-
-CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release"
-CMAKE_ARGS+= -DENABLE_LTO=OFF
-
-.include "../../devel/SDL2/buildlink3.mk"
-.include "../../x11/gtk3/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/melonds/PLIST b/melonds/PLIST
deleted file mode 100644
index 1ba9e52ece..0000000000
--- a/melonds/PLIST
+++ /dev/null
@@ -1,2 +0,0 @@
-@comment $NetBSD$
-bin/melonDS
diff --git a/melonds/TODO b/melonds/TODO
deleted file mode 100644
index 7b4169424b..0000000000
--- a/melonds/TODO
+++ /dev/null
@@ -1,4 +0,0 @@
-- Framerate limiting is broken
-- Probably have to wait for this to become more stable
-- Install .desktop and icon files
-- Rename to melonDS...?
diff --git a/melonds/distinfo b/melonds/distinfo
deleted file mode 100644
index 865c69f950..0000000000
--- a/melonds/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD$
-
-SHA1 (melonDS-0.8.2.tar.gz) = 15451d8c6ffd6f060473782fc7b3fd89eebb2f03
-RMD160 (melonDS-0.8.2.tar.gz) = 284f49cf100723302419e24b3a172763f9fb1411
-SHA512 (melonDS-0.8.2.tar.gz) = 4c7e7bf2b78504b711235a8366a10e946a4c52d46e913ccf08dd7138adbda74a80af9dbc62645d4ba5b808861fbe3d30b32f9674a103a926410afb852c93ea34
-Size (melonDS-0.8.2.tar.gz) = 964182 bytes
-SHA1 (patch-src_libui__sdl_LAN__PCap.cpp) = 1fd806b6b446622e5d214091e96aac3d6eec8490
diff --git a/melonds/patches/patch-src_libui__sdl_LAN__PCap.cpp b/melonds/patches/patch-src_libui__sdl_LAN__PCap.cpp
deleted file mode 100644
index bd621ae964..0000000000
--- a/melonds/patches/patch-src_libui__sdl_LAN__PCap.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-$NetBSD$
-
-Support non-Linux.
-
---- src/libui_sdl/LAN_PCap.cpp.orig 2019-06-25 17:29:21.000000000 +0000
-+++ src/libui_sdl/LAN_PCap.cpp
-@@ -33,8 +33,10 @@
- #include <sys/types.h>
- #include <ifaddrs.h>
- #include <netinet/in.h>
-+#ifdef __linux__
- #include <linux/if_packet.h>
- #endif
-+#endif
-
-
- // welp
-@@ -270,6 +272,7 @@ bool Init(bool open_adapter)
- struct sockaddr_in* sa = (sockaddr_in*)curaddr->ifa_addr;
- memcpy(adata->IP_v4, &sa->sin_addr, 4);
- }
-+#ifdef AF_PACKET
- else if (af == AF_PACKET)
- {
- struct sockaddr_ll* sa = (sockaddr_ll*)curaddr->ifa_addr;
-@@ -278,6 +281,7 @@ bool Init(bool open_adapter)
- else
- memcpy(adata->MAC, sa->sll_addr, 6);
- }
-+#endif
-
- curaddr = curaddr->ifa_next;
- }
Home |
Main Index |
Thread Index |
Old Index