blob: a5d67cf62e71784762cceffe1044010ad98cb282 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/dzip/dzip-2.9-r2.ebuild,v 1.2 2009/05/31 02:39:49 nyhm Exp $
EAPI=2
inherit eutils games
DESCRIPTION="compressor/uncompressor for demo recordings from id's Quake"
HOMEPAGE="http://speeddemosarchive.com/dzip/"
SRC_URI="http://speeddemosarchive.com/dzip/dz${PV/./}src.zip"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}
src_prepare() {
epatch \
"${FILESDIR}"/${P}-system-zlib.patch \
"${FILESDIR}"/${P}-scrub-names.patch #93079
rm -rf zlib
mv -f Makefile{.linux,}
}
src_install () {
dogamesbin dzip || die "dogamesbin failed"
dodoc Readme || die "dodoc failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
elog "Demo files can be found at http://planetquake.com/sda/"
elog "and http://planetquake.com/qdq/"
echo
}
|