smlinux/net/privoxy/privoxy.SMBuild
PktSurf 4a7a115ed4 Fixed CFLAGS in extra/{feh,v4l-utils} and gtk/libunique
Upgraded net/samba to 4.18.0
Discarded doinst.sh from extra/{mpv,v4l-utils} and gtk/{gcr,goffice,gsettings-desktop-schemas}
Discarded gtk/gtk-sharp
Repositioned nand-utils source extraction code inside a subshell in extra/mtd-utils
Discarded code to remove tests in gtk/{atkmm,cairomm,libsoup}
Disabled tests in build option of gtk/{gdk-pixbuf,gtk3,libdazzle}
Fixed mkdir code in gtk/{gegl,gnome-desktop,gobject-introspection,libdazzle,libglade,libmanette} for aiding in resuming build
Rewrote gtk/gnome-icon-theme pc file in the build file itself
Fixed gtk/gtk2's doinst.sh
Disabled static libraries compile in gtk/openjpeg
Updated buildlist of net
Fixed net/privoxy build file
2023-03-16 23:19:14 +05:30

57 lines
1.4 KiB
Text
Executable file

app=privoxy
version=3.0.33
build=1sml
homepage="https://www.privoxy.org/"
download="https://www.privoxy.org/sf-download-mirror/Sources/$version%20%28stable%29/privoxy-$version-stable-src.tar.gz"
desc="Web proxy with advanced filtering capabilities"
requires="zlib pcre"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
# Put the docs where we tell them to go:
sed -i "/^DOC_DEST/s/= .*/= @docdir@/" GNUmakefile.in
# The Makefile checks if certain config files exist, and if so, adds a
# .new suffix. Turn this behavior off. We will do it below.
sed -i "s/\[ -s \"\$(CONF_DEST)\/\$\$i\" \]/false/" GNUmakefile.in
autoreconf -vif
}
build() {
./configure \
--prefix="" \
--sbindir=/bin \
--sysconfdir=/etc/"$app" \
--localstatedir=/var \
--with-docbook=no \
--with-user=nobody \
--enable-no-gifs \
--enable-compression \
--enable-large-file-support
make
make install DESTDIR=$pkg
(
cd $pkg/etc/privoxy
for f in config match-all.action regression-tests.action trust user.action user.filter ;
do mv $f $f.new
done
)
mv $pkg/share/doc/LICENSE $pkgdocs/
install -Dm 755 $srcdir/rc.privoxy $pkg/etc/rc.d/rc.privoxy
mkfinalpkg
}
sha512sums="
081eab421edad8c2d24c82e2e36a9dd63376844c22ffdae5f41aff187d6c279ba1bf4c1de90815b49f9bea71f68941c201189278c185c235a14949efeaa1dd99 privoxy-3.0.33.tar.lz
"