Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Jeremy Olexa (darkside)" <darkside@g.o>
|
|
Subject:
|
gentoo-x86 commit in app-emulation/basiliskII-jit: ChangeLog basiliskII-jit-1.0_pre20060501.ebuild
|
|
Date:
|
Thu, 17 Jul 2008 03:16:14 +0000
|
|
darkside 08/07/17 03:16:14
Modified: ChangeLog
Added: basiliskII-jit-1.0_pre20060501.ebuild
Log:
Version bump of sorts, merged code bases resulted in a lower version number upstream. Thanks to Eric me262 Mason for the ebuild in bug #227763
(Portage version: 2.2_rc1/cvs/Linux 2.6.22-gentoo-r2 i686)
Revision Changes Path
1.10 app-emulation/basiliskII-jit/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/basiliskII-jit/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/basiliskII-jit/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/basiliskII-jit/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/basiliskII-jit/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 21 Apr 2008 16:42:52 -0000 1.9
+++ ChangeLog 17 Jul 2008 03:16:13 -0000 1.10
@@ -1,6 +1,13 @@
# ChangeLog for app-emulation/basiliskII-jit
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/basiliskII-jit/ChangeLog,v 1.9 2008/04/21 16:42:52 phreak Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/basiliskII-jit/ChangeLog,v 1.10 2008/07/17 03:16:13 darkside Exp $
+
+*basiliskII-jit-1.0_pre20060501 (17 Jul 2008)
+
+ 17 Jul 2008; Jeremy Olexa <darkside@g.o>
+ +basiliskII-jit-1.0_pre20060501.ebuild:
+ Version bump of sorts, merged code bases resulted in a lower version number
+ upstream. Thanks to Eric me262 Mason for the ebuild in bug #227763
21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
Fix up metadata.xml. If there's no maintainer for the package, the metadata
1.1 app-emulation/basiliskII-jit/basiliskII-jit-1.0_pre20060501.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/basiliskII-jit/basiliskII-jit-1.0_pre20060501.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/basiliskII-jit/basiliskII-jit-1.0_pre20060501.ebuild?rev=1.1&content-type=text/plain
Index: basiliskII-jit-1.0_pre20060501.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/basiliskII-jit/basiliskII-jit-1.0_pre20060501.ebuild,v 1.1 2008/07/17 03:16:13 darkside Exp $
inherit flag-o-matic eutils
S="${WORKDIR}/BasiliskII-1.0/src/Unix"
DESCRIPTION="Basilisk II Macintosh Emulator"
HOMEPAGE="http://gwenole.beauchesne.info/projects/basilisk2/"
SRC_URI="http://gwenole.beauchesne.info/projects/basilisk2/files/BasiliskII_src_01052006.tar.bz2"
LICENSE="|| ( GPL-2 LGPL-2.1 )"
KEYWORDS="~x86 -ppc"
SLOT="0"
IUSE="dga esd fbdev gtk jit nls sdl xv"
RDEPEND="esd? ( media-sound/esound )
!sdl? ( fbdev? ( x11-drivers/xf86-video-fbdev ) )
gtk? ( >=x11-libs/gtk+-1.3.15 gnome-base/libgnomeui )
!sdl? ( dga? ( x11-libs/libXxf86dga ) )
sdl? ( media-libs/libsdl )
nls? ( virtual/libintl )
x11-libs/libSM
x11-libs/libXi
x11-libs/libXxf86vm
!app-emulation/basiliskII-jit"
DEPEND="${RDEPEND}
!sdl? ( dga? ( x11-proto/xf86dgaproto ) )
nls? ( sys-devel/gettext )
x11-proto/xf86vidmodeproto
x11-proto/xextproto
x11-proto/xproto
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd "${S}"
# Fix up the vendor (bug 35352)
sed -i \
-e "s/Mandrake/Gentoo/g" keycodes || \
die "sed keycodes failed"
#prevent prestripped binary
sed -i -e '/^INSTALL_PROGRAM/s/-s//' Makefile.in
if ( use sdl && ( use fbdev || use dga ) ) ; then
elog "SDL support was requested, disabling DGA and fbdev"
elif ( use dga && use fbdev ) ; then
elog "DGA support was requested, disabling fbdev"
fi
}
src_compile() {
#fpu_x86 doesnt compile properly if -O3 or greater :(
replace-flags -O[3-9] -O2
local myflags
use jit && myflags="--enable-jit-compiler"
econf $(use_with esd) \
$(use_with gtk) \
$(use_with dga xf86-dga) \
$(use_with fbdev-dga) \
$(use_enable nls) \
$(use_enable sdl sdl-video) \
$(use_enable sdl sdl-audio) \
$(use_enable xv xf86-vidmode) \
${myflags}
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
cd ../../
dodoc ChangeLog README TECH TODO
}
pkg_postinst() {
einfo ""
einfo "Please read the README doc file for information on networking"
einfo "in Basilisk II."
einfo ""
einfo "Basilisk II requires a Mac II or Mac Classic ROM to work."
einfo ""
einfo "Mac OS 7.5.3r2 is available freely from the Apple Homepage."
einfo ""
einfo "System ROMs can be retreived from a real Mac, see info/man pages."
}
--
gentoo-commits@g.o mailing list
|
|