# # Replace MODNAME with real module name. # Replace VERSION with version since what confdir support was introduced for the module. # %define mod_name MODNAME %define apxs %{_sbindir}/apxs1 Summary: Apache module: ... Summary(pl): Moduł Apache'a: ... Name: apache1-mod_%{mod_name} Version: - Release: 0.1 License: - (enter Apache/GPL/LGPL/BSD/BSD-like/other license name here) Group: Networking/Daemons Source0: - # Source0-md5: - Source1: %{name}.conf URL: - BuildRequires: apache1-devel >= 1.3.33-2 Requires(triggerpostun): %{apxs} Requires(triggerpostun): grep Requires: apache1 Conflicts: apache1 < 1.3.33-2 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %define _pkglibdir %(%{apxs} -q LIBEXECDIR 2>/dev/null) %define _sysconfdir %(%{apxs} -q SYSCONFDIR 2>/dev/null) %description MODNAME is Apache module... %description -l pl %prep %setup -q -n mod_%{mod_name}-%{version} %build %{apxs} -c mod_%{mod_name}.c -o mod_%{mod_name}.so %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT{%{_pkglibdir},%{_sysconfdir}/conf.d} install mod_%{mod_name}.so $RPM_BUILD_ROOT%{_pkglibdir} # module configuration # - should contain LoadModule line # - and directives must be between IfModule (so user could disable the module easily) install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/90_mod_%{mod_name}.conf # or, if no directives needed, put just LoadModule line echo "LoadModule %{mod_name}_module modules/mod_%{mod_name}.so" > \ $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/90_mod_%{mod_name}.conf %clean rm -rf $RPM_BUILD_ROOT %post if [ -f /var/lock/subsys/apache ]; then /etc/rc.d/init.d/apache restart 1>&2 fi %preun if [ "$1" = "0" ]; then if [ -f /var/lock/subsys/apache ]; then /etc/rc.d/init.d/apache restart 1>&2 fi fi # trigger for upgrading from pre confdir module # if they had Include modulename.conf %triggerpostun -- %{name} < VERSION if grep -q '^Include conf\.d' /etc/apache/apache.conf; then %{apxs} -e -A -n %{mod_name} %{_pkglibdir}/mod_%{mod_name}.so 1>&2 sed -i -e ' /^Include.*mod_%{mod_name}.conf/d ' /etc/apache/apache.conf else # they're still using old apache.conf sed -i -e ' s,^Include.*mod_%{mod_name}.conf,Include %{_sysconfdir}/conf.d/*_mod_%{mod_name}.conf, ' /etc/apache/apache.conf fi if [ -f /var/lock/subsys/apache ]; then /etc/rc.d/init.d/apache restart 1>&2 fi # or it was just apxs %triggerpostun -- apache1-mod_%{mod_name} < VERSION # check that they're not using old apache.conf if grep -q '^Include conf\.d' /etc/apache/apache.conf; then %{apxs} -e -A -n %{mod_name} %{_pkglibdir}/mod_%{mod_name}.so 1>&2 fi %files %defattr(644,root,root,755) %doc README %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/conf.d/*_mod_%{mod_name}.conf %attr(755,root,root) %{_pkglibdir}/*