diff options
Diffstat (limited to 'app-portage/no-distcc-env/no-distcc-env-9999.ebuild')
-rw-r--r-- | app-portage/no-distcc-env/no-distcc-env-9999.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-portage/no-distcc-env/no-distcc-env-9999.ebuild b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild new file mode 100644 index 000000000000..3a4ae008947a --- /dev/null +++ b/app-portage/no-distcc-env/no-distcc-env-9999.ebuild @@ -0,0 +1,36 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/${PN}.git" + +if [[ ${PV} = 9999* ]]; then + GIT_ECLASS="git-r3" +fi + +inherit ${GIT_ECLASS} + +DESCRIPTION="package.env files to disable distcc on a per-package basis" +HOMEPAGE="https://gitweb.gentoo.org/proj/no-distcc-env.git/" +if [[ ${PV} = 9999* ]]; then + SRC_URI="" +else + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" + SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="public-domain" +SLOT="0" +IUSE="" + +src_unpack() { + default + [[ $PV = 9999* ]] && git-r3_src_unpack +} + +src_install() { + insinto /etc/portage + doins -r "${WORKDIR}/${P}"/env + doins -r "${WORKDIR}/${P}"/package.env +} |