# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit git-r3 DESCRIPTION="Simplified Wrapper and Interface Generator" HOMEPAGE="http://www.swig.org/" EGIT_REPO_URI="https://github.com/swig/swig.git" LICENSE="GPL-3+ BSD BSD-2" SLOT="0" KEYWORDS="" IUSE="ccache doc pcre" RESTRICT="test" DEPEND="pcre? ( dev-libs/libpcre ) ccache? ( sys-libs/zlib )" RDEPEND="${DEPEND}" DOCS=( ANNOUNCE CHANGES CHANGES.current README TODO ) src_prepare() { default ./autogen.sh } src_configure() { econf \ $(use_enable ccache) \ $(use_with pcre) } src_install() { default if use doc; then docinto html dodoc -r Doc/{Devel,Manual} fi }