]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - squid/squid.nm
Add a -debuginfo for every package that is not noarch.
[people/amarx/ipfire-3.x.git] / squid / squid.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = squid
7 major_ver = 3.1
8 version = %{major_ver}.16
9 release = 4
10
11 maintainer = Christian Schmidt <christian.schmidt@ipfire.org>
12 groups = Networking/Daemons
13 url = http://www.squid-cache.org/
14 license = GPLv2+
15 summary = The Squid proxy caching server.
16
17 description
18 Squid is a high-performance proxy caching server for Web clients,
19 supporting FTP, gopher, and HTTP data objects. Unlike traditional
20 caching software, Squid handles all requests in a single,
21 non-blocking, I/O-driven process. Squid keeps meta data and especially
22 hot objects cached in RAM, caches DNS lookups, supports non-blocking
23 DNS lookups, and implements negative caching of failed requests.
24 end
25
26 source_dl = http://www.squid-cache.org/Versions/v3/%{major_ver}/
27
28 build
29 requires
30 gcc-c++
31 libxml2-devel
32 openssl-devel
33 openldap-devel
34 samba-devel
35 iptables-devel
36 pam-devel
37 libcap-devel
38 /usr/bin/smbclient
39 shadow-utils
40 end
41
42 CFLAGS += -Wno-error
43
44 configure_options += \
45 --datadir=/usr/lib/squid \
46 --libexecdir=/usr/lib/squid \
47 --localstatedir=/var \
48 --sysconfdir=/etc/squid \
49 --with-logdir=/var/log/squid \
50 --enable-storeio="aufs,diskd,ufs" \
51 --enable-removal-policies="heap,lru" \
52 --enable-icmp \
53 --enable-delay-pools \
54 --disable-esi \
55 --enable-icap-client \
56 --enable-useragent-log \
57 --enable-referrer-log \
58 --enable-wccp \
59 --enable-wccpv2 \
60 --enable-kill-parent-hack \
61 --enable-snmp \
62 --enable-arp-acl \
63 --enable-ipf-transparent \
64 --enable-htcp \
65 --enable-ssl \
66 --enable-forw-via-db \
67 --disable-cache-digests \
68 --enable-poll \
69 --enable-select \
70 --disable-kqueue \
71 --enable-epoll \
72 --enable-http-violations \
73 --enable-linux-netfilter \
74 --disable-ident-lookups \
75 --enable-internal-dns \
76 --enable-auth=basic,ntlm \
77 --enable-basic-auth-helpers="LDAP,MSNT,multi-domain-NTLM,PAM,NCSA,SMB,squid_radius_auth" \
78 --enable-ntlm-auth-helpers="smb_lm,no_check,fakeauth" \
79 --enable-ntlm-fail-open \
80 --with-filedescriptors=16384 \
81 --enable-unlinkd \
82 --with-pthreads \
83 --with-aio \
84 --with-dl \
85 --with-large-files
86
87 prepare_cmds
88 %{create_user}
89 end
90
91 install_cmds
92 rm -vf %{BUILDROOT}/etc/squid/errors
93
94 mkdir -pv %{BUILDROOT}/var/log/cache %{BUILDROOT}/var/log/squid
95 touch %{BUILDROOT}/var/log/squid/access.log
96 touch %{BUILDROOT}/var/log/squid/cache.log
97 mkdir -pv %{BUILDROOT}/var/cache/squid
98
99 echo "visible_hostname %{DISTRO_NAME}" >> %{BUILDROOT}/etc/squid/squid.conf
100 echo "cache_effective_user squid" >> %{BUILDROOT}/etc/squid/squid.conf
101 echo "cache_effective_group squid" >> %{BUILDROOT}/etc/squid/squid.conf
102
103 chown -Rv squid:squid %{BUILDROOT}/var/log/squid %{BUILDROOT}/var/log/cache %{BUILDROOT}/var/cache/squid
104 chmod 600 %{BUILDROOT}/var/cache/squid
105 mkdir -pv %{BUILDROOT}/etc/sysconfig
106 cp -vf %{DIR_SOURCE}/squid.sysconfig %{BUILDROOT}/etc/sysconfig/squid
107 cp -vf %{DIR_SOURCE}/cache_swap.sh %{BUILDROOT}/usr/lib/squid/
108 chmod 755 %{BUILDROOT}/usr/lib/squid/cache_swap.sh
109 chown -Rv squid:squid %{BUILDROOT}/usr/lib/squid/cache_swap.sh
110 end
111 end
112
113 create_user
114 getent group squid >/dev/null || /usr/sbin/groupadd -r squid
115 getent passwd squid >/dev/null || /usr/sbin/useradd -r -g squid \
116 -d /var/cache/squid -s /sbin/nologin squid
117 end
118
119 packages
120 package %{name}
121 prerequires = shadow-utils systemd-units
122
123 configfiles
124 /etc/squid.conf
125 /etc/sysconfig/squid
126 end
127
128 script prein
129 %{create_user}
130 end
131
132 script postin
133 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
134 end
135
136 script preun
137 /bin/systemctl --no-reload disable squid.service >/dev/null 2>&1 || :
138 /bin/systemctl stop squid.service >/dev/null 2>&1 || :
139 end
140
141 script postun
142 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
143 end
144
145 script postup
146 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
147 /bin/systemctl try-restart squid.service >/dev/null 2>&1 || :
148 end
149
150 requires = /usr/bin/smbclient
151
152 filter_requires = perl\(Authen::Smb\)
153 end
154
155 package %{name}-debuginfo
156 template DEBUGINFO
157 end
158 end