blob: c900d1f8401844d74e104a9b430da2e8203fbe27 (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/duke3d-data/duke3d-data-1.0.ebuild,v 1.7 2013/02/02 18:53:30 hasufell Exp $
inherit eutils cdrom games
DESCRIPTION="Duke Nukem 3D data files"
HOMEPAGE="http://www.3drealms.com/"
SRC_URI=""
LICENSE="DUKE3D"
SLOT="0"
KEYWORDS="~amd64 hppa ppc x86"
IUSE=""
DEPEND=""
RDEPEND="|| ( games-fps/eduke32 games-fps/duke3d )"
S=${WORKDIR}
src_unpack() {
export CDROM_NAME_SET=("Existing Install" "Duke Nukem 3D CD")
cdrom_get_cds duke3d.grp:dvd/dn3dinst/duke3d.grp
if [[ ${CDROM_SET} -ne 0 && ${CDROM_SET} -ne 1 ]] ; then
die "Error locating data files.";
fi
}
src_install() {
local DATAROOT
case ${CDROM_SET} in
0) DATAROOT= ;;
1) DATAROOT="dn3dinst/" ;;
esac
insinto "${GAMES_DATADIR}"/duke3d
doins "${CDROM_ROOT}"/$DATAROOT/{duke3d.grp,duke.rts,game.con,user.con,demo2.dmo,defs.con,demo1.dmo} \
|| die "doins failed"
prepgamesdirs
}
|