Subversion Repositories ALCASAR

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 1342

/conf/rpms/i586/wget-1.14-4.mga4.i586.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/i586/nfdump-1.6.9-0.i586.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/i586/coova-chilli-1.3.0-0.mga2.i586.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/i586/havp-0.92a-1.1.mga2.i586.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/x86_64/wget-1.14-4.mga4.x86_64.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/x86_64/nfdump-1.6.9-0.x86_64.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/x86_64/coova-chilli-1.3.0-0.mga2.x86_64.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/x86_64/havp-0.92a-1.1.mga2.x86_64.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/havp-0.92a-1.1.spec
0,0 → 1,105
Summary: HTTP anti-virus proxy filter
Name: havp
Version: 0.92a
Release: %mkrel 1.1%{?dist}
License: GPLv2+
Group: Security
URL: http://www.server-side.de/
Source: http://www.server-side.de/download/havp-%{version}.tar.gz
Packager: Francois Crosnier (Crox) ALCASAR team
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: clamav-devel
 
%description
HAVP (HTTP AntiVirus proxy) is a proxy with an anti-virus filter.
It does not cache or filter content. At the moment the complete
traffic is scanned. The reason for this is the chance of malicious
code in nearly every filetype e.g. HTML (JavaScript) or Jpeg.
 
I aim to stop especially dialer or browser exploits. But writing
a http Anti Virus Proxy is a real dilemma! Huge downloads are
a problem for virus scanning proxies. A Client should not receive
data which is unchecked by the virus scanner, but big downloads
should not timeout.
 
%prep
%setup
 
%build
%configure
%make
 
%install
rm -rf %{buildroot}
install -d %{buildroot}%{_initrddir}
cp etc/init.d/havp %{buildroot}%{_initrddir}/havp
install -d %{buildroot}%{_localstatedir}/run/havp/
install -d %{buildroot}%{_localstatedir}/log/havp/
%makeinstall
 
%pre
if ! /usr/bin/id havp &>/dev/null; then
/usr/sbin/useradd -r -d %{_localstatedir}/log/havp -s /bin/sh -c "havp" havp || \
%logmsg "Unexpected error adding user \"havp\". Aborting installation."
fi
 
%post
/sbin/chkconfig --add havp
 
%preun
if [ $1 -eq 0 ]; then
/sbin/service havp stop &>/dev/null || :
/sbin/chkconfig --del havp
fi
 
%postun
if [ $1 -eq 0 ]; then
/usr/sbin/userdel havp || %logmsg "User \"havp\" could not be deleted."
fi
 
%files
%defattr(-, root, root, 0755)
%doc ChangeLog COPYING INSTALL update-conf
%config %{_sysconfdir}/havp/
%config %{_initrddir}/havp
%{_sbindir}/havp
 
%defattr(-, havp, havp, 0755)
%{_localstatedir}/log/havp/
%{_localstatedir}/run/havp/
 
%changelog
* Tue Apr 30 2013 Crox <ptitois@gmail.com> - 0.92-1.1
- Created .spec file to build rpms for Mageia2 (x86_64 & i586).
- Created two rpms : havp-0.92a-1-1.mga2.x86_64.rpm & havp-0.92a-1-1.mga2.i586.rpm
 
* Sun Nov 21 2010 Rexy <richard@rexy.fr> - 0.92-1
- Updated to release 0.92a.
 
* Sun May 9 2010 Rexy <richard@irexy.fr> - 0.91-1
- Updated to release 0.91.
 
* Tue Apr 7 2009 Dries Verachtert <dries@ulyssis.org> - 0.90-1
- Updated to release 0.90.
 
* Wed Aug 13 2008 Dries Verachtert <dries@ulyssis.org> - 0.89-1
- Updated to release 0.89.
 
* Sun Apr 20 2008 Dries Verachtert <dries@ulyssis.org> - 0.88-1
- Updated to release 0.88.
 
* Mon Jul 23 2007 Dries Verachtert <dries@ulyssis.org> - 0.86-1
- Updated to release 0.86.
 
* Tue Aug 22 2006 Dag Wieers <dag@wieers.com> - 0.7.9-1
- Cosmetic changes.
 
