blob: 30eee172a9f47128f1ac710a34c92648b7632ef1 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PV="$(ver_rs 1 '-')"
MY_P=${PN}${MY_PV}
DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss"
HOMEPAGE="https://argtable.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
S="${WORKDIR}"/${MY_P}
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
IUSE="doc debug examples static-libs"
PATCHES=(
"${FILESDIR}"/${PN}-2.13-Fix-implicit-function-declaration.patch
)
src_configure() {
econf \
$(use_enable debug) \
$(use_enable static-libs static)
}
src_install() {
default
rm -rf "${ED}"/usr/share/doc/${PF}/
if use doc ; then
cd "${S}"/doc || die
dodoc *.pdf *.ps
docinto html
dodoc *.html *.gif
fi
if use examples ; then
cd "${S}"/example || die
docinto examples
dodoc Makefile *.[ch] README.txt
fi
find "${ED}" -name "*.la" -delete || die "failed to delete .la files"
}
|