diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-08 03:25:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-08 03:25:04 +0000 |
commit | 939d3db26cd95bbfbf28a4c697bcc5b4fbdd68ff (patch) | |
tree | 87925598d5e36c62f74a9dfde7fb3669ca53bc9d /app-emulation | |
parent | ver bump (diff) | |
download | gentoo-2-939d3db26cd95bbfbf28a4c697bcc5b4fbdd68ff.tar.gz gentoo-2-939d3db26cd95bbfbf28a4c697bcc5b4fbdd68ff.tar.bz2 gentoo-2-939d3db26cd95bbfbf28a4c697bcc5b4fbdd68ff.zip |
ver bump
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/vice/ChangeLog | 11 | ||||
-rw-r--r-- | app-emulation/vice/files/1.14-po-Makefile.patch | 17 | ||||
-rw-r--r-- | app-emulation/vice/files/digest-vice-1.14 | 1 | ||||
-rw-r--r-- | app-emulation/vice/vice-1.14.ebuild | 51 |
4 files changed, 77 insertions, 3 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog index 950fdfed7bb2..c6e943f9d793 100644 --- a/app-emulation/vice/ChangeLog +++ b/app-emulation/vice/ChangeLog @@ -1,12 +1,17 @@ # ChangeLog for app-emulation/vice # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.8 2003/11/03 20:14:16 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.9 2004/02/08 03:25:04 vapier Exp $ - 03 Nov 2003; Michael Sterrett <mr_bones_@gentoo.org> vice-1.13.ebuild: - DESTDIR fix for bug 32544; add prepgamesdirs +*vice-1.14 (07 Feb 2004) + + 07 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Version bump #40434 by Chris Aniszczyk. *vice-1.13 (03 Oct 2003) + 03 Nov 2003; Michael Sterrett <mr_bones_@gentoo.org> vice-1.13.ebuild: + DESTDIR fix for bug 32544; add prepgamesdirs + 03 Oct 2003; Michael Sterrett <mr_bones_@gentoo.org> vice-1.13.ebuild, files/1.13-po-Makefile.patch: version bump diff --git a/app-emulation/vice/files/1.14-po-Makefile.patch b/app-emulation/vice/files/1.14-po-Makefile.patch new file mode 100644 index 000000000000..94ba16fe9bf5 --- /dev/null +++ b/app-emulation/vice/files/1.14-po-Makefile.patch @@ -0,0 +1,17 @@ +--- po/Makefile.in.in 2000-07-14 18:26:17.000000000 -0400 ++++ po/Makefile.in.in 2003-07-13 03:13:35.000000000 -0400 +@@ -18,10 +18,10 @@ + + prefix = @prefix@ + exec_prefix = @exec_prefix@ +-datadir = $(prefix)/@DATADIRNAME@ +-localedir = $(datadir)/locale +-gnulocaledir = $(prefix)/share/locale +-gettextsrcdir = $(prefix)/share/gettext/po ++datadir = $(DESTDIR)$(prefix)/@DATADIRNAME@ ++localedir = $(DESTDIR)$(datadir)/locale ++gnulocaledir = $(DESTDIR)$(prefix)/share/locale ++gettextsrcdir = $(DESTDIR)$(prefix)/share/gettext/po + subdir = po + + INSTALL = @INSTALL@ diff --git a/app-emulation/vice/files/digest-vice-1.14 b/app-emulation/vice/files/digest-vice-1.14 new file mode 100644 index 000000000000..8b3d7db6170d --- /dev/null +++ b/app-emulation/vice/files/digest-vice-1.14 @@ -0,0 +1 @@ +MD5 f25df1b8de2bbb536facbc05fcfa1db2 vice-1.14.tar.gz 3794698 diff --git a/app-emulation/vice/vice-1.14.ebuild b/app-emulation/vice/vice-1.14.ebuild new file mode 100644 index 000000000000..8df8ada465c3 --- /dev/null +++ b/app-emulation/vice/vice-1.14.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.14.ebuild,v 1.1 2004/02/08 03:25:04 vapier Exp $ + +inherit games eutils + +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="~x86" +IUSE="sdl nls gnome arts" + +RDEPEND="virtual/x11 + sdl? ( media-libs/libsdl ) + gnome? ( gnome-base/libgnomeui ) + arts? ( kde-base/arts )" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S} + use nls && epatch ${FILESDIR}/${PV}-po-Makefile.patch +} + +src_compile() { + egamesconf \ + --enable-fullscreen \ + --disable-dependency-tracking \ + `use_with sdl` \ + `use_with gnome gnomeui` \ + `use_with arts` \ + `use_enable nls` \ + || 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 +} |