blob: 884a7ef7f3f14c0ecc64586f9f01388979a20d26 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils games
DESCRIPTION="Improved models & textures for doomsday"
HOMEPAGE="http://www.doomsdayhq.com/"
SRC_URI="mirror://sourceforge/deng/jdoom-resource-pack-${PV}.zip
mirror://sourceforge/deng/jdoom-details.zip"
LICENSE="free-noncomm" #505636
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=games-fps/doomsday-1.9.8"
DEPEND="app-arch/unzip"
S=${WORKDIR}
src_install() {
insinto "${GAMES_DATADIR}"/doomsday/data/jdoom/auto
doins data/jDoom/* *.pk3
# The definitions file cannot be auto-loaded
insinto "${GAMES_DATADIR}"/doomsday/defs/jdoom
doins defs/jDoom/*
dodoc *.txt docs/*
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "Add the following to the jdoom/doomsday command-line options:"
elog " -def ${GAMES_DATADIR}/doomsday/defs/jdoom/jDRP.ded"
}
|