blob: 3dae89137302fbf071d6a896a38e3616ca54bcdb (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.1.5.ebuild,v 1.2 2009/11/02 17:58:48 vostorga Exp $
inherit eutils toolchain-funcs
DESCRIPTION="A parallel implementation of gzip."
HOMEPAGE="http://www.zlib.net/pigz/"
SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz"
LICENSE="PIGZ"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="test"
RDEPEND="sys-libs/zlib"
DEPEND="${RDEPEND}
test? ( app-arch/ncompress )"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-respect-flags.patch
}
src_compile() {
tc-export CC
emake || die "make failed"
}
src_install() {
dobin ${PN} || die "Failed to install"
dodoc README
}
|