You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
61 lines
1.1 KiB
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
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 debugger doc"
|
|
|
|
BDEPEND="doc? ( app-doc/doxygen[dot] )"
|
|
|
|
PATCHES=( "${FILESDIR}/3.5-cflags.patch" )
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i '/^QUIET/s/NO/YES/' doxyfile || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local econfargs=(
|
|
$(use_enable debug debuginfo)
|
|
$(use_enable debugger antlrdebug)
|
|
)
|
|
|
|
case "${ABI}" in
|
|
*64*) econfargs+=( --enable-64bit ) ;;
|
|
*) 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
|
|
}
|