Annotation of embedaddon/coova-chilli/coova-chilli.spec.in, revision 1.1

1.1     ! misho       1: Summary:   Coova-Chilli is a Wireless LAN Access Point Controller
        !             2: Name:      @PACKAGE@
        !             3: Version:   1.0.12
        !             4: Release:   1
        !             5: URL:       http://coova.org/wiki/index.php/CoovaChilli
        !             6: Source0:   %{name}-%{version}.tar.gz
        !             7: License:   GPL
        !             8: Group:     System Environment/Daemons
        !             9: BuildRoot: %{_tmppath}/%{name}-root
        !            10: 
        !            11: %description 
        !            12: 
        !            13: Coova-Chilli is a fork of the ChilliSpot project - an open source captive
        !            14: portal or wireless LAN access point controller. It supports web based login
        !            15: (Universal Access Method, or UAM), standard for public HotSpots, and it
        !            16: supports Wireless Protected Access (WPA), the standard for secure roamable
        !            17: networks. Authentication, Authorization and Accounting (AAA) is handled by
        !            18: your favorite radius server. Read more at http://coova.org/ and
        !            19: http://www.chillispot.org/.
        !            20: 
        !            21: %prep
        !            22: %setup 
        !            23: 
        !            24: %build
        !            25: 
        !            26: %configure --enable-static-exec
        !            27: 
        !            28: make
        !            29: 
        !            30: %install
        !            31: make install DESTDIR=$RPM_BUILD_ROOT
        !            32: 
        !            33: rm -rf $RPM_BUILD_ROOT/usr/include/*
        !            34: rm -rf $RPM_BUILD_ROOT/usr/lib/*.la
        !            35: rm -rf $RPM_BUILD_ROOT/usr/lib/*.a
        !            36: 
        !            37: %clean
        !            38: rm -rf $RPM_BUILD_ROOT
        !            39: make clean
        !            40: 
        !            41: %post
        !            42: /sbin/chkconfig --add chilli
        !            43: 
        !            44: %preun
        !            45: if [ $1 = 0 ]; then
        !            46:         /sbin/service chilli stop > /dev/null 2>&1
        !            47:         /sbin/chkconfig --del chilli
        !            48: fi
        !            49: 
        !            50: %files
        !            51: %defattr(-,root,root)
        !            52: %{_sbindir}/*
        !            53: %{_libdir}/*.so*
        !            54: %{_sysconfdir}/init.d/chilli
        !            55: %doc AUTHORS COPYING ChangeLog INSTALL README doc/dictionary.chillispot doc/hotspotlogin.cgi
        !            56: %config %{_sysconfdir}/chilli.conf
        !            57: %config(noreplace) %{_sysconfdir}/chilli/defaults
        !            58: %dir %{_sysconfdir}/chilli
        !            59: %dir %{_sysconfdir}/chilli/www
        !            60: %attr(755,root,root)%{_sysconfdir}/chilli/www/config.sh
        !            61: %{_sysconfdir}/chilli/www/*
        !            62: %{_sysconfdir}/chilli/wwwsh
        !            63: %{_sysconfdir}/chilli/functions
        !            64: %{_sysconfdir}/chilli/*.sh
        !            65: %{_mandir}/man1/*.1*
        !            66: %{_mandir}/man5/*.5*
        !            67: %{_mandir}/man8/*.8*
        !            68: 
        !            69: %changelog
        !            70: * Thu Sep 30 2007 <david@coova.com>
        !            71: - 1.0.8 release 
        !            72: * Thu Aug 20 2007 <david@coova.com>
        !            73: - 1.0-coova.7 release
        !            74: * Thu Jun 7 2007 <david@coova.com>
        !            75: - 1.0-coova.6 release
        !            76: * Wed May 16 2007  <david@coova.com>
        !            77: - 1.0-coova.5 release
        !            78: * Wed Feb 07 2007  <david@coova.com>
        !            79: - 1.0-coova.4 release
        !            80: * Wed Nov 15 2006  <david@coova.com>
        !            81: - 1.0-coova.3 release
        !            82: * Thu Mar 25 2004  <support@chillispot.org>
        !            83: - Initial release.

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>