diff options
author | Jeroen Roovers <jer@gentoo.org> | 2007-05-03 04:17:04 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2007-05-03 04:17:04 +0000 |
commit | 6e718708ef470542a008a5f94f7928375d425163 (patch) | |
tree | a1ff3174cee354a893b9d23b2d4f648ccba150b4 /app-emulation/vice | |
parent | Fix broken Manifest. (diff) | |
download | gentoo-2-6e718708ef470542a008a5f94f7928375d425163.tar.gz gentoo-2-6e718708ef470542a008a5f94f7928375d425163.tar.bz2 gentoo-2-6e718708ef470542a008a5f94f7928375d425163.zip |
Bring back 1.20 for sparc, rekeyword 1.21 as ~sparc (bug #176256).
(Portage version: 2.1.2.5)
Diffstat (limited to 'app-emulation/vice')
-rw-r--r-- | app-emulation/vice/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/vice/files/digest-vice-1.20 | 3 | ||||
-rw-r--r-- | app-emulation/vice/vice-1.20.ebuild | 84 | ||||
-rw-r--r-- | app-emulation/vice/vice-1.21.ebuild | 4 |
4 files changed, 94 insertions, 3 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index abe6fdf03569..cf1946acd30a 100644 --- a/app-emulation/vice/ChangeLog +++ b/app-emulation/vice/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/vice # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.47 2007/04/26 20:10:43 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.48 2007/05/03 04:17:04 jer Exp $ + + 03 May 2007; Jeroen Roovers <jer@gentoo.org> +vice-1.20.ebuild, + vice-1.21.ebuild: + Bring back 1.20 for sparc, rekeyword 1.21 as ~sparc (bug #176256). 26 Apr 2007; Tristan Heaven <nyhm@gentoo.org> vice-1.21.ebuild: Fix build failure when SYNC is set, bug #176155 diff --git a/app-emulation/vice/files/digest-vice-1.20 b/app-emulation/vice/files/digest-vice-1.20 new file mode 100644 index 000000000000..469a839e49f9 --- /dev/null +++ b/app-emulation/vice/files/digest-vice-1.20 @@ -0,0 +1,3 @@ +MD5 d02fe05f0f9e839820105cdf51da6b4e vice-1.20.tar.gz 5183757 +RMD160 b4f7a50257cbdd6338d4e685760e99c07ad14adb vice-1.20.tar.gz 5183757 +SHA256 be32aabeb9073c25532e6df796e782a2949c464dcccb1648ad0db27fef6fd177 vice-1.20.tar.gz 5183757 diff --git a/app-emulation/vice/vice-1.20.ebuild b/app-emulation/vice/vice-1.20.ebuild new file mode 100644 index 000000000000..099526722db2 --- /dev/null +++ b/app-emulation/vice/vice-1.20.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.20.ebuild,v 1.8 2007/05/03 04:17:04 jer Exp $ + +inherit games + +DESCRIPTION="The Versatile Commodore 8-bit Emulator" +HOMEPAGE="http://www.viceteam.org/" +SRC_URI="http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc sparc x86" +IUSE="Xaw3d alsa arts esd gnome nls png readline sdl" + +RDEPEND="media-libs/giflib + media-libs/jpeg + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm + x11-libs/libICE + x11-libs/libSM + x11-libs/libXt + x11-libs/libXv + x11-libs/libXxf86dga + x11-libs/libXxf86vm + Xaw3d? ( x11-libs/Xaw3d ) + !Xaw3d? ( x11-libs/libXaw ) + alsa? ( media-libs/alsa-lib ) + arts? ( kde-base/arts ) + esd? ( media-sound/esound ) + gnome? ( gnome-base/libgnomeui ) + nls? ( virtual/libintl ) + png? ( media-libs/libpng ) + readline? ( sys-libs/readline ) + sdl? ( media-libs/libsdl )" +DEPEND="${RDEPEND} + x11-apps/bdftopcf + x11-apps/mkfontdir + x11-proto/xproto + x11-proto/xf86vidmodeproto + x11-proto/xextproto + x11-proto/xf86dgaproto + x11-proto/videoproto + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e '/^gnulocaledir/s:$(prefix):/usr:' \ + po/Makefile.in.in \ + || die "sed failed" +} + +src_compile() { + # --enable-ffmpeg broken with 0.4.9_p20060530 + egamesconf \ + --disable-dependency-tracking \ + --disable-ffmpeg \ + --enable-ethernet \ + --enable-fullscreen \ + --enable-textfield \ + --enable-realdevice \ + --with-resid \ + --without-midas \ + $(use_enable gnome gnomeui) \ + $(use_enable nls) \ + $(use_with Xaw3d xaw3d) \ + $(use_with alsa) \ + $(use_with arts) \ + $(use_with esd) \ + $(use_with png) \ + $(use_with readline) \ + $(use_with sdl) \ + || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog FEEDBACK README + prepgamesdirs +} diff --git a/app-emulation/vice/vice-1.21.ebuild b/app-emulation/vice/vice-1.21.ebuild index 06987ec733ba..073925adaeca 100644 --- a/app-emulation/vice/vice-1.21.ebuild +++ b/app-emulation/vice/vice-1.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.21.ebuild,v 1.2 2007/04/26 20:10:43 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.21.ebuild,v 1.3 2007/05/03 04:17:04 jer Exp $ inherit eutils games @@ -10,7 +10,7 @@ SRC_URI="http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/${P LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ppc sparc x86" +KEYWORDS="~amd64 ppc ~sparc x86" IUSE="Xaw3d alsa arts esd ffmpeg gnome nls png readline sdl" RDEPEND="media-libs/giflib |