# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit savedconfig DESCRIPTION=".preinit file" HOMEPAGE="http://formilux.org" LICENSE="public-domain" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" src_unpack() { mkdir -p "${S}" } src_prepare() { restore_config .preinit [[ ! -e .preinit ]] && die "Could not locate user preinit" } src_install() { insinto / doins .preinit }