blob: a59449e81f92c858ab699ce3742f991afd90a087 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/pixz/pixz-1.0.2.ebuild,v 1.3 2013/02/18 01:00:53 vapier Exp $
EAPI=4
inherit toolchain-funcs flag-o-matic eutils
DESCRIPTION="Parallel Indexed XZ compressor"
HOMEPAGE="https://github.com/vasi/pixz"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/vasi/pixz.git"
inherit git-2
KEYWORDS=""
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
KEYWORDS="~amd64 ~arm ~x86"
fi
LICENSE="BSD-2"
SLOT="0"
IUSE="static"
LIB_DEPEND=">=app-arch/libarchive-2.8[static-libs(+)]
>=app-arch/xz-utils-5[static-libs(+)]"
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
DEPEND="${RDEPEND}
static? ( ${LIB_DEPEND} )"
src_prepare() {
epatch "${FILESDIR}"/${P}-lm.patch
}
src_configure() {
use static && append-ldflags -static
}
src_compile() {
emake CC="$(tc-getCC)" OPT=""
}
src_install() {
dobin pixz
doman pixz.1
dodoc README TODO
}
|