* Wed May 31 2006 Bernard 'Tux' Lheureux <tux at portalinux dot org> 0.7.9-2
- Corrected the specfile to make it installable on CentOS 4.x
- Created and applied some patches to make it chkconfig compatible
- Created and applied a patch to make config reflect the correct location of the files
 
* Tue May 30 2006 Jim Perrin <jperrin at gmail dot com> 0.7.9-1
- Initial build for CentOS,
- Specfile generation... still some work to do...
 
/conf/rpms/coova-chilli-1.3.0.spec
0,0 → 1,107
%define _disable_ld_no_undefined 1
 
Summary: Wireless LAN Access Point Controller
Name: coova-chilli
Version: 1.3.0
Release: %mkrel 0%{?dist}
License: GPLv3
Packager: Francois Crosnier (Crox) ALCASAR team
Group: System/Servers
URL: http://coova.org/wiki/index.php/CoovaChilli
Source0: http://ap.coova.org/chilli/%{name}-%{version}.tar.gz
Requires(pre): rpm-helper
Requires(postun): rpm-helper
BuildRequires: libtool
Provides: coova-chilli = %{version}-%{release}
Obsoletes: chillispot
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
 
%description
Coova-Chilli is a fork of the ChilliSpot project - an open source captive
portal or wireless LAN access point controller. It supports web based login
(Universal Access Method, or UAM), standard for public HotSpots, and it
supports Wireless Protected Access (WPA), the standard for secure roamable
networks. Authentication, Authorization and Accounting (AAA) is handled by
your favorite radius server. Read more at http://coova.org/ and
http://www.chillispot.org/.
 
%prep
%setup -q -n %{name}-%{version}
 
%build
%configure2_5x \
--disable-static \
--enable-shared \
--enable-largelimits \
--enable-chilliredir \
--enable-chilliproxy \
--enable-chilliscript \
--with-poll
%make
 
%post
%_post_service chilli
 
%preun
%_preun_service chilli
 
%install
rm -rf %{buildroot}
%makeinstall_std
 
%clean
rm -rf %{buildroot}
 
