diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-10-20 17:39:34 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-10-20 17:39:34 +0000 |
commit | f2271f9a66f42959347f4a1ff6d2e7e0656964ec (patch) | |
tree | 9549bbe21bdbc5f94877fdf81932c2e744d5fe86 /app-emulation/vice | |
parent | Removed old version. (diff) | |
download | gentoo-2-f2271f9a66f42959347f4a1ff6d2e7e0656964ec.tar.gz gentoo-2-f2271f9a66f42959347f4a1ff6d2e7e0656964ec.tar.bz2 gentoo-2-f2271f9a66f42959347f4a1ff6d2e7e0656964ec.zip |
clean old version
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-emulation/vice')
-rw-r--r-- | app-emulation/vice/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/vice/files/digest-vice-1.16 | 1 | ||||
-rw-r--r-- | app-emulation/vice/files/vice_gcc4_patch.gz | bin | 1805 -> 0 bytes | |||
-rw-r--r-- | app-emulation/vice/vice-1.16.ebuild | 68 |
4 files changed, 5 insertions, 70 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index 3bbed31a74a4..4b03e64f4b84 100644 --- a/app-emulation/vice/ChangeLog +++ b/app-emulation/vice/ChangeLog @@ -1,6 +1,10 @@ # 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.27 2005/10/17 21:43:04 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.28 2005/10/20 17:39:34 mr_bones_ Exp $ + + 20 Oct 2005; Michael Sterrett <mr_bones_@gentoo.org> + -files/vice_gcc4_patch.gz, -vice-1.16.ebuild: + clean old version 17 Oct 2005; Hanno Boeck <hanno@gentoo.org> vice-1.17.ebuild: Added all USE-flags to IUSE and added missing ffmpeg-dep. diff --git a/app-emulation/vice/files/digest-vice-1.16 b/app-emulation/vice/files/digest-vice-1.16 deleted file mode 100644 index 177cda862ec7..000000000000 --- a/app-emulation/vice/files/digest-vice-1.16 +++ /dev/null @@ -1 +0,0 @@ -MD5 23848e7fe588b32549a5ce4ccf056207 vice-1.16.tar.gz 3940579 diff --git a/app-emulation/vice/files/vice_gcc4_patch.gz b/app-emulation/vice/files/vice_gcc4_patch.gz Binary files differdeleted file mode 100644 index 292db7ce1c51..000000000000 --- a/app-emulation/vice/files/vice_gcc4_patch.gz +++ /dev/null diff --git a/app-emulation/vice/vice-1.16.ebuild b/app-emulation/vice/vice-1.16.ebuild deleted file mode 100644 index c8d9b1e3bc27..000000000000 --- a/app-emulation/vice/vice-1.16.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# 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.16.ebuild,v 1.6 2005/08/15 14:18:34 mr_bones_ Exp $ - -inherit eutils games - -DESCRIPTION="The Versatile Commodore 8-bit Emulator" -HOMEPAGE="http://www.viceteam.org/" -SRC_URI="ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/VICE/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="arts nls sdl X Xaw3d readline" - -# FIXME: esound is required until configure.in is patched. -DEPEND="virtual/libc - media-sound/esound - media-libs/libpng - sys-libs/zlib - arts? ( kde-base/arts ) - readline? ( sys-libs/readline ) - sdl? ( media-libs/libsdl ) - X? ( virtual/x11 ) - Xaw3d? ( x11-libs/Xaw3d )" - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/vice_gcc4_patch.gz -} - -src_compile() { - # disabled ffmpeg support since ffmpeg isn't slotted and later - # versions aren't compatible with the vice code (bug #81795) - # disabled gnome support since it doesn't work. - # see bug #101901 and discussion. - egamesconf \ - --disable-dependency-tracking \ - --enable-fullscreen \ - --enable-textfield \ - --enable-ethernet \ - --enable-realdevice \ - --with-resid \ - --without-midas \ - --disable-ffmpeg \ - --disable-gnomeui \ - $(use_enable nls) \ - $(use_with X x) \ - $(use_with Xaw3d xaw3d) \ - $(use_with arts) \ - $(use_with readline) \ - $(use_with sdl) \ - || die - emake || die "emake failed" -} - -src_install() { - local docdir="${D}${GAMES_LIBDIR}/${PN}/doc" - - make DESTDIR="${D}" install || die "make install failed" - dohtml "${docdir}/"* || die "dohtml failed" - dodoc \ - AUTHORS ChangeLog FEEDBACK README \ - "${docdir}/"{BUGS,NEWS,PETdoc.txt,TODO} \ - "${docdir}/"{cbm_basic_tokens.txt,drive_info.txt,mon.txt,serial.txt} - rm -rf "${docdir}" - prepgamesdirs -} |