summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-engines/scummvm-tools/files')
-rw-r--r--games-engines/scummvm-tools/files/scummvm-tools-1.8.0-binprefix.patch11
-rw-r--r--games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch17
2 files changed, 0 insertions, 28 deletions
diff --git a/games-engines/scummvm-tools/files/scummvm-tools-1.8.0-binprefix.patch b/games-engines/scummvm-tools/files/scummvm-tools-1.8.0-binprefix.patch
deleted file mode 100644
index 604db075395c..000000000000
--- a/games-engines/scummvm-tools/files/scummvm-tools-1.8.0-binprefix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- scummvm-tools-1.7.0.orig/Makefile.common
-+++ scummvm-tools-1.7.0/Makefile.common
-@@ -312,7 +312,7 @@
- install: $(TARGETS)
- $(INSTALL) -p -m 0755 -d $(DESTDIR)$(BINDIR)
- $(INSTALL) -p -m 0755 -d $(DESTDIR)$(DATADIR)/scummvm-tools
-- for i in $^ ; do $(INSTALL) -p -m 0755 $$i $(DESTDIR)$(BINDIR) ; done
-+ for i in $^ ; do $(INSTALL) -p -m 0755 $$i $(DESTDIR)$(BINDIR)/$(EXEPREFIX)$$i ; done
- $(INSTALL) -m 0755 -d $(DESTDIR)$(DATADIR)/scummvm-tools
- $(INSTALL) -p -m 0644 $(srcdir)/gui/media/*.* $(DESTDIR)$(DATADIR)/scummvm-tools
-
diff --git a/games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch b/games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch
deleted file mode 100644
index 1bd3f9f399dc..000000000000
--- a/games-engines/scummvm-tools/files/scummvm-tools-2.2.0-strings.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Fix build without native symlinks
-https://bugs.gentoo.org/744424
-
---- a/configure
-+++ b/configure
-@@ -1026,9 +1026,9 @@ void _ebcdic() { char* s = (char*) ebcdi
- int main() { _ascii (); _ebcdic (); return 0; }
- EOF
- $CXX $CXXFLAGS -c -o $TMPO.o tmp_endianness_check.cpp
--if strings $TMPO.o | grep BIGenDianSyS >/dev/null; then
-+if ${STRINGS} $TMPO.o | grep BIGenDianSyS >/dev/null; then
- _endian=big
--elif strings $TMPO.o | grep LiTTleEnDian >/dev/null; then
-+elif ${STRINGS} $TMPO.o | grep LiTTleEnDian >/dev/null; then
- _endian=little
- fi
- echo $_endian;