]> git.pld-linux.org Git - packages/apache1-mod_snake.git/blobdiff - apache1-mod_snake.spec
- confdir enabled apache1 (no triggers as it wasn't on ftp)
[packages/apache1-mod_snake.git] / apache1-mod_snake.spec
index 3c24b6eef1d19053ff962d50eac030eb4c4e9dad..876d1d161a812a34e0b0624dd255e98c1a95f9a8 100644 (file)
@@ -1,22 +1,28 @@
+# NOTE
+# - This project is RIP since Thu May 9 19:00:01 PDT 2002
+# - and doesn't compile anyway
 %define                mod_name        snake
-%define        apxs            /usr/sbin/apxs
+%define        apxs            /usr/sbin/apxs1
 Summary:       An Apache module to allow for Python plugins and control
 Summary(pl):   Modu³ do Apache pozwalaj±cy na kontrolê i wtyczki Pythona
-Name:          apache-mod_%{mod_name}
+Name:          apache1-mod_%{mod_name}
 Version:       0.5.0
-Release:       2
+Release:       1.1
 License:       GPL
 Group:         Networking/Daemons
-Source0:       ftp://ftp.sourceforge.net/pub/sourceforge/mod%{mod_name}/mod_%{mod_name}-%{version}.tar.gz
+Source0:       http://dl.sourceforge.net/mod%{mod_name}/mod_%{mod_name}-%{version}.tar.gz
+# Source0-md5: 7c043871a66a8579c6fec561c5d6cb84
+Patch0:                %{name}-dumb_acam.patch
 URL:           http://modsnake.sourceforge.net/
 BuildRequires: %{apxs}
-BuildRequires: apache-devel >= 1.3.15
+BuildRequires: apache1-devel >= 1.3.33-2
 BuildRequires: python-devel >= 1.5
-Requires(post,preun):  %{apxs}
-Requires:      apache
+Requires:      apache1 >= 1.3.33-2
+Obsoletes:     apache-mod_%{mod_name} <= %{version}
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-%define                _pkglibdir      %(%{apxs} -q LIBEXECDIR)
+%define                _pkglibdir      %(%{apxs} -q LIBEXECDIR 2>/dev/null)
+%define                _sysconfdir     %(%{apxs} -q SYSCONFDIR 2>/dev/null)
 
 %description
 mod_snake is an Apache module which allows for execution of Python
@@ -29,11 +35,12 @@ internals of the webserver.
 mod_snake to modu³ Apache pozwalaj±cy na wykonywanie kodu Pythona
 bezpo¶rednio w procesie serwera Apache. W³±czaj±c interpreter do
 procesu Apache skrypty CGI w Pythonie s± znacznie przyspieszone.
-Python mo¿e byæ umieszczany w HTMLu oraz modu³y Pythona mog±
-kontrolowaæ wewnêtrzne sprawy serwera www.
+Python mo¿e byæ umieszczany w HTML-u oraz modu³y Pythona mog±
+kontrolowaæ wewnêtrzne sprawy serwera WWW.
 
 %prep
 %setup -q -n mod_%{mod_name}-%{version}
+%patch0 -p0
 
 %build
 %configure2_13 \
@@ -43,27 +50,29 @@ kontrolowa
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{_pkglibdir}
+install -d $RPM_BUILD_ROOT{%{_pkglibdir},%{_sysconfdir}/conf.d}
 
 install mod_%{mod_name}.so $RPM_BUILD_ROOT%{_pkglibdir}
 
+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
-%{apxs} -e -a -n %{mod_name} %{_pkglibdir}/mod_%{mod_name}.so 1>&2
-if [ -f /var/lock/subsys/httpd ]; then
-       /etc/rc.d/init.d/httpd restart 1>&2
+if [ -f /var/lock/subsys/apache ]; then
+       /etc/rc.d/init.d/apache restart 1>&2
 fi
 
 %preun
 if [ "$1" = "0" ]; then
-       %{apxs} -e -A -n %{mod_name} %{_pkglibdir}/mod_%{mod_name}.so 1>&2
-       if [ -f /var/lock/subsys/httpd ]; then
-               /etc/rc.d/init.d/httpd restart 1>&2
+       if [ -f /var/lock/subsys/apache ]; then
+               /etc/rc.d/init.d/apache restart 1>&2
        fi
 fi
 
 %files
 %defattr(644,root,root,755)
+%attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/conf.d/*_mod_%{mod_name}.conf
 %attr(755,root,root) %{_pkglibdir}/*
This page took 0.088583 seconds and 4 git commands to generate.