blob: 862ace2923256c00254874ea59209fe452cef8ea (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-demodata/quake1-demodata-1.06.ebuild,v 1.1 2006/06/19 20:17:41 wolf31o2 Exp $
inherit eutils versionator games
MY_PV=$(delete_all_version_separators)
MY_PN="quake"
DESCRIPTION="Demo data for Quake 1"
HOMEPAGE="http://en.wikipedia.org/wiki/Quake_I"
SRC_URI="mirror://idsoftware/${MY_PN}/${MY_PN}${MY_PV}.zip"
# See licinfo.txt
LICENSE="quake1-demodata"
SLOT="0"
KEYWORDS="~x86"
IUSE="symlink"
RESTRICT=""
DEPEND="app-arch/lha"
S=${WORKDIR}
dir=${GAMES_DATADIR}/${MY_PN}1
src_unpack() {
unpack ${A}
lha eq resource.1 || die "lha failed"
# Don't want to conflict with the cdinstall files
mv id1 demo
}
src_install() {
insinto "${dir}"
doins -r demo || die "doins -r failed"
dodoc *.txt
if use symlink ; then
# Make the demo the default, so that people can just run it,
# without having to mess with command-line options.
cd "${D}/${dir}" && ln -sfn demo id1
fi
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
einfo "This is just the demo data."
einfo "You will still need a Quake 1 client, to play, such as darkplaces."
echo
if use symlink ; then
einfo "id1 has been symlinked to demo, for convenience, within:"
einfo "${dir}"
echo
fi
}
|