# # spec file for package varnish (Version 2.0.5) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild Name: varnish Version: 2.1.5 Release: 0 # License: BSD Group: Productivity/Networking/Web/Proxy # BuildRoot: %_tmppath/%name-%version-build BuildRequires: libxslt, ncurses-devel, pcre-devel %if %{suse_version} >= 1010 BuildRequires: pkg-config %else BuildRequires: pkgconfig %endif Prereq(post): %_sbindir/useradd %_sbindir/groupadd %if 0%{?suse_version} >= 1010 Recommends: logrotate %endif %define pkg_home %_localstatedir/lib/%name %define pkg_logdir %_localstatedir/log/%name %define pkg_cachedir %_localstatedir/cache/%name # URL: http://www.varnish-cache.org/ Source0: %name-%version.tar.xz # http://downloads.sourceforge.net/varnish/varnish-%version.tar.bz2 Source2: varnish.init Source3: varnish.sysconfig Source4: vcl.conf Source5: varnish.logrotate # Summary: Varnish is a high-performance HTTP accelerator BuildRequires: xz Requires: c_compiler %description Varnish is an HTTP accelerator. An HTTP accelerator (often called Reverse Proxy) is an application that stores (caches) documents that have been requested over the HTTP protocol. Based on certain criteria the next client requesting the document is either given the cached document, or a "fresh" document requested from a backend server. The purpose of this is to minimize the requests going to the backend server(s) by serving the same document to potentially many users. Authors: -------- Poul-Henning Kamp %define library_name libvarnish1 %package -n %library_name Group: Productivity/Networking/Web/Proxy # Summary: Shared libraries for Varnish %description -n %library_name Varnish is an HTTP accelerator. An HTTP accelerator (often called Reverse Proxy) is an application that stores (caches) documents that have been requested over the HTTP protocol. Based on certain criteria the next client requesting the document is either given the cached document, or a "fresh" document requested from a backend server. The purpose of this is to minimize the requests going to the backend server(s) by serving the same document to potentially many users. This package holds the shared libraries for varnish. Authors: -------- Poul-Henning Kamp %package devel Group: Development/Libraries/C and C++ Requires: %name = %version # Summary: Development files for Varnish %description devel Varnish is an HTTP accelerator. An HTTP accelerator (often called Reverse Proxy) is an application that stores (caches) documents that have been requested over the HTTP protocol. Based on certain criteria the next client requesting the document is either given the cached document, or a "fresh" document requested from a backend server. The purpose of this is to minimize the requests going to the backend server(s) by serving the same document to potentially many users. This package holds the development files for varnish. Authors: -------- Poul-Henning Kamp %prep %setup -q %build %if 0%{?suse_version} > 1000 export CFLAGS="%optflags -fstack-protector" %endif %configure --disable-static \ --localstatedir=%_localstatedir/cache/ \ --enable-developer-warnings make %{?_smp_mflags} %install %makeinstall find %buildroot -ls # There is no use for them to normal users mv %buildroot/%_bindir/* %buildroot/%_sbindir/ # # remove unneeded files # libvarnish.la has -lrt as dependency lib #rm -fv %buildroot%_libdir/*.la # ##missing directories install -d -m 0755 %buildroot{%pkg_logdir,%pkg_home} install -D -m 0644 %{S:5} %buildroot%_sysconfdir/logrotate.d/varnish # ##init scripts install -D -m 0644 %{S:3} %buildroot/var/adm/fillup-templates/sysconfig.%name install -D -m 0755 %{S:2} %buildroot%_sysconfdir/init.d/%name ln -s -f %_sysconfdir/init.d/%name %buildroot%_sbindir/rc%name # ##config files install -D -m 0644 %{S:4} %buildroot%_sysconfdir/%name/vcl.conf install -D -m 0644 %{S:4} %buildroot%_sysconfdir/%name/vcl.conf.example find "%buildroot" -type f -name "*.la" -delete mkdir -p "%buildroot/%_localstatedir/log/varnish" %pre %_bindir/getent group varnish >/dev/null || \ %_sbindir/groupadd -r varnish || : %_bindir/getent passwd varnish >/dev/null || \ %_sbindir/useradd -g varnish -s /bin/false -r -c "user for Varnish" \ -d %pkg_home varnish || : %if 0%{?suse_version} %post %fillup_and_insserv %name %preun %stop_on_removal %name %postun %restart_on_update %name %insserv_cleanup %else # how to do the same for RH/mandriva? %endif %post -n %library_name -p /sbin/ldconfig %postun -n %library_name -p /sbin/ldconfig %files %defattr(-,root,root,-) %if 0%{?suse_version} %_sbindir/rc%name /var/adm/fillup-templates/sysconfig.%name %else %config(noreplace) %_sysconfdir/sysconfig/%name %endif %config(noreplace) %_sysconfdir/init.d/%name # %dir %attr(750,root,varnish) %_sysconfdir/%name/ %config(noreplace) %attr(640,root,varnish) %_sysconfdir/%name/vcl.conf %config %attr(640,root,varnish) %_sysconfdir/%name/vcl.conf.example %config(noreplace) %attr(640,root,varnish) %_sysconfdir/%name/default.vcl # %_sbindir/* %doc %_mandir/*/* %doc ChangeLog LICENSE README %if ! 0%{?suse_version} %doc redhat/README.redhat %endif %dir %attr(750,varnish,varnish) %pkg_home %dir %attr(750,varnish,varnish) %pkg_cachedir %config(noreplace) %_sysconfdir/logrotate.d/varnish %dir %attr(750,varnish,varnish) %_localstatedir/log/varnish %files -n %library_name %defattr(-,root,root,-) %_libdir/*.so.* %files devel %defattr(-,root,root,-) %_includedir/varnish/ %_libdir/pkgconfig/* %_libdir/*.so %changelog