blob: e06ab68c5f623c516f22eacf29e4732887967b9c (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools toolchain-funcs
MY_PN="${PN%-c}"
DESCRIPTION="The ANTLR3 C Runtime"
HOMEPAGE="https://www.antlr3.org/"
SRC_URI="https://github.com/${MY_PN}/${MY_PN}3/archive/${PV}.tar.gz -> ${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}3-${PV}/runtime/C"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug doc"
BDEPEND="doc? ( app-text/doxygen[dot] )"
PATCHES=(
"${FILESDIR}/3.5-cflags.patch"
"${FILESDIR}/3.5-autoconf.patch"
)
src_prepare() {
default
sed -i '/^QUIET/s/NO/YES/' doxyfile || die
eautoreconf
}
src_configure() {
local econfargs=(
$(use_enable debug antlrdebug)
)
case "$(tc-get-ptr-size)" in
8) econfargs+=( --enable-64bit ) ;;
4) econfargs+=( --disable-64bit ) ;;
esac
CONFIG_SHELL="${BROOT}"/bin/bash econf "${econfargs[@]}"
}
src_compile() {
default
if use doc ; then
einfo "Generating API documentation ..."
doxygen -u doxyfile || die
doxygen doxyfile || die
HTML_DOCS=( "${S}"/api/ )
fi
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|