Subversion Repositories ALCASAR

Rev

Rev 2925 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
2925 rexy 1
%define _disable_ld_no_undefined 1
3077 rexy 2
%define _unpackaged_files_terminate_build 0 
2925 rexy 3
 
4
Summary:	CoovaChilli is an open-source software access controller for captive portal hotspots
5
Name:		coova-chilli
6
Version:	1.6
7
Release:	1%{?dist}
8
License:	GPLv3
9
Packager:	Richard REY (Rexy)
10
Group:		System/Servers
11
URL:		https://coova.github.io/CoovaChilli
12
Source:		%{name}-%{version}.tar.gz
13
BuildRequires:	gengetopt
14
BuildRequires:	libtool
15
BuildRequires:	openssl-devel
16
Provides:	coova-chilli = %{version}-%{release}
17
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-buildroot
18
 
19
%description
20
Coova-Chilli is a fork of the ChilliSpot project - an open source captive
21
portal or wireless LAN access point controller. It supports web based login
22
(Universal Access Method, or UAM), standard for public HotSpots, and it
23
supports Wireless Protected Access (WPA), the standard for secure roamable
24
networks. Authentication, Authorization and Accounting (AAA) is handled by
25
your favorite radius server. Read more at http://coova.github.io/.
26
 
27
%prep
28
%setup -q -n %{name}-%{version}
29
 
30
%build
31
sh bootstrap
32
%configure \
33
	--disable-static \
34
	--enable-shared \
35
	--enable-largelimits \
36
	--enable-chilliredir \
37
	--enable-chilliscript \
38
	--with-poll \
39
	--enable-dhcpopt \
40
	--enable-json \
41
	--enable-mdns \
42
	--with-openssl
43
 
44
automake --add-missing
45
%make_build
46
 
47
%post
48
%_post_service chilli
49
 
50
%preun
51
%_preun_service chilli
52
 
53
%install
54
%make_install
55
 
56
%clean
57
rm -rf %{buildroot}
58
 
59
%files
60
%defattr(-,root,root)
61
%{_sbindir}/*
62
%{_libdir}/*.so*
63
%doc AUTHORS COPYING ChangeLog INSTALL README doc/dictionary.coovachilli doc/attributes
64
%config %{_sysconfdir}/chilli.conf
65
%config %{_sysconfdir}/chilli/gui-config-default.ini
66
%config(noreplace) %{_sysconfdir}/chilli/defaults
67
%dir %{_sysconfdir}/chilli
68
%{_sysconfdir}/init.d/chilli
69
%{_sysconfdir}/chilli/wwwsh
70
%{_sysconfdir}/chilli/functions
71
%{_sysconfdir}/chilli/*.sh
72
%{_mandir}/man1/*.1*
73
%{_mandir}/man5/*.5*
74
%{_mandir}/man8/*.8*
75
%exclude %{_sysconfdir}/chilli/www/*
76
%exclude %{_sysconfdir}/chilli/wpad.dat
77
%exclude %{_includedir}/chilli*
78
%exclude %{_libdir}/*.la*
79
%exclude %{_libdir}/python/CoovaChilliLib.py*
80
 
81
%changelog
3077 rexy 82
* Sat Jul 23 2022 Richard REY (aka Rexy) - 1.6-1.mga8
83
- 1.6 release
2925 rexy 84
* Wed Feb 24 2021 Richard REY (aka Rexy) - 1.6-1.mga7
85
- 1.6 release
86
* Fri May 22 2020 Richard REY (aka Rexy) - 1.5-1.mga7
87
- 1.5 release
88
* Mon May 22 2017 Tom Houdayer - 1.4-3.mga5
89
- Add mDNS support
90
* Sat May 06 2017 Tom Houdayer - 1.4-2.mga5
91
- Add OpenSSL support
92
* Mon Dec 19 2016 Rexy for ALCASAR project
93
- 1.4-1 release
94
* Sun Nov 13 2016 Rexy for ALCASAR project
95
- 1.3.2-2 release (including the code resolving IPSEC bug #255 & #301)
96
* Tue Oct 25 2016 Rexy for ALCASAR project
97
- 1.3.2-1 release
98
* Thu Jun 2 2016 Rexy for ALCASAR project
99
- 1.3.1.4 release
100
* Sun Apr 3 2016 Rexy for ALCASAR project
101
- 1.3.1.3 release
102
* Tue May 14 2013 Crox for ALCASAR project
103
- 1.3.0 release
104
* Mon Jun 18 2012 Rexy for ALCASAR project
105
- 1.2.9-1 release
106
* Wed Jan 18 2012 Rexy for ALCASAR project
107
- 1.2.9 release
108
* Sun Jul 11 2011 Rexy for ALCASAR project
109
- 1.2.8 release
110
* Sat Feb 12 2011 Rexy for Alcasar project
111
+ revision: 433
112
+ add _disable_ld_no_undefined 1
113
- 1.2.6 release
114
* Sat Nov 20 2010 Rexy for Alcasar project
115
+ revision: 394
116
- 1.2.5 release
117
* Sat Jan 2 2010 <david@coova.com>
118
- 1.2.0 release
119
* Thu Sep 30 2007 <david@coova.com>
120
- 1.0.8 release
121
* Thu Aug 20 2007 <david@coova.com>
122
- 1.0-coova.7 release
123
* Thu Jun 7 2007 <david@coova.com>
124
- 1.0-coova.6 release
125
* Wed May 16 2007  <david@coova.com>
126
- 1.0-coova.5 release
127
* Wed Feb 07 2007  <david@coova.com>
128
- 1.0-coova.4 release
129
* Wed Nov 15 2006  <david@coova.com>
130
- 1.0-coova.3 release
131
* Thu Mar 25 2004  <support@chillispot.org>
132
- Initial release.