diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-10-11 06:35:16 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-10-11 06:35:16 +0000 |
commit | 628f586633792fb7b6dda9087ea45f880e6c3fba (patch) | |
tree | afc81b94eebdcae36227ae0e250318a9407d6719 /app-emulation/vice | |
parent | Another shot at the icon dir permission problem (diff) | |
download | gentoo-2-628f586633792fb7b6dda9087ea45f880e6c3fba.tar.gz gentoo-2-628f586633792fb7b6dda9087ea45f880e6c3fba.tar.bz2 gentoo-2-628f586633792fb7b6dda9087ea45f880e6c3fba.zip |
version bump
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-emulation/vice')
-rw-r--r-- | app-emulation/vice/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/vice/Manifest | 2 | ||||
-rw-r--r-- | app-emulation/vice/files/digest-vice-1.17 | 1 | ||||
-rw-r--r-- | app-emulation/vice/vice-1.17.ebuild | 52 |
4 files changed, 61 insertions, 1 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index 8ada094de1b1..f67e55fe4c8a 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.25 2005/08/15 14:18:34 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.26 2005/10/11 06:35:16 mr_bones_ Exp $ + +*vice-1.17 (11 Oct 2005) + + 11 Oct 2005; Michael Sterrett <mr_bones_@gentoo.org> +vice-1.17.ebuild: + version bump 15 Aug 2005; Michael Sterrett <mr_bones_@gentoo.org> vice-1.14-r1.ebuild, vice-1.16.ebuild: diff --git a/app-emulation/vice/Manifest b/app-emulation/vice/Manifest index ece224de6f4b..fcd5b25680ac 100644 --- a/app-emulation/vice/Manifest +++ b/app-emulation/vice/Manifest @@ -1,9 +1,11 @@ MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 325071eff19422cb58e3da90eac90a0f vice-1.17.ebuild 1627 MD5 79d16f38addfa775c113ea773fbe43fd vice-1.16.ebuild 1832 MD5 52bd6e65779cdc0d3710e76c85ad448d ChangeLog 3283 MD5 99c5daa624fb08ea5e9f1a08e3b78976 vice-1.14-r1.ebuild 1427 MD5 eca7586b8ef1c0d8665368c0328f9250 files/digest-vice-1.14-r1 62 MD5 962c8cfd8a9a308b180e1a26c4973625 files/1.14-po-Makefile.patch 560 +MD5 feb8195c915d5109dfd6b96df7bf4f91 files/digest-vice-1.17 62 MD5 fd15ab780139d6d1ff8ed8c0d5d85f90 files/digest-vice-1.16 62 MD5 818e0e7dbc321296c08530856f1c297a files/vice_gcc4_patch.gz 1805 MD5 5467080b8555dc1bad201449fbdaf87e files/1.14-console-security.patch 3709 diff --git a/app-emulation/vice/files/digest-vice-1.17 b/app-emulation/vice/files/digest-vice-1.17 new file mode 100644 index 000000000000..2f712a977449 --- /dev/null +++ b/app-emulation/vice/files/digest-vice-1.17 @@ -0,0 +1 @@ +MD5 a3b70d5fcef0b345599b6d452401e18e vice-1.17.tar.gz 4412711 diff --git a/app-emulation/vice/vice-1.17.ebuild b/app-emulation/vice/vice-1.17.ebuild new file mode 100644 index 000000000000..f7fb055fcaf4 --- /dev/null +++ b/app-emulation/vice/vice-1.17.ebuild @@ -0,0 +1,52 @@ +# 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.17.ebuild,v 1.1 2005/10/11 06:35:16 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 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 )" + +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 +} |