# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit go-module systemd tmpfiles DESCRIPTION="High-performance HTTP server that implements restic's REST backend API" HOMEPAGE="https://github.com/restic/rest-server" SRC_URI="https://github.com/restic/rest-server/archive/v${PV}.tar.gz -> ${P}.tar.gz https://raw.githubusercontent.com/inode64/inode64-overlay/main/dist/${P}-vendor.tar.xz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="app-admin/apache-tools" src_prepare() { default sed -i -e 's|/usr/local/bin/rest-server|/usr/bin/rest-server|g' examples/systemd/rest-server.service || die sed -i -e 's|/path/to/backups|/srv/backups|g' examples/systemd/rest-server.service || die } src_configure() { export CGO_ENABLED=1 export CGO_CFLAGS="${CFLAGS}" export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" default } src_compile() { ego build -trimpath -ldflags "-s -w" -o rest-server ./cmd/rest-server || die } src_test() { ego test || die "test failed" } src_install() { dobin rest-server dodoc *.md dotmpfiles "${FILESDIR}"/${PN}.conf newinitd "${FILESDIR}/${PN}.initd" ${PN} systemd_dounit examples/systemd/rest-server.{service,socket} } pkg_postinst() { tmpfiles_process rest-server.conf }