blob: 12dd58fbb5c1d9a8f0b5dcf8da9f698afdc20f91 (
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
|
# Copyright 2002-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_P=xdelta3-${PV}
DESCRIPTION="Computes changes between binary or text files and creates deltas"
HOMEPAGE="http://xdelta.org/"
SRC_URI="https://github.com/jmacd/xdelta-gpl/releases/download/v${PV}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="3"
KEYWORDS="~alpha amd64 ~arm64 hppa ~ia64 ppc ppc64 sparc x86"
IUSE="examples lzma"
RDEPEND="lzma? ( app-arch/xz-utils:= )"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P}
src_configure() {
econf \
$(use_with lzma liblzma)
}
src_compile() {
# avoid building tests
emake xdelta3
}
src_test() {
emake xdelta3regtest
./xdelta3regtest || die
}
src_install() {
emake DESTDIR="${D}" install-binPROGRAMS install-man1
dodoc draft-korn-vcdiff.txt README.md
use examples && dodoc -r examples
}
|