The build uses a non-standard envvar, but even with that it needs a
minor fix to avoid a hardcoded pkg-config invocation.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
EAPI=7
+inherit toolchain-funcs
+
DESCRIPTION="Simplified Wrapper and Interface Generator"
HOMEPAGE="http://www.swig.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
DOCS=( ANNOUNCE CHANGES CHANGES.current README TODO )
+src_prepare() {
+ default
+ # https://github.com/swig/swig/pull/1796
+ sed -i \
+ -e '/if pkg-config javascriptcoregtk-1.0/s:pkg-config:$PKGCONFIG:' \
+ configure || die
+}
+
src_configure() {
econf \
+ PKGCONFIG="$(tc-getPKG_CONFIG)" \
$(use_enable ccache) \
$(use_with pcre)
}