1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-05 21:34:14 +01:00

Removed old/not working ebuilds

This commit is contained in:
root
2012-05-01 16:46:36 +02:00
parent dfbb988b1e
commit 62b385a772
21 changed files with 386 additions and 659 deletions

View File

@@ -1,5 +0,0 @@
AUX raine-0.51.11-install_path.patch 378 RMD160 cbecc01ac41ef3afb0439cce6c449975693ba5f1 SHA1 47182c05cf9024b070dbe80f7d9157c11a893a5f SHA256 a927f07367db729beaafe8e7555f59289862619ea85ad78736e907aba42e9ff1
AUX raine-0.51.11-ldflags.patch 467 RMD160 4ba047afbe3eb4e8399d5885c115cdef1ad2e10b SHA1 14fa2cad49eff9b6d715969f6194cb811098ef25 SHA256 3d71d8c5be91a80177efe54529c1c3273a81a7f15571b9ecb2e9f3498a7db04b
AUX raine-0.51.11-libpng1.5.patch 370 RMD160 ad1baa66681d5507a35ffc7614216e2943d330c2 SHA1 681bc414278bd155e44a69e194c3887db6a28152 SHA256 6c1adf75a6d23b1fb25a641906ec87241a051c767eefe22d9c76a03e5a2fb382
DIST raines-0.51.11.tar.bz2 2064881 RMD160 f037f91dd8663a628e73325a50831344cd5db61d SHA1 d6d6e3816f1118c667390bd6623808f516560491 SHA256 2d5aedd87195c33e7b2da298104906856c969dcc574003f9acf77005c711ba0f
EBUILD raine-0.51.11.ebuild 1446 RMD160 833e3138dfd7075ebe77cc5b9910ef07b2f815af SHA1 3d993b3fd67ccbe7a4d3bdd035a4ebd863901a49 SHA256 dfa136a67cbf97d5cf1269030280fae475be0daf9729c249b57aa70e0eac737d

View File

@@ -1,14 +0,0 @@
--- raine-0.51.11_orig/makefile 2011-04-29 11:02:44.000000000 +0200
+++ raine-0.51.11/makefile 2011-10-24 17:11:09.000000000 +0200
@@ -295,11 +295,7 @@
endif
RAINE_UNIX = 1
-ifdef VERBOSE
INSTALL = /usr/bin/install
-else
- INSTALL = @install
-endif
INSTALL_BIN = $(INSTALL) -m 755
INSTALL_DATA = $(INSTALL) -m 644
RD = rmdir --ignore-fail-on-non-empty

View File

@@ -1,11 +0,0 @@
--- raine-0.51.11_orig/makefile 2011-04-29 11:02:44.000000000 +0200
+++ raine-0.51.11/makefile 2011-10-23 20:44:59.000000000 +0200
@@ -1037,7 +1037,7 @@
else
@echo Linking Raine...
endif
- $(LDV) $(LFLAGS) -g -Wall -Wno-write-strings -o $(RAINE_EXE) $(OBJS) $(LIBS) -lstdc++
+ $(LDV) $(LDFLAGS) $(LFLAGS) -g -Wall -Wno-write-strings -o $(RAINE_EXE) $(OBJS) $(LIBS) -lstdc++
converter: source/bonus/converter.c
$(CCV) $(CFLAGS) -c $< -o $(OBJDIR)/converter.o

View File

@@ -1,11 +0,0 @@
--- raine-0.51.11_orig/source/savepng.c 2009-12-31 23:25:03.000000000 +0100
+++ raine-0.51.11/source/savepng.c 2011-10-23 21:23:26.000000000 +0200
@@ -203,7 +203,7 @@
goto Error;
/* Set error handling. */
- if (setjmp(png_ptr->jmpbuf)) {
+ if (setjmp(png_jmpbuf(png_ptr))) {
/* If we get here, we had a problem reading the file. */
goto Error;
}

View File

@@ -1,58 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/raine-0.51.9.ebuild,v 1.4 2011/06/16 10:11:03 tupone Exp $
EAPI=2
inherit flag-o-matic eutils games
DESCRIPTION="R A I N E M680x0 Arcade Emulation"
HOMEPAGE="http://rainemu.swishparty.co.uk/"
echo ${PV}
SRC_URI="http://rainemu.swishparty.co.uk/html/archive/raines-${PV}.tar.bz2"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="dev-cpp/muParser
media-libs/libsdl[audio,joystick,video]
sys-libs/zlib
media-libs/sdl-image[png]
media-libs/sdl-ttf"
DEPEND="${RDEPEND}
dev-lang/nasm
app-arch/unzip"
src_prepare() {
echo > detect-cpu
echo > cpuinfo
sed -i \
-e "/^NEO/s:^:#:" \
-e "s:nasmw:nasm:" \
-e "/bindir/s:=.*:=\$(DESTDIR)${GAMES_BINDIR}:" \
-e "/sharedir =/s:=.*:=\$(DESTDIR)${GAMES_DATADIR}:" \
-e "/mandir/s:=.*:=\$(DESTDIR)/usr/share/man/man6:" \
makefile \
|| die "sed failed"
epatch "${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-libpng1.5.patch \
"${FILESDIR}"/${P}-install_path.patch
append-ldflags -Wl,-z,noexecstack
}
src_compile() {
local myopts
emake \
_MARCH="${CFLAGS}" \
VERBOSE=1 \
${myopts} || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
keepdir "${GAMES_DATADIR}"/${PN}/{roms,artwork,emudx,scripts/raine}
dodoc docs/readme.txt
prepgamesdirs
}