Summary: mod_ngobjweb apache module Name: mod_ngobjweb Version: %{mod_ngobjweb_version} Release: %{mod_ngobjweb_release}.%{mod_ngobjweb_buildcount}%{dist_suffix} Vendor: OpenGroupware.org Packager: Frank Reppin License: LGPL URL: http://sope.opengroupware.org/ Group: Development/Libraries AutoReqProv: off Requires: apache2 ogo-environment Source: %{mod_ngobjweb_source} Prefix: %{mod_ngobjweb_prefix} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root %description apache2 mod_ngobjweb adaptor. %prep rm -fr ${RPM_BUILD_ROOT} %setup -n sope-mod_ngobjweb # ****************************** build ******************************** %build export PATH=$PATH:/usr/sbin make %{mod_ngobjweb_makeflags} APXS="/usr/sbin/apxs2" APXS_INCLUDE_DIRS="-I/usr/include/apache2 -I/usr/include/apr-0" # ****************************** install ****************************** %install export PATH=$PATH:/usr/sbin mkdir -p ${RPM_BUILD_ROOT}/usr/lib/apache2 cp mod_ngobjweb.so ${RPM_BUILD_ROOT}/usr/lib/apache2/ mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d echo "#this file contains the apache/httpd configuration for OpenGroupware.org #it should be included from within your default httpd.conf ala: #\`include OGo.conf\` #(or copy it into the dir where additonal configs end up - usually conf.d/) # LoadModule ngobjweb_module %{_usr}/lib/apache2/mod_ngobjweb.so # Alias /OpenGroupware10a.woa/WebServerResources/ %{prefix}/share/opengroupware.org-1.0a/www/ Alias /ArticleImages %{_var}/lib/opengroupware.org/news # SetAppPort 20000 SetHandler ngobjweb-adaptor # SetHandler ngobjweb-adaptor SetAppPort 21000 # SetHandler ngobjweb-adaptor SetAppPort 22000 " > ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d/OGo.conf # ****************************** post ********************************* %post # ****************************** clean ******************************** %clean rm -fr ${RPM_BUILD_ROOT} # ****************************** files ******************************** %files %defattr(-,root,root,-) %{_usr}/lib/apache2/mod_ngobjweb.so %config %{_sysconfdir}/httpd/conf.d/OGo.conf # ********************************* changelog ************************* %changelog * Thu Dec 23 2004 Frank Reppin - requires apache2 -obviously- - mod_ngobjweb.so lives in /usr/lib/apache2 now - OGo.conf lives in /etc/httpd/conf.d now... * Wed Sep 09 2004 Frank Reppin - initial build