You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.7 KiB
62 lines
1.7 KiB
4 years ago
|
# Copyright 1999-2020 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
if [[ ${PV} = 9999 ]]; then
|
||
|
EGIT_REPO_URI="https://github.com/just-containers/${PN}"
|
||
|
inherit git-r3
|
||
|
else
|
||
|
SRC_URI="https://github.com/just-containers/${PN}/archive/v${PV}.tar.gz ->
|
||
|
${P}.tar.gz"
|
||
|
KEYWORDS="~amd64"
|
||
|
fi
|
||
|
|
||
|
DESCRIPTION="an s6-based init system for containers"
|
||
|
HOMEPAGE="https://github.com/just-containers/s6-overlay"
|
||
|
|
||
|
LICENSE="ISC"
|
||
|
SLOT="0"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="sys-apps/s6
|
||
|
sys-apps/s6-portable-utils"
|
||
|
|
||
|
src_install() {
|
||
|
dodoc *.md
|
||
|
cd builder/overlay-rootfs
|
||
|
dobin usr/bin/{fix-attrs,logutil*,print*,with*}
|
||
|
|
||
|
insinto /
|
||
|
doins -r etc init
|
||
|
|
||
|
# create must exist directories
|
||
|
dodir /etc/{cont-init.d,cont-finish.d,fix-attrs.d,services.d}
|
||
|
dodir /etc/s6/init/env-stage2
|
||
|
|
||
|
# create "supervise" directory in fdholder, its needed for no-catchall
|
||
|
# stage2 wake up
|
||
|
dodir /etc/s6/services/s6-fdholderd/supervise
|
||
|
fperms 0700 /etc/s6/services/s6-fdholderd/supervise
|
||
|
|
||
|
# fix misc permissions
|
||
|
fperms 0755 /init
|
||
|
fperms 0755 /etc/s6/init/init-stage1 \
|
||
|
/etc/s6/init/init-stage2 \
|
||
|
/etc/s6/init/init-stage2-redirfd \
|
||
|
/etc/s6/init/init-stage3
|
||
|
fperms 0755 /etc/s6/init-catchall/init-stage1 \
|
||
|
/etc/s6/init-catchall/init-stage2
|
||
|
fperms 0755 /etc/s6/init-no-catchall/init-stage1 \
|
||
|
/etc/s6/init-no-catchall/init-stage2
|
||
|
fperms 0755 /etc/s6/services/.s6-svscan/crash
|
||
|
fperms 0755 /etc/s6/services/.s6-svscan/finish
|
||
|
fperms 0755 /etc/s6/services/s6-fdholderd/run
|
||
|
fperms 0755 /etc/s6/services/s6-svscan-log/run
|
||
|
|
||
|
# create a stub for the s6-overlay-preinit setuid program, since
|
||
|
# it's really not needed when permissions are already correct
|
||
|
dosym true /bin/s6-overlay-preinit
|
||
|
}
|