mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
Done via: ``` git grep -l 'virtual/zlib ' | xargs sed -i -e 's@virtual/zlib @virtual/zlib:= @g' ``` with some manual reverts. Signed-off-by: Michał Górny <mgorny@gentoo.org>
113 lines
3.4 KiB
Bash
113 lines
3.4 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Web caching proxy suitable for non-permanent Internet connections"
|
|
HOMEPAGE="https://www.gedanken.org.uk/software/wwwoffle/"
|
|
SRC_URI="https://www.gedanken.org.uk/software/${PN}/download/${P}.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 ~riscv ~sparc x86"
|
|
IUSE="gnutls zlib"
|
|
|
|
RDEPEND="
|
|
acct-group/wwwoffle
|
|
acct-user/wwwoffle
|
|
gnutls? ( net-libs/gnutls:= )
|
|
zlib? ( virtual/zlib:= )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
app-alternatives/lex
|
|
dev-lang/perl
|
|
"
|
|
# Unsure whether to depend on >=www-misc/htdig-3.1.6-r4 or not
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-2.9j-lto.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -e 's#$(TAR) xpf #$(TAR) --no-same-owner -xpf #' -i cache/Makefile.in || die
|
|
}
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--with-ipv6
|
|
$(use_with gnutls)
|
|
$(use_with zlib)
|
|
)
|
|
|
|
CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
keepdir /var/spool/wwwoffle/search/hyperestraier/db
|
|
|
|
# documentation fix
|
|
# del empty doc dirs
|
|
rmdir "${ED}/usr/doc/${PN}"/{it,nl,ru} || die
|
|
dodir /usr/share/doc
|
|
mv "${ED}/usr/doc/${PN}" "${ED}/usr/share/doc/${PF}" || die
|
|
rmdir "${ED}/usr/doc" || die
|
|
|
|
# install the wwwoffled init script
|
|
newinitd "${FILESDIR}/${PN}.initd" wwwoffled
|
|
newinitd "${FILESDIR}/${PN}-online.initd" wwwoffled-online
|
|
newconfd "${FILESDIR}/${PN}-online.confd" wwwoffled-online
|
|
|
|
keepdir /var/spool/wwwoffle/{http,outgoing,monitor,lasttime,lastout,local}
|
|
for number in 1 2 3 4 5 6 7 8 9; do
|
|
keepdir "/var/spool/wwwoffle/prevtime${number}" "/var/spool/wwwoffle/prevout${number}"
|
|
done
|
|
|
|
# empty dirs are removed during update
|
|
keepdir /var/spool/wwwoffle/search/{mnogosearch/db,htdig/tmp,htdig/db-lasttime,htdig/db,namazu/db}
|
|
|
|
touch "${ED}/var/spool/wwwoffle/search/htdig/wwwoffle-htdig.log"
|
|
touch "${ED}/var/spool/wwwoffle/search/mnogosearch/wwwoffle-mnogosearch.log"
|
|
touch "${ED}/var/spool/wwwoffle/search/namazu/wwwoffle-namazu.log"
|
|
|
|
# TODO htdig indexing as part of initscripts
|
|
|
|
# robots.txt modification - /var/spool/wwwoffle/html/en
|
|
# - remove Disallow: /index
|
|
sed -e "s|Disallow:.*/index|#Disallow: /index|" -i "${ED}/var/spool/wwwoffle/html/en/robots.txt" || die
|
|
}
|
|
|
|
pkg_preinst() {
|
|
# Changing the user:group to wwwoffle:woffle
|
|
fowners -R wwwoffle:wwwoffle /var/spool/wwwoffle /etc/wwwoffle
|
|
sed \
|
|
-e 's/^[# \t]\(run-[gu]id[ \t]*=[ \t]*\)[a-zA-Z0-9]*[ \t]*$/ \1wwwoffle/g' \
|
|
-i "${ED}/etc/wwwoffle/wwwoffle.conf" || die
|
|
|
|
}
|
|
|
|
pkg_postinst() {
|
|
# fix permissions for those upgrading
|
|
local number
|
|
for number in 1 2 3 4 5 6 7 8 9;
|
|
do
|
|
[[ ! -d "${EROOT}/var/spool/wwwoffle/prevtime${number}" ]] && \
|
|
keepdir "${EROOT}/var/spool/wwwoffle/prevtime${number}"
|
|
[[ ! -d "${EROOT}/var/spool/wwwoffle/prevout${number}" ]] && \
|
|
keepdir "${EROOT}/var/spool/wwwoffle/prevout${number}"
|
|
done
|
|
|
|
[[ -f "${T}/stopped" ]] && ewarn "wwwoffled was stopped. /etc/init.d/wwwoffled start to restart AFTER etc-update"
|
|
|
|
einfo "wwwoffled should run as an ordinary user now. The run-uid and run-gid should be set"
|
|
einfo "to \"wwwoffle\" in your /etc/wwwoffle/wwwoffle.conf. Please uncomment this if it hasn't been already"
|
|
|
|
einfo "This is for your own security. Otherwise wwwoffle is run as root which is relay bad if"
|
|
einfo "there is an exploit in this program that allows remote/local users to execute arbitary"
|
|
einfo "commands as the root user."
|
|
}
|