diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-11 10:25:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-11 10:25:52 +0000 |
commit | 79ac05f1fa77f7ce90202aad525559a0991f70c4 (patch) | |
tree | 12028a1a06f2f3fedac37e115a73ec30cefadcec /games-emulation | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-79ac05f1fa77f7ce90202aad525559a0991f70c4.tar.gz gentoo-2-79ac05f1fa77f7ce90202aad525559a0991f70c4.tar.bz2 gentoo-2-79ac05f1fa77f7ce90202aad525559a0991f70c4.zip |
initial ebuild #37760
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/hugo/ChangeLog | 8 | ||||
-rw-r--r-- | games-emulation/hugo/files/digest-hugo-2.09 | 1 | ||||
-rw-r--r-- | games-emulation/hugo/hugo-2.09.ebuild | 43 |
3 files changed, 52 insertions, 0 deletions
diff --git a/games-emulation/hugo/ChangeLog b/games-emulation/hugo/ChangeLog new file mode 100644 index 000000000000..abac26a3888f --- /dev/null +++ b/games-emulation/hugo/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for games-emulation/hugo +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/hugo/ChangeLog,v 1.1 2004/01/11 10:25:37 vapier Exp $ + +*hugo-2.09 (11 Jan 2004) + + 11 Jan 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Chris Aniszczyk <zx@mea-culpa.net> #37760. diff --git a/games-emulation/hugo/files/digest-hugo-2.09 b/games-emulation/hugo/files/digest-hugo-2.09 new file mode 100644 index 000000000000..d7b8cb24e09f --- /dev/null +++ b/games-emulation/hugo/files/digest-hugo-2.09 @@ -0,0 +1 @@ +MD5 9ea90274a0239cea577d6f7fa984e4b0 hugo_lin_209.tgz 244317 diff --git a/games-emulation/hugo/hugo-2.09.ebuild b/games-emulation/hugo/hugo-2.09.ebuild new file mode 100644 index 000000000000..0e37df9f6605 --- /dev/null +++ b/games-emulation/hugo/hugo-2.09.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +inherit games + +DESCRIPTION="PC-Engine (TG16) emulator for linux" +HOMEPAGE="http://www.zeograd.com/" +SRC_URI="http://www.zeograd.com/download/hugo_lin_${PV//.}.tgz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="virtual/x11 + virtual/glibc + media-libs/libsdl" + +S=${WORKDIR}/hugo-${PV} + +src_install() { + local dir=${GAMES_PREFIX_OPT}/${PN} + dodir ${dir} + + exeinto ${dir} + doexe hugo + + insinto ${dir}/roms + doins dracx.hcd flipit.pce + + insinto ${dir}/cfg + doins hugo.ini + + dodoc *.fr *.txt *.es changes faq + + games_make_wrapper hugo ./hugo ${dir} + + prepgamesdirs +} + +pkg_postinst() { + einfo "Online Compatibility List:" + einfo " http://www.zeograd.com/compatibility_list.php" +} |