You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.6 KiB
92 lines
2.6 KiB
13 years ago
|
# $Id: smeserver-webapps-common.spec,v 1.0 2009/09/30 16:20:28 slords Exp $
|
||
|
# Authority: VIP-ire
|
||
|
# Name: Daniel B.
|
||
|
|
||
|
Summary: Common WebApps Framework for SME Server
|
||
|
%define name smeserver-webapps-common
|
||
|
Name: %{name}
|
||
|
%define version 0.2.0
|
||
|
%define release 1.beta0
|
||
|
Version: %{version}
|
||
|
Release: %{release}%{?dist}
|
||
|
License: GPL
|
||
|
Group: SMEServer/addon
|
||
|
|
||
|
Source: %{name}-%{version}.tar.gz
|
||
|
|
||
|
URL: http://www.firewall-services.com/
|
||
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
|
||
|
BuildArchitectures: noarch
|
||
|
Requires: e-smith-base
|
||
|
Requires: httpd
|
||
|
Requires: mysql
|
||
|
Requires: php
|
||
|
Requires: openssl-perl
|
||
|
BuildRequires: e-smith-devtools
|
||
|
|
||
|
%description
|
||
|
This package provide common files and events for Web Applications integration
|
||
|
on SME Server
|
||
|
|
||
|
%changelog
|
||
|
* Tue Mar 13 2012 Daniel Berteaud <daniel@firewall-services.com> 0.2.0-1.sme
|
||
|
- Migrate to git
|
||
|
|
||
|
* Fri Jul 22 2011 Daniel Berteaud <daniel@firewall-services.com> 0.1-11.sme
|
||
|
- Add an prop to disable the default /icons alias
|
||
|
|
||
|
* Wed Jun 29 2011 Daniel Berteaud <daniel@firewall-services.com> 0.1-10.sme
|
||
|
- Allow values enabled, yes on or 1 for RequireSSL
|
||
|
- Implement access restriction with AllowHosts
|
||
|
|
||
|
* Tue Mar 8 2011 Daniel Berteaud <daniel@firewall-services.com> 0.1-9.sme
|
||
|
- Integration with PHPki
|
||
|
- Stop restarting mysqld service
|
||
|
|
||
|
* Mon Mar 7 2011 Daniel Berteaud <daniel@firewall-services.com> 0.1-8.sme
|
||
|
- Add SSLCACertificateFile directive
|
||
|
|
||
|
* Tue Jan 25 2011 Daniel Berteaud <daniel@firewall-services.com> 0.1-7.sme
|
||
|
- Fix httpd template syntax
|
||
|
|
||
|
* Tue Jan 25 2011 Daniel Berteaud <daniel@firewall-services.com> 0.1-6.sme
|
||
|
- Load some additional modules for apache if they are found
|
||
|
|
||
|
* Thu Dec 30 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-5.sme
|
||
|
- RequireSSL can take a list of location to rewrite
|
||
|
|
||
|
* Thu Dec 30 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-4.sme
|
||
|
- Only load authn_file if the module exists
|
||
|
|
||
|
* Sun Dec 25 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-3.sme
|
||
|
- Load mod_authn_file
|
||
|
|
||
|
* Thu Dec 16 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-2.sme
|
||
|
- Provide alternative WebAppVirtualHost templates
|
||
|
|
||
|
* Fri Dec 10 2010 Daniel Berteaud <daniel@firewall-services.com> 0.1-1.sme
|
||
|
- Add DocumentRoot prop for domains
|
||
|
|
||
|
* Wed Sep 30 2009 Daniel B. <daniel@firewall-services.com> 0.1-0
|
||
|
- Initial rpm
|
||
|
|
||
|
%prep
|
||
|
%setup
|
||
|
|
||
|
%build
|
||
|
perl createlinks
|
||
|
%{__mkdir_p} root/etc/pki/tls/crl
|
||
|
|
||
|
%install
|
||
|
/bin/rm -rf $RPM_BUILD_ROOT
|
||
|
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
|
||
|
/bin/rm -f %{name}-%{version}-filelist
|
||
|
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist
|
||
|
|
||
|
%files -f %{name}-%{version}-filelist
|
||
|
%defattr(-,root,root)
|
||
|
|
||
|
%clean
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|