# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit user fcaps DESCRIPTION="Fast, cross-platform HTTP/2 web server with automatic HTTPS" HOMEPAGE="https://github.com/mholt/caddy" SRC_URI="https://github.com/caddyserver/caddy/releases/download/v${PV}/caddy_v${PV}_linux_amd64.tar.gz" KEYWORDS="amd64" LICENSE="Apache-2.0" SLOT="0" IUSE="" RDEPEND="!www-servers/caddy" FILECAPS=( cap_net_bind_service+ep /usr/bin/caddy ) RESTRICT="test mirror" S="${WORKDIR}" pkg_setup() { enewgroup http enewuser caddy -1 -1 /var/lib/caddy http } src_install() { dobin caddy newinitd "${FILESDIR}"/caddy.initd caddy newconfd "${FILESDIR}"/caddy.confd caddy diropts -o caddy -g root -m 750 /var/lib/caddy }