mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Update done using: ``` git grep -l sys-libs/zlib net-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Followed by revert in net-misc/turbovnc. Signed-off-by: Michał Górny <mgorny@gentoo.org>
121 lines
3.0 KiB
Bash
121 lines
3.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake systemd
|
|
|
|
PAR2_TURBO_VER="1.2.0-nzbget-20250213"
|
|
DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
|
|
HOMEPAGE="https://nzbget.com/"
|
|
SRC_URI="
|
|
parcheck? (
|
|
https://github.com/nzbgetcom/par2cmdline-turbo/archive/v${PAR2_TURBO_VER}.tar.gz
|
|
-> nzbgetcom-par2turbo-${PAR2_TURBO_VER}.tar.gz
|
|
)
|
|
https://github.com/nzbgetcom/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm ~arm64 ppc x86"
|
|
IUSE="ncurses +parcheck ssl test zlib"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="
|
|
dev-libs/boost:=
|
|
dev-libs/libxml2:=
|
|
ncurses? ( sys-libs/ncurses:0= )
|
|
ssl? ( dev-libs/openssl:0=[-bindist(-)] )
|
|
zlib? ( virtual/zlib:= )"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
acct-user/nzbget
|
|
acct-group/nzbget
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
|| (
|
|
app-arch/rar
|
|
app-arch/unrar
|
|
)
|
|
)
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
DOCS=( ChangeLog.md README.md nzbget.conf )
|
|
|
|
PATCHES=(
|
|
# Required to use par2-turbo downloaded into the source directory
|
|
"${FILESDIR}/${PN}-24.6-build-with-par2-turbo-offline.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
if use parcheck; then
|
|
mv "${WORKDIR}/par2cmdline-turbo-${PAR2_TURBO_VER}" par2-turbo || die
|
|
fi
|
|
cmake_src_prepare
|
|
|
|
# Update the main configuration file with the correct paths
|
|
sed -i nzbget.conf \
|
|
-e "s:^WebDir=.*:WebDir=${EPREFIX}/usr/share/nzbget/webui:" \
|
|
-e "s:^ConfigTemplate=.*:ConfigTemplate=${EPREFIX}/usr/share/nzbget/nzbget.conf:" \
|
|
|| die
|
|
# Update the daemon-specific configuration file (used by the OpenRC and
|
|
# systemd services)
|
|
sed nzbget.conf > nzbgetd.conf \
|
|
-e "s:^MainDir=.*:MainDir=${EPREFIX}/var/lib/nzbget:" \
|
|
-e "s:^LogFile=.*:LogFile=${EPREFIX}/var/log/nzbget/nzbget.log:" \
|
|
-e 's:^DaemonUsername=.*:DaemonUsername=nzbget:' \
|
|
|| die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DDISABLE_CURSES=$(usex !ncurses)
|
|
-DDISABLE_PARCHECK=$(usex !parcheck)
|
|
-DDISABLE_TLS=$(usex !ssl)
|
|
-DDISABLE_GZIP=$(usex !zlib)
|
|
-DENABLE_TESTS=$(usex test)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
insinto /etc
|
|
doins nzbget.conf
|
|
doins nzbgetd.conf
|
|
|
|
# The configuration file's "ConfigTemplate" option points to this, we must
|
|
# make sure it exists as the Web UI reads it. It is not installed by
|
|
# default, see the "install-conf" target in cmake/install.cmake.
|
|
insinto /usr/share/nzbget
|
|
doins nzbget.conf
|
|
|
|
keepdir /var/log/nzbget
|
|
|
|
newinitd "${FILESDIR}"/nzbget.initd-r1 nzbget
|
|
newconfd "${FILESDIR}"/nzbget.confd nzbget
|
|
systemd_dounit "${FILESDIR}"/nzbget.service
|
|
}
|
|
|
|
pkg_preinst() {
|
|
fowners nzbget:nzbget /var/log/nzbget
|
|
fperms 750 /var/log/nzbget
|
|
|
|
fowners nzbget:nzbget /etc/nzbgetd.conf
|
|
fperms 640 /etc/nzbgetd.conf
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if [[ -z ${REPLACING_VERSIONS} ]] ; then
|
|
elog
|
|
elog "Please add users that you want to be able to use the system-wide"
|
|
elog "nzbget daemon to the nzbget group. To access the daemon, run nzbget"
|
|
elog "with the --configfile /etc/nzbgetd.conf option."
|
|
elog
|
|
fi
|
|
}
|