sys-apps/config-site - 99999999 (gentoo)

Search

Install

Install this version:

emerge -a =sys-apps/config-site-99999999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-apps/config-site-99999999

Or alternatively:

emerge --autounmask-write -a =sys-apps/config-site-99999999

Package Information

Description:
config.site to load dropins from config.site.d
Homepage:
https://wiki.gentoo.org/wiki/Project:Base
License:
GPL-2

Ebuild Details

Version EAPI Keywords Slot
99999999 8 ~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 0
View Raw Ebuild
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="config.site to load dropins from config.site.d"
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Base"
if [[ ${PV} == 99999999 ]] ; then
	EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/config-site.git"
	inherit git-r3
else
	SRC_URI="https://gitweb.gentoo.org/proj/config-site.git/snapshot/${P}.tar.bz2"
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi

LICENSE="GPL-2"
SLOT="0"

RDEPEND="!<sys-devel/crossdev-20230209-r1"

src_configure() {
	sed -e "s|@datarootdir@|${EPREFIX}/usr/share|" \
		config.site.in > config.site || die
}

src_install() {
	insinto /usr/share
	doins config.site
}

Inherited Eclasses

Dependencies

RDEPEND

!<sys-devel/crossdev-20230209-r1