blob: ccb048d72320c9afff2f26090a0adc33d28137f1 (
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
28
29
30
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/noegnud-data/noegnud-data-0.8.0.ebuild,v 1.7 2004/12/16 15:11:05 josejx Exp $
inherit games eutils
# for more info on these themes visit:
# http://noegnud.sourceforge.net/downloads.shtml
# absurd itakura mazko abigabi geoduck lagged aoki falconseye
GUI_THEME=absurd
# falconseye nhs
SND_THEME=falconseye
DESCRIPTION="ultimate User Interface for nethack"
HOMEPAGE="http://noegnud.sourceforge.net/"
SRC_URI="mirror://sourceforge/noegnud/noegnud-${PV}_data-tileset-${GUI_THEME}.tar.bz2
mirror://sourceforge/noegnud/noegnud-${PV}_data-sound-${SND_THEME}.tar.bz2"
LICENSE="nethack"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE=""
S=${WORKDIR}/noegnud-${PV}/data
src_install() {
dodir ${GAMES_DATADIR}/noegnud_data
cp -r * ${D}/${GAMES_DATADIR}/noegnud_data/
prepgamesdirs
}
|