diff options
author | 2008-06-02 06:41:49 +0000 | |
---|---|---|
committer | 2008-06-02 06:41:49 +0000 | |
commit | 8494f4f2a59d2227bd5c6cb3f0d030ef791715ae (patch) | |
tree | a83737419cb938ead204f00fe01bc5047124ed36 /games-emulation | |
parent | fix installation path of man page - bug# 224489 - thanks mulaz and marek (diff) | |
download | gentoo-2-8494f4f2a59d2227bd5c6cb3f0d030ef791715ae.tar.gz gentoo-2-8494f4f2a59d2227bd5c6cb3f0d030ef791715ae.tar.bz2 gentoo-2-8494f4f2a59d2227bd5c6cb3f0d030ef791715ae.zip |
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-emulation')
4 files changed, 0 insertions, 177 deletions
diff --git a/games-emulation/generator/files/generator-0.35-configure.patch b/games-emulation/generator/files/generator-0.35-configure.patch deleted file mode 100644 index cc4046c7e62b..000000000000 --- a/games-emulation/generator/files/generator-0.35-configure.patch +++ /dev/null @@ -1,61 +0,0 @@ ---- configure.ac.orig 2007-04-11 16:28:09.000000000 -0400 -+++ configure.ac 2007-04-11 16:29:07.000000000 -0400 -@@ -202,50 +202,6 @@ - CFLAGS="$CFLAGS -Wstrict-prototypes -Wunused" - fi - fi -- if [[ "x$DEBUG" != "xno" ]]; then -- AC_MSG_RESULT(Turning on debug flags) -- CFLAGS="$CFLAGS -g -O" -- optimum=no -- else -- if [[ "x$GCCVER" != "xno" ]]; then -- AC_MSG_RESULT(Turning on gcc optimisations) -- CFLAGS="$CFLAGS -O3 -fomit-frame-pointer" -- if [[ "x$GCCVER" = "x3" ]]; then -- AC_MSG_RESULT(Turning on gcc 3 optimisations) -- CFLAGS="$CFLAGS -fno-math-errno" -- fi -- case "$CFLAGS" in -- *mcpu*|*march*) AC_MSG_RESULT(Skipping target optimisations) -- ;; -- *) case "$target_cpu" in -- i386) AC_MSG_RESULT(Turning on i386 optimisations) -- CFLAGS="$CFLAGS -march=i386 -ffast-math" -- ;; -- i486) AC_MSG_RESULT(Turning on i486 optimisations) -- CFLAGS="$CFLAGS -march=i486 -ffast-math" -- ;; -- i586) AC_MSG_RESULT(Turning on pentium optimisations) -- # cannot do malign-double as we link to other libraries and -- # it would break binary compatibility -- CFLAGS="$CFLAGS -march=pentium -ffast-math" -- ;; -- i?86) AC_MSG_RESULT(Turning on i686 optimisations) -- # cannot do malign-double as we link to other libraries and -- # it would break binary compatibility -- CFLAGS="$CFLAGS -march=i686 -ffast-math" -- ;; -- alpha*) AC_MSG_RESULT(Adding -mieee for Alpha) -- CFLAGS="$CFLAGS -mieee" -- ;; -- *) AC_MSG_RESULT(Sorry unknown target CPU) -- ;; -- esac -- esac -- else -- AC_MSG_WARN(You did not opt for gcc optimisations!) -- optimum=no -- fi -- fi - AC_CHECK_LIB(jpeg, jpeg_start_compress, - [ MY_LIBS="-ljpeg $MY_LIBS"; AC_DEFINE(JPEG, 1, [JPEG features]) ]) - -@@ -305,6 +261,7 @@ - AC_CHECK_SIZEOF(unsigned long, 4) - AC_CHECK_SIZEOF(unsigned long long, 8) - AC_CHECK_HEADERS(sys/param.h) -+ AC_CHECK_HEADERS(sys/time.h) - AC_CHECK_HEADERS(bzlib.h) - AC_CHECK_HEADERS(zlib.h) - AC_CHECK_HEADERS(tcl8.0.h) diff --git a/games-emulation/generator/files/generator-0.35-execstacks.patch b/games-emulation/generator/files/generator-0.35-execstacks.patch deleted file mode 100644 index f92ef6121f5a..000000000000 --- a/games-emulation/generator/files/generator-0.35-execstacks.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- raze/Makefile.am.old 2006-09-03 03:17:39.000000000 +0200 -+++ raze/Makefile.am 2006-09-03 03:16:36.000000000 +0200 -@@ -343,6 +343,10 @@ - raze: raze.o - raze.o: raze.asm raze.reg - nasm -e raze.asm -o raze2.asm -+ echo "%ifidn __OUTPUT_FORMAT__,elf" >> raze2.asm -+ echo "section .note.GNU-stack noalloc noexec nowrite progbits" \ -+ >> raze2.asm -+ echo "%endif" >> raze2.asm - nasm -f @ASMOUTPUT@ raze2.asm -o raze.o -praze.reg - diff --git a/games-emulation/generator/files/netbsd-gcc-3.3.patch b/games-emulation/generator/files/netbsd-gcc-3.3.patch deleted file mode 100644 index 2cedcf838bac..000000000000 --- a/games-emulation/generator/files/netbsd-gcc-3.3.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- hdr/generator.h.orig 2004-02-14 00:23:16.000000000 +0100 -+++ hdr/generator.h 2004-02-14 00:23:46.000000000 +0100 -@@ -185,11 +185,11 @@ - # define LOG_DEBUG3(x) /* ui_log_debug3 ## x */ - # define LOG_DEBUG2(x) /* ui_log_debug2 ## x */ - # define LOG_DEBUG1(x) /* ui_log_debug1 ## x */ --# define LOG_USER(x) ui_log_user ## x --# define LOG_VERBOSE(x) ui_log_verbose ## x --# define LOG_NORMAL(x) ui_log_normal ## x --# define LOG_CRITICAL(x) ui_log_critical ## x --# define LOG_REQUEST(x) ui_log_request ## x -+# define LOG_USER(x) ui_log_user x -+# define LOG_VERBOSE(x) ui_log_verbose x -+# define LOG_NORMAL(x) ui_log_normal x -+# define LOG_CRITICAL(x) ui_log_critical x -+# define LOG_REQUEST(x) ui_log_request x - #endif - - typedef struct { -$NetBSD: patch-af,v 1.1 2004/02/13 23:41:28 kristerw Exp $ - ---- main/ui-gtk.c.orig 2004-02-14 00:30:00.000000000 +0100 -+++ main/ui-gtk.c 2004-02-14 00:30:20.000000000 +0100 -@@ -626,7 +626,7 @@ - /* logging is done this way because this was the best I could come up with - whilst battling with macros that can only take fixed numbers of arguments */ - --#define LOG_FUNC(name,level,txt) void ui_log_ ## name ## (const char *text, ...) \ -+#define LOG_FUNC(name,level,txt) void ui_log_ ## name (const char *text, ...) \ - { \ - va_list ap; \ - if (gen_loglevel >= level) { \ diff --git a/games-emulation/generator/generator-0.35.ebuild b/games-emulation/generator/generator-0.35.ebuild deleted file mode 100644 index ba292ff98481..000000000000 --- a/games-emulation/generator/generator-0.35.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/generator/generator-0.35.ebuild,v 1.16 2008/03/06 21:53:36 wolf31o2 Exp $ - -inherit eutils toolchain-funcs games - -DESCRIPTION="Sega Genesis / Mega Drive console emulator" -HOMEPAGE="http://www.squish.net/generator/" -SRC_URI="http://www.squish.net/generator/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc ~amd64" -IUSE="svga gtk" - -RDEPEND="virtual/libc - gtk? ( =x11-libs/gtk+-1* media-libs/libsdl ) - svga? ( media-libs/svgalib ) - media-libs/jpeg" -DEPEND="${RDEPEND} - x86? ( dev-lang/nasm )" - -src_unpack() { - unpack ${A} - - cd "${S}" - mkdir my-bins - if use ppc ; then - sed -i \ - -e 's/-minline-all-stringops//g' configure \ - || die "sed configure failed" - fi - - if [[ $(gcc-major-version) -eq 3 ]] ; then - sed -i \ - -e "s/-malign-functions/-falign-functions/" \ - -e "s/-malign-loops/-falign-loops/" \ - -e "s/-malign-jumps/-falign-jumps/" configure \ - || die "sed configure failed" - fi - epatch "${FILESDIR}/netbsd-gcc-3.3.patch" -} - -src_compile() { - local myconf="--with-gcc=$(gcc-major-version)" - local mygui myguis - - use x86 \ - && myconf="${myconf} --with-raze" \ - || myconf="${myconf} --with-cmz80" - - use gtk && myguis="gtk" - use svga && myguis="svgalib" - [[ -n "${myguis}" ]] || myguis="gtk" - - for mygui in ${myguis}; do - if [ -f Makefile ] ; then - make clean - fi - egamesconf \ - ${myconf} \ - --with-${mygui} || die - emake -j1 || die "building ${mygui}" - mv main/generator-${mygui} my-bins/ - done -} - -src_install() { - dogamesbin my-bins/* || die "dogamesbin failed" - dodoc AUTHORS ChangeLog NEWS README TODO - prepgamesdirs -} |