summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzamat H. Hackimov <azamat.hackimov@gmail.com>2023-01-10 15:28:20 +0300
committerJoonas Niilola <juippis@gentoo.org>2023-01-24 12:01:30 +0200
commit4ba65c77c2b3dd7e4ca4554516ffe3f48bc78d83 (patch)
treee018ea6f6da4ebc31374c1372c85ddd65cecdb99 /app-emulation/punes/files
parentapp-emulation/punes: add 0.110 (diff)
downloadgentoo-4ba65c77c2b3dd7e4ca4554516ffe3f48bc78d83.tar.gz
gentoo-4ba65c77c2b3dd7e4ca4554516ffe3f48bc78d83.tar.bz2
gentoo-4ba65c77c2b3dd7e4ca4554516ffe3f48bc78d83.zip
app-emulation/punes: drop 0.107, 0.109-r1
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/29042 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-emulation/punes/files')
-rw-r--r--app-emulation/punes/files/punes-0.107_ffmpeg-configure.patch27
-rw-r--r--app-emulation/punes/files/punes-0.109_ldflags.patch33
2 files changed, 0 insertions, 60 deletions
diff --git a/app-emulation/punes/files/punes-0.107_ffmpeg-configure.patch b/app-emulation/punes/files/punes-0.107_ffmpeg-configure.patch
deleted file mode 100644
index fd70e0d49ef0..000000000000
--- a/app-emulation/punes/files/punes-0.107_ffmpeg-configure.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 241b71fdacad10ad1e790e5a4e380ea1ffbe8a93 Mon Sep 17 00:00:00 2001
-From: "Azamat H. Hackimov" <azamat.hackimov@gmail.com>
-Date: Thu, 21 Jan 2021 12:32:31 +0300
-Subject: [PATCH] Fix ffmpeg configure switch option
-
-autoconf's --with-PACKAGE/--without-PACKAGE requires $withval, not
-$enableval.
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index fd9e0365..f63d50ea 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -38,7 +38,7 @@ AC_ARG_WITH([ffmpeg],
- AS_HELP_STRING([--with-ffmpeg],
- [Build with support for FFmpeg [autodetect] @<:@default: yes@:>@]
- ),
-- [with_ffmpeg=$enableval], [with_ffmpeg=yes])
-+ [with_ffmpeg=$withval], [with_ffmpeg=yes])
-
- AC_ARG_ENABLE([release],
- AS_HELP_STRING([--disable-release],
---
-2.26.2
-
diff --git a/app-emulation/punes/files/punes-0.109_ldflags.patch b/app-emulation/punes/files/punes-0.109_ldflags.patch
deleted file mode 100644
index ada9b28f137b..000000000000
--- a/app-emulation/punes/files/punes-0.109_ldflags.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-https://github.com/punesemu/puNES/commit/b79efed1b6e350076ea7a459dafd6c2f995bcb51
-
-From b79efed1b6e350076ea7a459dafd6c2f995bcb51 Mon Sep 17 00:00:00 2001
-From: fhorse <punes.development@gmail.com>
-Date: Tue, 7 Jun 2022 09:16:59 +0200
-Subject: [PATCH] https://github.com/punesemu/puNES/issues/213
-
-This commit allows compilation with Flatpak's build tools.
----
- src/extra/lib7zip-53abfeb/configure | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/src/extra/lib7zip-53abfeb/configure b/src/extra/lib7zip-53abfeb/configure
-index ca28ab144..504c02f6e 100755
---- a/src/extra/lib7zip-53abfeb/configure
-+++ b/src/extra/lib7zip-53abfeb/configure
-@@ -344,11 +344,11 @@ fi
-
- # Unlike CFLAGS/CXXFLAGS/CC/CXX, LDFLAGS isn't handled by CMake, so we
- # need to parse it here.
--if [ "x${LDFLAGS}" != "x" ]; then
-- for varname in EXE MODULE SHARED STATIC; do
-- CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_${varname}_LINKER_FLAGS=$(quote "$LDFLAGS")"
-- done
--fi
-+#if [ "x${LDFLAGS}" != "x" ]; then
-+# for varname in EXE MODULE SHARED STATIC; do
-+# CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_${varname}_LINKER_FLAGS=$(quote "$LDFLAGS")"
-+# done
-+#fi
-
- #eval "${CMAKE_CMD}" "${TOP_SRCDIR}" -DCMAKE_BUILD_TYPE="${BUILD_TYPE}" -DCMAKE_INSTALL_PREFIX="${PREFIX}" -DCMAKE_INSTALL_LIBDIR="${LIBDIR}" ${CMAKE_ARGS}
- #eval "${CMAKE_CMD}" "${TOP_SRCDIR}" -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DBUILD_SHARED_LIB="OFF" -DP7ZIP_SOURCE_DIR="${P7ZIP_SOURCE_DIR}" ${CMAKE_ARGS}