diff options
author | 2006-10-12 23:39:55 +0000 | |
---|---|---|
committer | 2006-10-12 23:39:55 +0000 | |
commit | 6175948d00bd1e5af00c710628a1898245b45b6f (patch) | |
tree | d98ae6aed5c1f6aea738d35641c805519721aa7c /app-emulation/vice | |
parent | Fixed avahi typo re:bug#148722 (diff) | |
download | gentoo-2-6175948d00bd1e5af00c710628a1898245b45b6f.tar.gz gentoo-2-6175948d00bd1e5af00c710628a1898245b45b6f.tar.bz2 gentoo-2-6175948d00bd1e5af00c710628a1898245b45b6f.zip |
Version bump, bug #150767
(Portage version: 2.1.2_pre2-r9)
Diffstat (limited to 'app-emulation/vice')
-rw-r--r-- | app-emulation/vice/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/vice/files/digest-vice-1.20 | 3 | ||||
-rw-r--r-- | app-emulation/vice/vice-1.20.ebuild | 82 |
3 files changed, 91 insertions, 1 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index e476c394e6f0..3be2b293ad69 100644 --- a/app-emulation/vice/ChangeLog +++ b/app-emulation/vice/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/vice # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.38 2006/09/16 13:55:43 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.39 2006/10/12 23:39:55 nyhm Exp $ + +*vice-1.20 (12 Oct 2006) + + 12 Oct 2006; Tristan Heaven <nyhm@gentoo.org> +vice-1.20.ebuild: + Version bump, bug #150767 16 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org> vice-1.19.ebuild: ppc stable 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..0e39685b7fb7 --- /dev/null +++ b/app-emulation/vice/vice-1.20.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2006 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.1 2006/10/12 23:39:55 nyhm 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-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 +} |