forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transfusion-bin-1.01.ebuild
49 lines (38 loc) · 1.14 KB
/
transfusion-bin-1.01.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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils games
MY_PN=${PN/-bin/}
DESCRIPTION="Blood remake"
HOMEPAGE="http://www.transfusion-game.com/"
SRC_URI="mirror://sourceforge/blood/${MY_PN}-1.0-linux.i386.zip
mirror://sourceforge/blood/${MY_PN}-patch-${PV}-linux.i386.zip
mirror://gentoo/${MY_PN}.png"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RESTRICT="strip"
RDEPEND="sys-libs/glibc"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/${MY_PN}
dir=${GAMES_PREFIX_OPT}/${MY_PN}
Ddir=${D}/${dir}
src_install() {
# install everything that looks anything like docs...
dodoc ${MY_PN}/doc/*.txt ${MY_PN}/*txt qw/*txt
dohtml ${MY_PN}/doc/*.html
#...then mass copy everything to the install dir...
dodir "${dir}"
cp -R * "${Ddir}" || die "cp failed"
# ...and remove the docs since we don't need them installed twice.
rm -rf \
"${Ddir}"/${MY_PN}/doc \
"${Ddir}"/qw/*txt \
"${Ddir}"/${MY_PN}/*txt
doicon "${DISTDIR}"/${MY_PN}.png
games_make_wrapper ${MY_PN} ./${MY_PN}-glx "${dir}" "${dir}"
make_desktop_entry ${MY_PN} "Transfusion" ${MY_PN}
prepgamesdirs
}