blob: 0e1c063f069f8c69617a24ec47d82c7fb2d6ae89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/hugo/hugo-2.12.ebuild,v 1.2 2006/02/10 19:58:35 wolf31o2 Exp $
inherit games
DESCRIPTION="PC-Engine (Turbografx16) emulator for linux"
HOMEPAGE="http://www.zeograd.com/"
SRC_URI="http://www.zeograd.com/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="x11-libs/gtk+
media-libs/libsdl
media-libs/libvorbis"
src_install() {
dogamesbin hugo || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r pixmaps || die "doins gamedata failed"
dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
dohtml doc/*html
prepgamesdirs
}
|