|
@@ -0,0 +1,85 @@
+Name: couchdb
+Version: 0.7.2
+Release: 1
+Summary: The next generation of web storage
+Group: Development/Libraries
+License: GPL
+Source0: %{name}-%{version}.tar.gz
+Source1: couchdb.apache.conf
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires: libicu-devel curl-devel libxml2-devel
+BuildRequires: erlang gcc-c++
+Requires: mozilla-xulrunner181
+Requires: erlang apache2
+
+%description
+
+
+%prep
+%setup -n %{name}-%{version}
+
+%configure
+
+%build
+%{__make}
+
+%makeinstall
+mkdir -p %{buildroot}/%{_sysconfdir}/init.d
+mkdir -p %{buildroot}/var/adm/fillup-templates/
+mkdir -p %{buildroot}/%{_docdir}/%{name}
+mkdir -p %{buildroot}/%{_sysconfdir}/apache2/conf.d
+mv %{buildroot}/%{_sysconfdir}/rc.d/couchdb %{buildroot}/%{_sysconfdir}/init.d/
+mv %{buildroot}/%{_sysconfdir}/default/couchdb %{buildroot}/var/adm/fillup-templates/sysconfig.%{name}
+mv %{buildroot}%{_datadir}/doc/%{name}/* %{buildroot}/%{_docdir}/%{name}/
+rmdir %{buildroot}/%{_sysconfdir}/rc.d
+rmdir %{buildroot}/%{_sysconfdir}/default
+rm -Rf %{buildroot}%{_datadir}/doc/%{name}
+sed -i s@default@sysconfig@g %{buildroot}/%{_sysconfdir}/init.d/%{name}
+# match entrys in config file
+mkdir -p %{buildroot}/var/log/%{name}
+mkdir -p %{buildroot}/var/lib/%{name}
+
+# install apache config file
+%{__install} -m 644 %{S:1} %{buildroot}/%{_sysconfdir}/apache2/conf.d/%{name}.conf
+
+%pre
+# Create `couchdb' user on the system if necessary
+if /usr/bin/id %{name} > /dev/null 2>&1 ; then
+ : # user already exists
+else
+ /usr/sbin/useradd -r -d %{_datadir}/%{name} -s /bin/bash -c "CouchDB" %{name} || \
+ %nnmmsg Unexpected error adding user "%{name}". Aborting install process.
+fi
+
+%post
+%fillup_and_insserv couchdb
+
+%postun
+if [ $1 = 0 ]; then
+ /bin/grep '^%{nsusr}:' /etc/passwd > /dev/null 2>&1 && /usr/sbin/userdel %{name} || %nnmmsg "User %{name} could not be deleted."
+fi
+
+%files
+%defattr(-,root,root)
+%dir %{_sysconfdir}/%{name}
+%config(noreplace) %{_sysconfdir}/%{name}/couch_httpd.conf
+%config(noreplace) %{_sysconfdir}/%{name}/couch.ini
+%config(noreplace) %{_sysconfdir}/apache2/conf.d/%{name}.conf
+%{_sysconfdir}/%{name}/conf/mime.types
+/var/adm/fillup-templates/sysconfig.%{name}
+%{_sysconfdir}/init.d/%{name}
+%{_bindir}
+%{_libdir}/%{name}
+%{_mandir}/man1
+%{_docdir}/%{name}
+%defattr(-,couchdb,www)
+%{_datadir}/%{name}
+%dir /var/log/%{name}
+%dir /var/lib/%{name}
+
+%changelog
+* Mon Jun 30 2008 Carsten Schoene <cs@linux-administrator.com>
+- new release 0.8.0
+* Fri Mar 21 2008 Carsten Schoene <cs@linux-administrator.com>
+- initial build
|