mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-proxy/ziproxy: drop 3.3.2
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
@@ -1,86 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit flag-o-matic
|
||||
|
||||
DESCRIPTION="A forwarding, non-caching, compressing web proxy server"
|
||||
HOMEPAGE="http://ziproxy.sourceforge.net/"
|
||||
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~riscv ~sparc ~x86"
|
||||
IUSE="sasl xinetd"
|
||||
|
||||
RDEPEND="
|
||||
acct-group/ziproxy
|
||||
acct-user/ziproxy
|
||||
media-libs/giflib:=
|
||||
media-libs/libpng:=
|
||||
media-libs/libjpeg-turbo:=
|
||||
sys-libs/zlib
|
||||
sasl? ( dev-libs/cyrus-sasl )
|
||||
xinetd? ( virtual/inetd )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-Fix-clang-build-errors.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# fix sample config file
|
||||
sed -i \
|
||||
-e "s:/var/ziproxy/:/var/lib/ziproxy/:g" \
|
||||
-e "s:%j-%Y.log:/var/log/ziproxy/%j-%Y.log:g" \
|
||||
etc/ziproxy/ziproxy.conf || die
|
||||
|
||||
# fix sample xinetd config
|
||||
sed -i \
|
||||
-e "s:/usr/bin/:/usr/sbin/:g" \
|
||||
-e "s:\(.*port.*\):\1\n\ttype\t\t\t= UNLISTED:g" \
|
||||
-e "s:root:ziproxy:g" \
|
||||
etc/xinetd.d/ziproxy || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# -Werror=lto-type-mismatch
|
||||
# https://bugs.gentoo.org/861863
|
||||
# Upstream is sourceforge and has been dead for 3 years. No upstream bug reported.
|
||||
filter-lto
|
||||
|
||||
econf \
|
||||
--without-jasper \
|
||||
$(use_with sasl sasl2) \
|
||||
--with-cfgfile=/etc/ziproxy/ziproxy.conf
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
dodir /usr/sbin
|
||||
mv -vf "${ED}"/usr/{,s}bin/ziproxy || die
|
||||
|
||||
dobin src/tools/ziproxy_genhtml_stats.sh
|
||||
|
||||
newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
|
||||
newconfd "${FILESDIR}"/${PN}.confd ${PN}
|
||||
|
||||
insinto /etc
|
||||
doins -r etc/ziproxy
|
||||
|
||||
insinto /var/lib/ziproxy/error
|
||||
doins var/ziproxy/error/*.html
|
||||
|
||||
if use xinetd; then
|
||||
insinto /etc/xinetd.d
|
||||
doins etc/xinetd.d/ziproxy
|
||||
fi
|
||||
|
||||
diropts -m0750 -o ziproxy -g ziproxy
|
||||
keepdir /var/log/ziproxy
|
||||
}
|
||||
Reference in New Issue
Block a user