diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-05-03 23:28:07 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-05-03 23:28:07 +0000 |
commit | 6a6fd6cc64b6f2342baec76d45936af0454e7380 (patch) | |
tree | 4d9d576f23b517c60b158b1f15bcdf7a7726271a /app-emulation/vice/vice-1.22.ebuild | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-6a6fd6cc64b6f2342baec76d45936af0454e7380.tar.gz gentoo-2-6a6fd6cc64b6f2342baec76d45936af0454e7380.tar.bz2 gentoo-2-6a6fd6cc64b6f2342baec76d45936af0454e7380.zip |
old
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/vice/vice-1.22.ebuild')
-rw-r--r-- | app-emulation/vice/vice-1.22.ebuild | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/app-emulation/vice/vice-1.22.ebuild b/app-emulation/vice/vice-1.22.ebuild deleted file mode 100644 index 45df72ea8ef2..000000000000 --- a/app-emulation/vice/vice-1.22.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.22.ebuild,v 1.7 2009/11/02 09:54:41 ssuominen Exp $ - -inherit eutils 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 esd gnome nls png readline resid 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 - x11-libs/libXrandr - x11-apps/xset - Xaw3d? ( x11-libs/Xaw3d ) - !Xaw3d? ( x11-libs/libXaw ) - alsa? ( media-libs/alsa-lib ) - esd? ( media-sound/esound ) - gnome? ( gnome-base/libgnomeui ) - nls? ( virtual/libintl ) - png? ( media-libs/libpng ) - readline? ( sys-libs/readline ) - resid? ( media-libs/resid ) - 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 Makefile.in.in failed" - sed -i \ - -e 's/getline/intlpo_getline/' \ - po/intl2po.c \ - || die "sed intl2po.c failed" - sed -i \ - -e 's:\<SYNC\>:OPENGL_SYNC:g' \ - configure src/arch/unix/x11/Makefile.in \ - || die "sed configure failed" -} - -src_compile() { - egamesconf \ - --disable-dependency-tracking \ - --enable-fullscreen \ - --without-midas \ - --disable-ffmpeg \ - $(use_enable gnome gnomeui) \ - $(use_enable nls) \ - $(use_with Xaw3d xaw3d) \ - $(use_with alsa) \ - --without-arts \ - $(use_with esd) \ - $(use_with png) \ - $(use_with readline) \ - $(use_with resid) \ - $(use_with sdl) \ - || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog FEEDBACK README - prepgamesdirs -} |