diff options
author | Mike Gilbert <floppym@gentoo.org> | 2020-01-26 18:30:28 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2020-01-26 18:33:03 -0500 |
commit | bcb11aec5a7c5d40753e40482dc4cd12cf247bec (patch) | |
tree | b3acbb8200d4bf7036b72bee561028ecca52f48e /sys-apps/gentoo-functions/gentoo-functions-0.13.ebuild | |
parent | app-text/editorconfig-core-c: Add missing slash to fix CI (diff) | |
download | gentoo-bcb11aec5a7c5d40753e40482dc4cd12cf247bec.tar.gz gentoo-bcb11aec5a7c5d40753e40482dc4cd12cf247bec.tar.bz2 gentoo-bcb11aec5a7c5d40753e40482dc4cd12cf247bec.zip |
sys-apps/gentoo-functions: bump to 0.13
Package-Manager: Portage-2.3.85_p2, Repoman-2.3.20_p36
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-apps/gentoo-functions/gentoo-functions-0.13.ebuild')
-rw-r--r-- | sys-apps/gentoo-functions/gentoo-functions-0.13.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-apps/gentoo-functions/gentoo-functions-0.13.ebuild b/sys-apps/gentoo-functions/gentoo-functions-0.13.ebuild new file mode 100644 index 000000000000..3c1089a7586b --- /dev/null +++ b/sys-apps/gentoo-functions/gentoo-functions-0.13.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == 9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gentoo-functions.git" +else + SRC_URI="https://gitweb.gentoo.org/proj/gentoo-functions.git/snapshot/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +fi + +inherit toolchain-funcs flag-o-matic + +DESCRIPTION="base functions required by all Gentoo systems" +HOMEPAGE="https://gitweb.gentoo.org/proj/gentoo-functions.git" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +src_configure() { + tc-export CC + append-lfs-flags + export ROOTPREFIX="${EPREFIX}" + export PREFIX="${EPREFIX}/usr" +} |