diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2004-06-12 20:13:55 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2004-06-12 20:13:55 +0000 |
commit | 89311c08413ef9c9e84abba1577a8c6c8db3ab8c (patch) | |
tree | 489f49c42036f2e56fe1862481a7061f3cee6f8d /games-emulation/openmsx/files | |
parent | Fix previous commit. (diff) | |
download | gentoo-2-89311c08413ef9c9e84abba1577a8c6c8db3ab8c.tar.gz gentoo-2-89311c08413ef9c9e84abba1577a8c6c8db3ab8c.tar.bz2 gentoo-2-89311c08413ef9c9e84abba1577a8c6c8db3ab8c.zip |
Version bump to 0.4.0, with two patches to control the new build system.
Diffstat (limited to 'games-emulation/openmsx/files')
3 files changed, 27 insertions, 0 deletions
diff --git a/games-emulation/openmsx/files/digest-openmsx-0.4.0 b/games-emulation/openmsx/files/digest-openmsx-0.4.0 new file mode 100644 index 000000000000..85989a5f28b5 --- /dev/null +++ b/games-emulation/openmsx/files/digest-openmsx-0.4.0 @@ -0,0 +1 @@ +MD5 dca160f30e28ad8d314fa0a6eef77fcd openmsx-0.4.0.tar.gz 853981 diff --git a/games-emulation/openmsx/files/openmsx-0.4.0-custom.mk.patch b/games-emulation/openmsx/files/openmsx-0.4.0-custom.mk.patch new file mode 100644 index 000000000000..d4623b88a8a8 --- /dev/null +++ b/games-emulation/openmsx/files/openmsx-0.4.0-custom.mk.patch @@ -0,0 +1,9 @@ +--- build/custom.mk.orig 2004-06-12 14:09:54.480751992 +0100 ++++ build/custom.mk 2004-06-12 14:10:07.797727504 +0100 +@@ -6,5 +6,5 @@ + # openMSX is always installed into a single self-contained directory. + # But you can change that directory to for example /usr/local/openMSX + # or /usr/games/openMSX if you like. +-INSTALL_BASE:=/opt/openMSX ++INSTALL_BASE:=/usr/games/openmsx + diff --git a/games-emulation/openmsx/files/openmsx-0.4.0-symlinking.patch b/games-emulation/openmsx/files/openmsx-0.4.0-symlinking.patch new file mode 100644 index 000000000000..30a2e9823d0f --- /dev/null +++ b/games-emulation/openmsx/files/openmsx-0.4.0-symlinking.patch @@ -0,0 +1,17 @@ +--- build/main.mk.orig 2004-06-12 13:50:28.076072456 +0100 ++++ build/main.mk 2004-06-12 13:52:29.438622544 +0100 +@@ -465,12 +465,8 @@ + @ln -nsf Philips_NMS_8250 $(OPENMSX_INSTALL)/share/machines/msx2 + @ln -nsf Panasonic_FS-A1FX $(OPENMSX_INSTALL)/share/machines/msx2plus + @ln -nsf Panasonic_FS-A1GT $(OPENMSX_INSTALL)/share/machines/turbor +- @if [ -d /usr/local/bin -a -w /usr/local/bin ]; \ +- then ln -sf $(OPENMSX_INSTALL)/bin/$(BINARY_FILE) /usr/local/bin/openmsx; \ +- else if [ -d ~/bin ]; \ +- then ln -sf $(OPENMSX_INSTALL)/bin/$(BINARY_FILE) ~/bin/openmsx; \ +- fi; \ +- fi ++ @mkdir -p ${D}/usr/games/bin ++ @ln -sf $(OPENMSX_INSTALL)/bin/$(BINARY_FILE) ${D}/usr/games/bin/openmsx + endif + @echo " Setting permissions..." + @chmod -R a+rX $(OPENMSX_INSTALL) |