diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-04-26 18:06:14 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-04-26 18:06:14 +0000 |
commit | 70d8b0861d2bbcf7e24ed01c88f4f23b093c9298 (patch) | |
tree | d158693e977373d7cf9a16c23c2e99ba7da5fa57 /app-emulation/vice/vice-1.20.ebuild | |
parent | remove unneeded media-libs/mlt snapshot mask as its now gone as there are off... (diff) | |
download | gentoo-2-70d8b0861d2bbcf7e24ed01c88f4f23b093c9298.tar.gz gentoo-2-70d8b0861d2bbcf7e24ed01c88f4f23b093c9298.tar.bz2 gentoo-2-70d8b0861d2bbcf7e24ed01c88f4f23b093c9298.zip |
Version bump
(Portage version: 2.1.2.4)
Diffstat (limited to 'app-emulation/vice/vice-1.20.ebuild')
-rw-r--r-- | app-emulation/vice/vice-1.20.ebuild | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/app-emulation/vice/vice-1.20.ebuild b/app-emulation/vice/vice-1.20.ebuild deleted file mode 100644 index d5e7d9984720..000000000000 --- a/app-emulation/vice/vice-1.20.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# 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.6 2007/04/24 13:14:19 gustavoz 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 -} |