# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" DESCRIPTION="Cfengine masterfiles policy" HOMEPAGE="http://www.cfengine.org/" SRC_URI="https://cfengine-package-repos.s3.amazonaws.com/tarballs/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" RDEPEND="${DEPEND}" PDEPEND="" src_configure() { econf \ --prefix="${EPREFIX}"/usr/share/"${PN}" } src_install() { emake DESTDIR="${D}" install || die # fix ifconfig path in provided promises find "${D}"/usr/share -name "*.cf" | xargs sed -i "s,/sbin/ifconfig,$(which ifconfig),g" }