forked from coova/coova-chilli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coova-chilli.spec
122 lines (103 loc) · 3.22 KB
/
coova-chilli.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
Summary: Coova-Chilli is a Wireless LAN Access Point Controller
Name: coova-chilli
Version: 1.3.1.3
Release: 1%{?dist}
URL: http://coova.github.io/
Source0: %{name}-%{version}.tar.gz
License: GPL
Group: System Environment/Daemons
%if %{!?_without_ssl:1}0
BuildRequires: openssl-devel libtool gengetopt
%endif
%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.github.io/.
%prep
%setup
%build
sh bootstrap
%configure \
--disable-static \
--enable-shared \
--enable-largelimits \
--enable-miniportal \
--enable-chilliredir \
--enable-chilliproxy \
--enable-chilliscript \
--with-poll \
--enable-libjson \
%if %{!?_without_ssl:1}0
--with-openssl \
--enable-chilliradsec \
%endif
make
%install
make install DESTDIR=$RPM_BUILD_ROOT
rm -rf $RPM_BUILD_ROOT%{_prefix}/include/*
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
#cp -f chilli $RPM_BUILD_ROOT%{_sysconfdir}/init.d/chilli
%check
rm -f $RPM_BUILD_ROOT%{_libdir}/python/*.pyc
rm -f $RPM_BUILD_ROOT%{_libdir}/python/*.pyo
%clean
rm -rf $RPM_BUILD_ROOT
make clean
%post
/sbin/chkconfig --add chilli
%preun
if [ $1 = 0 ]; then
/sbin/service chilli stop > /dev/null 2>&1
/sbin/chkconfig --del chilli
fi
%files
%defattr(-,root,root)
%{_sbindir}/*
%{_libdir}/*.so*
%{_libdir}/python/CoovaChilliLib.py
%{_sysconfdir}/init.d/chilli
%doc AUTHORS COPYING ChangeLog INSTALL README doc/dictionary.coovachilli 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,root)%{_sbindir}/chilli_script
%{_sysconfdir}/chilli/www/*
%{_sysconfdir}/chilli/wwwsh
%{_sysconfdir}/chilli/functions
%{_sysconfdir}/chilli/*.sh
%{_sysconfdir}/chilli/wpad.dat
%{_mandir}/man1/*.1*
%{_mandir}/man5/*.5*
%{_mandir}/man8/*.8*
%changelog
* Fri Jun 26 2015 Giovanni Bezicheri <[email protected]>
* Fix json encoding for radius reply.
* Tue May 13 2015 Giovanni Bezicheri <[email protected]>
* Add support for json uri.
* Fri Nov 14 2014 Giovanni Bezicheri <[email protected]>
- Add HS_LANIF_KEEPADDR option in chilli sysconfig.
* Thu Jul 10 2014 Giovanni Bezicheri <[email protected]>
- 1.3.1 release for NethServer. See ChangeLog.
* Sat Jan 2 2010 <[email protected]>
- 1.2.0 release
* Thu Sep 30 2007 <[email protected]>
- 1.0.8 release
* Thu Aug 20 2007 <[email protected]>
- 1.0-coova.7 release
* Thu Jun 7 2007 <[email protected]>
- 1.0-coova.6 release
* Wed May 16 2007 <[email protected]>
- 1.0-coova.5 release
* Wed Feb 07 2007 <[email protected]>
- 1.0-coova.4 release
* Wed Nov 15 2006 <[email protected]>
- 1.0-coova.3 release
* Thu Mar 25 2004 <[email protected]>
- Initial release.