diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
commit | 4449c749e4d0a531f4dffcd6bd11772e59ecbf81 (patch) | |
tree | 47ac23a46562d1736503b9b2447f81b34199c04e /games-emulation/raine/files | |
parent | New package - rename. (diff) | |
download | historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.gz historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.bz2 historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.zip |
welcome to games-emulation
Diffstat (limited to 'games-emulation/raine/files')
-rw-r--r-- | games-emulation/raine/files/Raine.desktop | 11 | ||||
-rw-r--r-- | games-emulation/raine/files/digest-raine-0.36.2 | 3 | ||||
-rw-r--r-- | games-emulation/raine/files/raine-allegro_4.1.5_fix.patch | 20 |
3 files changed, 34 insertions, 0 deletions
diff --git a/games-emulation/raine/files/Raine.desktop b/games-emulation/raine/files/Raine.desktop new file mode 100644 index 000000000000..16ce170619a0 --- /dev/null +++ b/games-emulation/raine/files/Raine.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Comment=R A I N E M680x0 Arcade Emulation +Exec=/usr/bin/raine +Icon=/usr/share/icons/Raine16X16.png +Name=Raine +Path=/usr/share/raine +Terminal=0 +TerminalOptions= +Type=Application +X-KDE-SubstituteUID=false +X-KDE-Username= diff --git a/games-emulation/raine/files/digest-raine-0.36.2 b/games-emulation/raine/files/digest-raine-0.36.2 new file mode 100644 index 000000000000..82ad6e43cfc2 --- /dev/null +++ b/games-emulation/raine/files/digest-raine-0.36.2 @@ -0,0 +1,3 @@ +MD5 bff7f62b6ea4a4bf1342f3a5c41debf3 raines-0.36.2.tar.bz2 1614994 +MD5 cec6e5ba7beeb2ece310c66fd55c7b4d rainedocs.zip 88671 +MD5 3529c30187861c37af8e1ce544746b1e icons.zip 3641 diff --git a/games-emulation/raine/files/raine-allegro_4.1.5_fix.patch b/games-emulation/raine/files/raine-allegro_4.1.5_fix.patch new file mode 100644 index 000000000000..516cdc585c5f --- /dev/null +++ b/games-emulation/raine/files/raine-allegro_4.1.5_fix.patch @@ -0,0 +1,20 @@ +--- raine/source/alleg/display.c.orig 2002-09-07 09:56:00.000000000 +0200 ++++ raine/source/alleg/display.c 2002-11-24 04:23:17.000000000 +0100 +@@ -23,8 +23,6 @@ + // hardware scaling instead - it makes things MUCH easier. + + #ifdef RAINE_UNIX +-#ifndef ALLEGRO_LINUX +-// These are not defined by freebsd, but they could... + static inline unsigned char inportb(unsigned short port) + { + unsigned char value; +@@ -42,8 +40,6 @@ + __asm__ volatile ("outw %0, %1" : : "a" (value), "d" (port)); + } + +-#endif +- + #define outp(a,b) outportb(a,b) + #define inp(a) inportb(a) + |