diff options
-rw-r--r-- | app-emulation/vice/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/vice/Manifest | 6 | ||||
-rw-r--r-- | app-emulation/vice/files/digest-vice-1.18 | 1 | ||||
-rw-r--r-- | app-emulation/vice/vice-1.18.ebuild | 53 |
4 files changed, 64 insertions, 3 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index 8d8900ced5fc..b32ba70c9461 100644 --- a/app-emulation/vice/ChangeLog +++ b/app-emulation/vice/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/vice # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.30 2005/11/13 20:57:02 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.31 2005/12/25 02:36:53 mr_bones_ Exp $ + +*vice-1.18 (25 Dec 2005) + + 25 Dec 2005; Michael Sterrett <mr_bones_@gentoo.org> +vice-1.18.ebuild: + version bump (bug #116657) 13 Nov 2005; Michael Hanselmann <hansmi@gentoo.org> vice-1.17.ebuild: Stable on ppc. diff --git a/app-emulation/vice/Manifest b/app-emulation/vice/Manifest index bc480f8952a9..e2a39ea9edff 100644 --- a/app-emulation/vice/Manifest +++ b/app-emulation/vice/Manifest @@ -1,4 +1,6 @@ -MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 55fb0dcd75db1a9a0e93d53e6daa5549 vice-1.17.ebuild 1368 MD5 66f123f292909d33feb90ba97adb0cdb ChangeLog 3826 MD5 feb8195c915d5109dfd6b96df7bf4f91 files/digest-vice-1.17 62 +MD5 cd31f7a55868b771220fd5dac0c85413 files/digest-vice-1.18 62 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 55fb0dcd75db1a9a0e93d53e6daa5549 vice-1.17.ebuild 1368 +MD5 55fb0dcd75db1a9a0e93d53e6daa5549 vice-1.18.ebuild 1368 diff --git a/app-emulation/vice/files/digest-vice-1.18 b/app-emulation/vice/files/digest-vice-1.18 new file mode 100644 index 000000000000..438aaedb360f --- /dev/null +++ b/app-emulation/vice/files/digest-vice-1.18 @@ -0,0 +1 @@ +MD5 44266d2427510adcac58cbf58da05be1 vice-1.18.tar.gz 4733819 diff --git a/app-emulation/vice/vice-1.18.ebuild b/app-emulation/vice/vice-1.18.ebuild new file mode 100644 index 000000000000..2bf83ecf4385 --- /dev/null +++ b/app-emulation/vice/vice-1.18.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.18.ebuild,v 1.1 2005/12/25 02:36:53 mr_bones_ Exp $ + +inherit eutils games + +DESCRIPTION="The Versatile Commodore 8-bit Emulator" +HOMEPAGE="http://www.viceteam.org/" +SRC_URI="ftp://ftp.zimmers.net/pub/cbm/crossplatform/emulators/VICE/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="X Xaw3d arts esd ffmpeg gnome nls readline sdl" + +DEPEND="esd? ( media-sound/esound ) + media-libs/libpng + sys-libs/zlib + arts? ( kde-base/arts ) + gnome? ( gnome-base/gnome-libs ) + readline? ( sys-libs/readline ) + sdl? ( media-libs/libsdl ) + X? ( virtual/x11 ) + Xaw3d? ( x11-libs/Xaw3d ) + ffmpeg? ( media-video/ffmpeg )" + +src_compile() { + egamesconf \ + --disable-dependency-tracking \ + --enable-fullscreen \ + --enable-textfield \ + --enable-ethernet \ + --enable-realdevice \ + --with-resid \ + --without-midas \ + $(use_enable ffmpeg) \ + $(use_enable gnome gnomeui) \ + $(use_enable nls) \ + $(use_with X x) \ + $(use_with Xaw3d xaw3d) \ + $(use_with arts) \ + $(use_with esd) \ + $(use_with readline) \ + $(use_with sdl) \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog FEEDBACK README + prepgamesdirs +} |