|
| 1 | +#!/usr/bin/bash |
| 2 | +# |
| 3 | +# {{{ |
| 4 | +# This file and its contents are supplied under the terms of the |
| 5 | +# Common Development and Distribution License ("CDDL"), version 1.0. |
| 6 | +# You may only use this file in accordance with the terms of version |
| 7 | +# 1.0 of the CDDL. |
| 8 | +# |
| 9 | +# A full copy of the text of the CDDL should have accompanied this |
| 10 | +# source. A copy of the CDDL is also available via the Internet at |
| 11 | +# http://www.illumos.org/license/CDDL. |
| 12 | +# |
| 13 | +# }}} |
| 14 | +# |
| 15 | +# Copyright 2023 Carsten Grzemba |
| 16 | + |
| 17 | +. ../../lib/build.sh |
| 18 | + |
| 19 | +PROG=squid |
| 20 | +VER=6.7 |
| 21 | +PKG=ooce/network/proxy/squid |
| 22 | +SUMMARY="Squid WEB Proxy" |
| 23 | +DESC="Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more." |
| 24 | + |
| 25 | +OPREFIX=$PREFIX |
| 26 | +PREFIX+=/$PROG |
| 27 | +CONFPATH=/etc$PREFIX |
| 28 | +LOGPATH=/var$PREFIX/logs |
| 29 | +VARPATH=/var$PREFIX |
| 30 | +RUNPATH=$LOGPATH |
| 31 | +PIDFILE=/var/run/squid.pid |
| 32 | + |
| 33 | +set_arch 64 |
| 34 | + |
| 35 | +XFORM_ARGS=" |
| 36 | + -DOPREFIX=${OPREFIX#/} |
| 37 | + -DPREFIX=${PREFIX#/} |
| 38 | + -DPROG=$PROG |
| 39 | + -DPKGROOT=$PROG |
| 40 | + -DUSER=squid |
| 41 | + -DGROUP=squid |
| 42 | + -DPIDFILE=${PIDFILE} |
| 43 | +" |
| 44 | + |
| 45 | +CONFIGURE_OPTS=" |
| 46 | + --sysconfdir=/etc${PREFIX} |
| 47 | + --localstatedir=/var${PREFIX} |
| 48 | + --with-swapdir=/var${PREFIX}/cache |
| 49 | + --mandir=/usr/share/man |
| 50 | + --with-default-user=squid |
| 51 | + --with-logdir=/var${PREFIX}/logs |
| 52 | + --with-pidfile=${PIDFILE} |
| 53 | + --enable-large-cache-files |
| 54 | + --disable-static |
| 55 | + --with-mit-krb5 |
| 56 | + --with-ldap=/opt/ooce |
| 57 | + --with-build-environment=POSIX_V6_LP64_OFF64 |
| 58 | + --with-openssl |
| 59 | + --enable-arp-acl |
| 60 | + --enable-auth |
| 61 | + --enable-auth-basic |
| 62 | + --enable-auth-digest |
| 63 | + --enable-auth-negotiate |
| 64 | + --enable-auth-ntlm |
| 65 | + --enable-basic-auth-helpers='DB,NCSA,YP,LDAP,PAM,getpwnam,MSNT,POP3,multi-domain-NTLM,SMB,SASL' |
| 66 | + --enable-cache-digests |
| 67 | + --enable-carp |
| 68 | + --enable-coss-aio-ops |
| 69 | + --enable-delay-pools |
| 70 | + --enable-digest-auth-helpers='ldap,password' |
| 71 | + --enable-follow-x-forwarded-for |
| 72 | + --enable-forward-log |
| 73 | + --enable-forw-via-db |
| 74 | + --enable-htcp |
| 75 | + --enable-icmp |
| 76 | + --enable-large-cache-files |
| 77 | + --enable-multicast-miss |
| 78 | + --enable-negotiate-auth-helpers='squid_kerb_auth' |
| 79 | + --enable-ntlm-auth-helpers='smb_lm,fakeauth,no_check' |
| 80 | + --enable-ntlm-fail-open |
| 81 | + --enable-referer-log |
| 82 | + --enable-snmp |
| 83 | + --enable-ssl |
| 84 | + --enable-ssl-crtd |
| 85 | + --enable-zph-qos |
| 86 | + --enable-icap-client |
| 87 | + --enable-storeio='aufs,diskd,ufs' |
| 88 | + --enable-storeid-rewrite-helpers=file |
| 89 | + --enable-inline |
| 90 | + --enable-useragent-log |
| 91 | + --enable-x-accelerator-vary |
| 92 | + --enable-translation |
| 93 | + --enable-gnuregex |
| 94 | + --enable-htpc |
| 95 | + --with-aio |
| 96 | + --with-tbd |
| 97 | + --with-aufs-threads=8 |
| 98 | + --enable-wccp |
| 99 | + --enable-wccpv2 |
| 100 | + --disable-arch-native |
| 101 | + --disable-esi |
| 102 | + ac_cv_path_krb5_config=/usr/bin/krb5-config |
| 103 | + squid_cv_OpenLDAP=0 |
| 104 | +" |
| 105 | + |
| 106 | +CONFIGURE_OPTS[amd64]+=" |
| 107 | + --libdir=$PREFIX/lib/amd64 |
| 108 | +" |
| 109 | + |
| 110 | +CXXFLAGS+=" -Wno-unknown-pragmas -Wno-deprecated-declarations" |
| 111 | +export LIBLDAP_LIBS="-lldap -llber" |
| 112 | +export LIBLDAP_PATH="-L$OPREFIX/lib/amd64 " |
| 113 | +LDFLAGS[amd64]+=" -Wl,-z -Wl,ignore -L$OPREFIX/lib/amd64 -R$OPREFIX/lib/amd64" |
| 114 | + |
| 115 | +init |
| 116 | +download_source $PROG $PROG $VER |
| 117 | +patch_source |
| 118 | +prep_build |
| 119 | +build |
| 120 | +for f in squid; do |
| 121 | + xform files/$f > $TMPDIR/$f |
| 122 | +done |
| 123 | +install_execattr |
| 124 | +install_smf -oocemethod ooce $PROG.xml $PROG |
| 125 | +make_package |
| 126 | +clean_up |
| 127 | + |
| 128 | +# Vim hints |
| 129 | +# vim:ts=4:sw=4:et:fdm=marker |
0 commit comments