forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
descent2-vertigo-1.0.ebuild
57 lines (45 loc) · 1.2 KB
/
descent2-vertigo-1.0.ebuild
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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cdrom eutils
DESCRIPTION="Data files for Descent 2: The Vertigo Series"
HOMEPAGE="http://www.interplay.com/games/descent.php"
LICENSE="descent-data"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="videos"
RESTRICT="bindist"
S="${WORKDIR}"
src_unpack() {
cdrom_get_cds vertigo/d2x.hog:hoard.ham
case ${CDROM_SET} in
0) einfo "Found Descent 2 Vertigo Series CD" ;;
1) einfo "Found Descent 2 Vertigo Series installation" ;;
esac
cd "${CDROM_ABSMATCH%/*}" || die
eshopts_push -s globstar nocaseglob nullglob
# Strip directories
# Lowercase
# *.{hog,mn2} into data/missions
# Remainder into data
tar c \
--mode=u+w \
--ignore-case \
--xform='s:.*/::xg' \
--xform='s:.*:\L\0:x' \
--xform='s:.*\.(hog|mn2)$:data/missions/\0:x' \
--xform='s:^[^/]+$:data/\0:x' \
--exclude="$(use videos || echo '*.mvl')" \
**/{hoard.ham,d2x-h.mvl,{d2x,panic}.{hog,mn2}}* \
| tar x -C "${WORKDIR}"
assert "tar failed"
eshopts_pop
}
src_install() {
insinto /usr/share/games/d2x
doins -r data/*
}
pkg_postinst() {
elog "A client is needed to run the game, e.g. games-action/dxx-rebirth."
echo
}