[57] | 1 | Summary: scripts.mit.edu custom apache modules |
---|
| 2 | Group: Applications/System |
---|
| 3 | Name: httpdmods |
---|
[926] | 4 | Version: 0.%{scriptsversion} |
---|
[120] | 5 | Release: 0 |
---|
[57] | 6 | Vendor: The scripts.mit.edu Team (scripts@mit.edu) |
---|
| 7 | URL: http://scripts.mit.edu |
---|
| 8 | License: GPL |
---|
| 9 | Source: %{name}.tar.gz |
---|
| 10 | BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root |
---|
[1277] | 11 | BuildRequires: httpd-devel |
---|
[57] | 12 | %define debug_package %{nil} |
---|
| 13 | |
---|
| 14 | %description |
---|
| 15 | |
---|
| 16 | scripts.mit.edu custom apache modules |
---|
| 17 | Contains: |
---|
| 18 | - module to do authentication based on SSL certificates <mod_auth_sslcert> |
---|
| 19 | - module to do authorization based on Athena AFS groups <mod_authz_afsgroup> |
---|
[390] | 20 | - module to enable optional authentication <mod_auth_optional> |
---|
[480] | 21 | - module to get vhosts from LDAP, taken from Debian <mod_vhost_ldap> |
---|
[57] | 22 | See http://scripts.mit.edu/wiki for more information. |
---|
| 23 | |
---|
| 24 | %prep |
---|
| 25 | %setup -q -n %{name} |
---|
| 26 | |
---|
| 27 | %build |
---|
| 28 | ./configure CFLAGS="-I/usr/include/httpd -I/usr/include/apr-1" |
---|
| 29 | make |
---|
| 30 | |
---|
| 31 | %install |
---|
| 32 | [ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT |
---|
[389] | 33 | install -D .libs/mod_auth_sslcert.so $RPM_BUILD_ROOT/usr/lib64/httpd/modules/mod_auth_sslcert.so |
---|
| 34 | install -D .libs/mod_authz_afsgroup.so $RPM_BUILD_ROOT/usr/lib64/httpd/modules/mod_authz_afsgroup.so |
---|
[390] | 35 | install -D .libs/mod_auth_optional.so $RPM_BUILD_ROOT/usr/lib64/httpd/modules/mod_auth_optional.so |
---|
[480] | 36 | install -D .libs/mod_vhost_ldap.so $RPM_BUILD_ROOT/usr/lib64/httpd/modules/mod_vhost_ldap.so |
---|
[57] | 37 | |
---|
| 38 | %clean |
---|
| 39 | [ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT |
---|
| 40 | |
---|
| 41 | %files |
---|
| 42 | %defattr(0755, root, root) |
---|
| 43 | /usr/lib64/httpd/modules/mod_auth_sslcert.so |
---|
| 44 | /usr/lib64/httpd/modules/mod_authz_afsgroup.so |
---|
[390] | 45 | /usr/lib64/httpd/modules/mod_auth_optional.so |
---|
[480] | 46 | /usr/lib64/httpd/modules/mod_vhost_ldap.so |
---|
[57] | 47 | |
---|
| 48 | %changelog |
---|
| 49 | |
---|
| 50 | * Sun Jan 13 2006 Jeff Arnold <jbarnold@MIT.EDU> 0.00 |
---|
| 51 | - initial prerelease version |
---|