forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pxz-9999.ebuild
41 lines (34 loc) · 938 Bytes
/
pxz-9999.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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs flag-o-matic
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/jnovy/pxz.git"
inherit git-r3
else
MY_PV=${PV/_}
case ${MY_PV} in
*beta?*) MY_PV="${MY_PV/beta/beta.}git" ;;
esac
MY_P="${PN}-${MY_PV}"
SRC_URI="https://jnovy.fedorapeople.org/pxz/${MY_P}.tar.xz"
KEYWORDS="~amd64 ~x86"
S=${WORKDIR}/${MY_P/beta*/beta}
fi
DESCRIPTION="parallel LZMA compressor (no parallel decompression!)"
HOMEPAGE="https://jnovy.fedorapeople.org/pxz/"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
# needs the library from xz-utils
# needs the libgomp library from gcc at runtime
DEPEND="app-arch/xz-utils
sys-devel/gcc:*[openmp]"
RDEPEND="${DEPEND}"
src_prepare() {
tc-check-openmp
tc-export CC
export BINDIR="${EPREFIX}"/usr/bin
export MANDIR="${EPREFIX}"/usr/share/man
default_src_prepare
}