blob: 2c753219ab904194d5928bec0c858e5016b9e191 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="C library for manipulating tar archives"
HOMEPAGE="https://repo.or.cz/w/libtar.git/"
SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="static-libs zlib"
RDEPEND="
zlib? ( sys-libs/zlib:= )
!zlib? ( app-arch/gzip )
"
DEPEND="${RDEPEND}"
DOCS=( ChangeLog{,-1.0.x} README TODO )
S="${WORKDIR}/${PN}"
# There is no test and 'check' target errors out due to mixing of automake &
# non-automake makefiles.
# https://bugs.gentoo.org/show_bug.cgi?id=526436
RESTRICT="test"
PATCHES=(
"${FILESDIR}"/${PN}-1.2.11-free.patch
"${FILESDIR}"/${PN}-1.2.11-impl-dec.patch
"${FILESDIR}"/CVE-2013-4420.patch
"${FILESDIR}"/${P}-fd-leaks.patch
"${FILESDIR}"/${P}-tar_open-memleak.patch
"${FILESDIR}"/${P}-bin-memleaks.patch
)
src_prepare() {
default
sed -e '/INSTALL_PROGRAM/s:-s::' \
-i {doc,lib{,tar}}/Makefile.in || die
eautoreconf
}
src_configure() {
local myeconfargs=(
--enable-shared
--disable-encap
--disable-epkg-install
$(use_enable static-libs static)
$(use_with zlib)
)
econf ${myeconfargs[@]}
}
src_install() {
default
newdoc compat/README README.compat
newdoc compat/TODO TODO.compat
newdoc listhash/TODO TODO.listhash
find "${D}" -name '*.la' -delete || die
}
|