%files
%defattr(-,root,root)
%{_sbindir}/*
%{_libdir}/*.so*
%doc AUTHORS COPYING ChangeLog INSTALL README doc/dictionary.chillispot doc/hotspotlogin.cgi
%config %{_sysconfdir}/chilli.conf
%config %{_sysconfdir}/chilli/gui-config-default.ini
%config(noreplace) %{_sysconfdir}/chilli/defaults
%dir %{_sysconfdir}/chilli
%{_sysconfdir}/init.d/chilli
%{_sysconfdir}/chilli/wwwsh
%{_sysconfdir}/chilli/functions
%{_sysconfdir}/chilli/*.sh
%{_mandir}/man1/*.1*
%{_mandir}/man5/*.5*
%{_mandir}/man8/*.8*
%exclude %{_sysconfdir}/chilli/www/*
%exclude %{_includedir}/chilli*
%exclude %{_libdir}/*.la*
%exclude %{_libdir}/python/CoovaChilliLib.py
 
%changelog
* Tue May 14 2013 Crox for ALCASAR project
- 1.3.0 release (Limited for ALCASAR project)
* Mon Jun 18 2012 Rexy for ALCASAR project
- 1.2.9-1 release
* Wed Jan 18 2012 Rexy for ALCASAR project
- 1.2.9 release
* Sun Jul 11 2011 Rexy for ALCASAR project
- 1.2.8 release
* Sat Feb 12 2011 Rexy for Alcasar project
+ revision: 433
+ add _disable_ld_no_undefined 1
- 1.2.6 release
* Sat Nov 20 2010 Rexy for Alcasar project
+ revision: 394
- 1.2.5 release
* Sat Jan 2 2010 <david@coova.com>
- 1.2.0 release
* Thu Sep 30 2007 <david@coova.com>
- 1.0.8 release
* Thu Aug 20 2007 <david@coova.com>
- 1.0-coova.7 release
* Thu Jun 7 2007 <david@coova.com>
- 1.0-coova.6 release
* Wed May 16 2007 <david@coova.com>
- 1.0-coova.5 release
* Wed Feb 07 2007 <david@coova.com>
- 1.0-coova.4 release
* Wed Nov 15 2006 <david@coova.com>
- 1.0-coova.3 release
* Thu Mar 25 2004 <support@chillispot.org>
- Initial release.
/conf/rpms/rpm-build-howto-old
0,0 → 1,37
By Rexy
 
Création des RPM spécifiques pour Alcasar
 
**** préparation de la structure de création de RPM ***
- installer le paquetage rpm-build
- récupérer le "RPM Source" de la dernière version 'packagée' par mandriva de coova-chilli (dans le répertoire SRPMS du dépôt 'contrib' de la cooker ftp.free.fr/pub/Distributions_Linux/MandrivaLinux/devel/cooker/SRPMS/contrib/release/)
- en tant que root, lancer "urpmi" du paquetage récupéré. Cela permet d'installer les dépendances en terme de biliothèques de développment (*-devel.rpm)
- en tant qu'utilisateur, lancer rpm -i du paquetage récupéré afin d'installer la structure de création du RPM dans ~/rpmbuild
- pour tester cette structure, se positionner dans le répertoire ~/rpmbuild/SPEC/ et lancer la génération du RPM (rpmbuild -ba coova-chilli.spec)
- si tout est ok, les RPMs sont créés dans le répertoire ~/rpmbuild/RPMS. Supprimer ces RPM
 
**** Coova-chilli *****
- récupérer le 'tarball' de la dernière version de coova-chilli.
- Le décompresser dans un répertoire et lancer la compilation traditionnelle (./configure + make). Cela permet de s'assurer que tout les pré-requis sont bien présents.
- tester l'install en tant que root (make install). Tout est dans /usr/local/sbin|etc|share|... désinstaller par "make uninstall"
- copier le tarball dans ~/rpmbuild/SOURCES/
### pour versions antérieures à 1.2.5 de coova ####
- récupérer le .spec de la version 1.2.5 et l'adaptater (version, packager, commentaires, etc.) + commenter
- la ligne 104 ('--with-openssl \') : on n'a pas besoin du support openssl (la compil avec openssl ne fonctionne pas. On supprime openssl car dans ALCASAR, on passe par apache pour le chiffrement)
- la ligne 171 (affectation des fichiers "header" dans le RPM coova-devel)
- Le patch d'origine de mandriva (1.0.12-linkage_fix.diff) n'est plus nécessaire. Cependant un nouveau doit être appliqué :
- le but est de supprimer l'option de compilation "-Werror" de la ligne "AM CFLAGS" du fichier src/makefile.am (directive spécifiant au compilateur de traiter les warning comme des erreurs).
- copier le makefile.am d'origine en makefile.am.patch et modifier la ligne AM CFLAGS (vers la ligne 15)
- créer le fichier patch unifié en lançant "diff -u makefile.am makefile.am.patch > mon_patch.diff
- copié ce fichier sous rpmbuild/SOURCES avec le nom spécifié dans le .spec
- se positionner dans rpmbuild/SPEC et lancer la génération du RPM (rpmbuild -ba coova-chilli.spec)
### pour version supérieures ou égales à 1.2.6 de coova ####
- copier et adapter le .spec utilisé précédement. Les modifs ont été les suivantes :
- ajouter en première ligne "%define _disable_ld_no_undefined 1"
- pour la version 64b, ajouter 2 lignes intégrant le répertoire "lib64" lors de la suppression des binaires statiques (rm -rf $RPM_BUILD_ROOT/usr/lib/*.la)
- se positionner dans rpmbuild/SPEC et lancer la génération du RPM en supprimant le support ssl (rpmbuild -ba coova-chilli.spec --without ssl)
 
**** HAVP ****
- récupérer le tarball de la dernière version d'HAVP. Le décompresser dans un répertoire et tester la compilation traditionnelle (./configure + make)
- copier ce tarball dans ~/rpmbuild/SOURCES/
- adaptation du fichier .spec (version, packager, commentaires, etc.)
/conf/rpms/rpm-build-howto
0,0 → 1,32
By Rexy
 
ALCASAR need the following programs that don't be included as RPM in Mageia :
- coovachilli
- havp
- ulogd
 
This howto explain how to build RPM of these programs in order to keep clean the distribution
 
**** Prepare the RPM creation structure ***
- install the "rpm-build" paquage
- create directories structure in your user home : mkdir -p ~/rpm/{BUILD,BUILDROOT,RPMS/i586,RPMS/x86_64,RPMS/noarch,SOURCES,SRPMS,SPECS,tmp}
- copy the .rpmmacros file from the ALCASAR archive to your home directory
 
**** Coova-chilli *****
- retrieve the last tarball of coova-chilli. Copy it in the directory ~/rpm/SOURCES/.
- retrieve the last rpm source of coova (coova.src.rpm) from the ALCASAR archive. Install it with the command "rpm -i". This action will retrieve all the devel package need to compile coova (openssl-devel, pcap-devel, etc.)
- copy the SPEC file from the ALCASAR archive to the directory ~/rpm/SPEC
 
- Le décompresser dans un répertoire et lancer la compilation traditionnelle (./configure + make). Cela permet de s'assurer que tout les pré-requis sont bien présents.
- tester l'install en tant que root (make install). Tout est dans /usr/local/sbin|etc|share|... désinstaller par "make uninstall"
- copier le tarball dans ~/rpmbuild/SOURCES/
 
- copier et adapter le .spec utilisé précédement. Les modifs ont été les suivantes :
- ajouter en première ligne "%define _disable_ld_no_undefined 1"
- pour la version 64b, ajouter 2 lignes intégrant le répertoire "lib64" lors de la suppression des binaires statiques (rm -rf $RPM_BUILD_ROOT/usr/lib/*.la)
- se positionner dans rpmbuild/SPEC et lancer la génération du RPM en supprimant le support ssl (rpmbuild -ba coova-chilli.spec --without ssl)
 
**** HAVP ****
- récupérer le tarball de la dernière version d'HAVP. Le décompresser dans un répertoire et tester la compilation traditionnelle (./configure + make)
- copier ce tarball dans ~/rpmbuild/SOURCES/
- adaptation du fichier .spec (version, packager, commentaires, etc.)
Property changes:
Added: svn:keywords
+Id Date Author
\ No newline at end of property
/conf/rpms/coova-chilli-1.2.9.spec
0,0 → 1,129
%define _disable_ld_no_undefined 1
 
Summary: Coova-Chilli is a LAN Access Point Controller
Name: coova-chilli
Version: 1.2.9
Release: %mkrel 1
URL: http://coova.org/wiki/index.php/CoovaChilli
Source0: http://ap.coova.org/chilli/%{name}-%{version}.tar.gz
License: GPLv2
Group: System/Servers
Packager: Rexy for ALCASAR project
Requires(pre): rpm-helper
Requires(postun): rpm-helper
 
BuildRequires: autoconf
BuildRequires: libtool
BuildRequires: curl-devel
BuildRequires: pcap-devel
BuildRequires: python
BuildRequires: python-devel
%if %{!?_without_ssl:1}0
BuildRequires: openssl-devel
%endif
Provides: coova-chilli = %{version}-%{release}
Obsoletes: chillispot
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
 
%description
 
Coova-Chilli is a fork of the ChilliSpot project - an open source captive
portal or wireless LAN access point controller. It supports web based login
(Universal Access Method, or UAM), standard for public HotSpots, and it
supports Wireless Protected Access (WPA), the standard for secure roamable
networks. Authentication, Authorization and Accounting (AAA) is handled by
your favorite radius server. Read more at http://coova.org/.
 
%prep
%setup -q -n %{name}-%{version}
 
%build
 
%configure \
--disable-static \
--enable-shared \
--enable-largelimits \
--enable-miniportal \
--enable-chilliredir \
--enable-chilliproxy \
--enable-chilliscript \
--with-poll \
%if %{!?_without_ssl:1}0
--with-openssl \
--enable-chilliradsec \
%endif
 
 
make
 
%install
make install DESTDIR=$RPM_BUILD_ROOT
 
rm -rf $RPM_BUILD_ROOT/usr/include/*
rm -rf $RPM_BUILD_ROOT/usr/lib/*.la
rm -rf $RPM_BUILD_ROOT/usr/lib/*.a
rm -rf $RPM_BUILD_ROOT/usr/lib64/*.la
rm -rf $RPM_BUILD_ROOT/usr/lib64/*.a
 
%clean
rm -rf $RPM_BUILD_ROOT
make clean
 
%post
%_post_service chilli
 
%preun
%_preun_service chilli
 
%files
%defattr(-,root,root)
%{_sbindir}/*
%{_libdir}/*.so*
%{_libdir}/python/CoovaChilliLib.py
%{_sysconfdir}/init.d/chilli
%doc AUTHORS COPYING ChangeLog INSTALL README doc/dictionary.chillispot doc/hotspotlogin.cgi
%config %{_sysconfdir}/chilli.conf
%config %{_sysconfdir}/chilli/gui-config-default.ini
%config(noreplace) %{_sysconfdir}/chilli/defaults
%dir %{_sysconfdir}/chilli
%dir %{_sysconfdir}/chilli/www
%attr(755,root,root)%{_sysconfdir}/chilli/www/config.sh
%attr(4750,root,chilli)%{_sbindir}/chilli_script
%{_sysconfdir}/chilli/www/*
%{_sysconfdir}/chilli/wwwsh
%{_sysconfdir}/chilli/functions
%{_sysconfdir}/chilli/*.sh
%{_mandir}/man1/*.1*
%{_mandir}/man5/*.5*
%{_mandir}/man8/*.8*
 
%changelog
* Mon Jun 18 2012 Rexy for ALCASAR project
- 1.2.9-1 release
* Wed Jan 18 2012 Rexy for ALCASAR project
- 1.2.9 release
* Sun Jul 11 2011 Rexy for ALCASAR project
- 1.2.8 release
* Sat Feb 12 2011 Rexy for Alcasar project
+ revision: 433
+ add _disable_ld_no_undefined 1
- 1.2.6 release
* Sat Nov 20 2010 Rexy for Alcasar project
+ revision: 394
- 1.2.5 release
* Sat Jan 2 2010 <david@coova.com>
- 1.2.0 release
* Thu Sep 30 2007 <david@coova.com>
- 1.0.8 release
* Thu Aug 20 2007 <david@coova.com>
- 1.0-coova.7 release
* Thu Jun 7 2007 <david@coova.com>
- 1.0-coova.6 release
* Wed May 16 2007 <david@coova.com>
- 1.0-coova.5 release
* Wed Feb 07 2007 <david@coova.com>
- 1.0-coova.4 release
* Wed Nov 15 2006 <david@coova.com>
- 1.0-coova.3 release
* Thu Mar 25 2004 <support@chillispot.org>
- Initial release.
/conf/rpms/coova-chilli-1.2.1-6mdv2011.0.src.rpm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/conf/rpms/coova-chilli-1.2.5.spec
0,0 → 1,219
%define _disable_ld_no_undefined 1
 
%define major 0
%define libname %mklibname chilli %{major}
%define develname %mklibname -d chilli
 
Summary: Wireless LAN Access Point Controller
Name: coova-chilli
Version: 1.2.5
Release: %mkrel 0
License: GPLv2
Group: System/Servers
URL: http://coova.org/wiki/index.php/CoovaChilli
Source0: http://ap.coova.org/chilli/%{name}-%{version}.tar.gz
Patch0: coova-chilli-1.2.5-rexy_fix.diff
Requires(pre): rpm-helper
Requires(postun): rpm-helper
Requires: python-coova-chilli
BuildRequires: autoconf
BuildRequires: libtool
BuildRequires: curl-devel
BuildRequires: openssl-devel
BuildRequires: pcap-devel
BuildRequires: python
BuildRequires: python-devel
Provides: coova-chilli = %{version}-%{release}
Obsoletes: chillispot
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
 
%description
Coova-Chilli is a fork of the ChilliSpot project - an open source captive
portal or wireless LAN access point controller. It supports web based login
(Universal Access Method, or UAM), standard for public HotSpots, and it
supports Wireless Protected Access (WPA), the standard for secure roamable
networks. Authentication, Authorization and Accounting (AAA) is handled by
your favorite radius server. Read more at http://coova.org/ and
http://www.chillispot.org/.
 
%package -n %{libname}
Summary: Shared libraries for %{name}
Group: System/Libraries
 
%description -n %{libname}
Coova-Chilli is a fork of the ChilliSpot project - an open source captive
portal or wireless LAN access point controller. It supports web based login
(Universal Access Method, or UAM), standard for public HotSpots, and it
supports Wireless Protected Access (WPA), the standard for secure roamable
networks. Authentication, Authorization and Accounting (AAA) is handled by
your favorite radius server. Read more at http://coova.org/ and
http://www.chillispot.org/.
 
This package contains the shared libraries for %{name}.
 
%package -n %{develname}
Summary: Static library and header files for the %{name} library
Group: Development/C
Provides: %{name}-devel = %{version}
Provides: lib%{name}-devel = %{version}
Requires: %{libname} = %{version}
 
%description -n %{develname}
Coova-Chilli is a fork of the ChilliSpot project - an open source captive
portal or wireless LAN access point controller. It supports web based login
(Universal Access Method, or UAM), standard for public HotSpots, and it
supports Wireless Protected Access (WPA), the standard for secure roamable
networks. Authentication, Authorization and Accounting (AAA) is handled by
your favorite radius server. Read more at http://coova.org/ and
http://www.chillispot.org/.
 
This package contains the static %{name} library and its header files.
 
%package -n python-coova-chilli
Summary: CoovaChilli Python Library
Group: Development/Python
Obsoletes: python-coova-chilli < %{version}-%{release}
 
%description -n python-coova-chilli
CoovaChilli Python Library
 
%prep
%setup -q -n %{name}-%{version}
%patch0 -p0
 
# fix strange perms
find . -type d -perm 0700 -exec chmod 755 {} \;
find . -type f -perm 0555 -exec chmod 755 {} \;
find . -type f -perm 0444 -exec chmod 644 {} \;
 
# cleanup cvs junk
for i in `find . -type d -name CVS` `find . -type f -name .cvs\*` `find . -type f -name .#\*`; do
if [ -e "$i" ]; then rm -rf $i; fi >&/dev/null
done
 
%build
autoreconf -fi
%serverbuild
 
%configure2_5x \
--enable-static-exec \
--enable-miniportal \
--enable-chilliredir \
--enable-chilliproxy \
--enable-largelimits \
--with-openssl \
--with-mmap \
--with-pcap \
--with-curl
 
%make
 
%install
rm -rf %{buildroot}
 
%makeinstall_std
 
install -d %{buildroot}%{_initrddir}
mv %{buildroot}%{_sysconfdir}/init.d/chilli %{buildroot}%{_initrddir}/chilli
 
install -d %{buildroot}%{py_puresitedir}/CoovaChilli
mv %{buildroot}%{_libdir}/python/CoovaChilliLib.py %{buildroot}%{py_puresitedir}/CoovaChilli/
 
%post
%_post_service chilli
 
%preun
%_preun_service chilli
 
%if %mdkversion < 200900
%post -n %{libname} -p /sbin/ldconfig
%endif
 
%if %mdkversion < 200900
%postun -n %{libname} -p /sbin/ldconfig
%endif
 
%clean
rm -rf %{buildroot}
 
%files
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog README doc/dictionary.chillispot doc/hotspotlogin.cgi
%attr(0755,root,root) %{_initrddir}/chilli
%attr(0644,root,root) %config %{_sysconfdir}/chilli.conf
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/chilli/defaults
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/chilli/gui-config-default.ini
%dir %{_sysconfdir}/chilli
%dir %{_sysconfdir}/chilli/www
%attr(0755,root,root) %{_sysconfdir}/chilli/www/config.sh
%{_sysconfdir}/chilli/www/*
%{_sysconfdir}/chilli/wwwsh
%{_sysconfdir}/chilli/functions
%{_sysconfdir}/chilli/*.sh
%attr(0755,root,root) %{_sbindir}/chilli
%attr(0755,root,root) %{_sbindir}/chilli_opt
%attr(0755,root,root) %{_sbindir}/chilli_proxy
%attr(0755,root,root) %{_sbindir}/chilli_query
%attr(0755,root,root) %{_sbindir}/chilli_radconfig
%attr(0755,root,root) %{_sbindir}/chilli_redir
%attr(0755,root,root) %{_sbindir}/chilli_response
%{_mandir}/man1/*.1*
%{_mandir}/man5/*.5*
%{_mandir}/man8/*.8*
 
%files -n %{libname}
%defattr(-,root,root)
%{_libdir}/lib*.so.%{major}*
 
%files -n %{develname}
%defattr(-,root,root)
%{_libdir}/*.so
%{_libdir}/*.*a
%{_includedir}/chilli/*.h
 
%files -n python-coova-chilli
%defattr(-,root,root,0755)
%{py_puresitedir}/CoovaChilli/CoovaChilliLib.py
 
 
%changelog
* Sat Nov 20 2010 Rexy for Alcasar project 1.2.5-0mdv2010.1
+ revision: 394
- rebuild
 
* Wed Apr 21 2010 Funda Wang <fwang@mandriva.org> 1.2.1-5mdv2010.1
+ Revision: 537318
- rebuild
 
* Fri Feb 19 2010 Funda Wang <fwang@mandriva.org> 1.2.1-4mdv2010.1
+ Revision: 508395
- should not be noarch
 
* Fri Feb 19 2010 Funda Wang <fwang@mandriva.org> 1.2.1-3mdv2010.1
+ Revision: 508393
- rebuild
 
* Wed Feb 03 2010 Frederic Crozat <fcrozat@mandriva.com> 1.2.1-2mdv2010.1
+ Revision: 500319
- force rebuild
 
* Tue Feb 02 2010 Oden Eriksson <oeriksson@mandriva.com> 1.2.1-1mdv2010.1
+ Revision: 499569
- whoops!
- second try at this annoying python crap!
- fix deps (thanks misc)
- another try
- 1.2.1
- 1.0.13
- rediffed patches
 
+ Thierry Vignaud <tv@mandriva.org>
- rebuild
 
* Wed Dec 17 2008 Oden Eriksson <oeriksson@mandriva.com> 1.0.12-1mdv2009.1
+ Revision: 315139
- import coova-chilli
 
 
* Wed Dec 17 2008 Oden Eriksson <oeriksson@mandriva.com> 1.0.12-1mdv2009.0
- initial Mandriva package
/conf/rpms/havp-init.diff
0,0 → 1,17
--- etc/init.d/havp 2006-03-24 14:23:00.000000000 +0100
+++ etc/init.d/havp 2006-05-31 14:21:46.000000000 +0200
@@ -8,9 +8,12 @@
# HAVP_BIN HAVP_CONFIG PIDFILE
# Any configuration of HAVP is done in havp.config
# Type havp --help for help and read havp.config you should have received.
+# chkconfig: 2345 11 89
+# description: starts HAVP the High Availability Antivirus Proxy
+#
-HAVP_BIN=/usr/local/sbin/havp
-HAVP_CONFIG=/usr/local/etc/havp/havp.config
+HAVP_BIN=/usr/sbin/havp
+HAVP_CONFIG=/etc/havp/havp.config
PIDFILE=/var/run/havp/havp.pid
# Return values acc. to LSB for all commands but status:
/conf/rpms/coova-chilli-1.2.5-rexy_fix.diff
0,0 → 1,11
--- src/Makefile.am 2010-09-23 11:19:35.000000000 +0200
+++ src/Makefile.am.rexy 2010-11-19 18:14:10.470823745 +0100
@@ -25,7 +25,7 @@
garden.c ssl.c dns.c session.c pkt.c chksum.c net.c \
ms_chap.c options.c statusfile.c conn.c sig.c
-AM_CFLAGS = -D_GNU_SOURCE -Wall -Werror -fno-builtin -fno-strict-aliasing \
+AM_CFLAGS = -D_GNU_SOURCE -Wall -fno-builtin -fno-strict-aliasing \
-O2 -fomit-frame-pointer -funroll-loops -pipe \
-DDEFCHILLICONF='"$(sysconfdir)/chilli.conf"'\
-DDEFPIDFILE='"$(localstatedir)/run/chilli.pid"'\