2009-03-13 23:50:58 +00:00
|
|
|
# This version needs to match the tarball and unpacked directory name.
|
2009-04-03 23:59:08 +01:00
|
|
|
%define LACVER 0.7.3
|
2009-03-13 23:50:58 +00:00
|
|
|
|
2009-03-01 01:33:20 +00:00
|
|
|
BuildRequires: php-pear
|
|
|
|
BuildRequires: httpd-devel
|
|
|
|
|
2009-08-25 23:53:24 +01:00
|
|
|
Name: statusnet
|
2009-03-13 23:50:58 +00:00
|
|
|
Version: %{LACVER}
|
2009-03-01 01:33:20 +00:00
|
|
|
Release: 1%{?dist}
|
|
|
|
License: GAGPL v3 or later
|
2009-08-25 23:53:24 +01:00
|
|
|
Source: statusnet-%{version}.tar.gz
|
2009-03-01 01:33:20 +00:00
|
|
|
Group: Applications/Internet
|
2009-08-26 08:33:43 +01:00
|
|
|
Summary: StatusNet, the Open Source microblogging platform
|
2009-03-01 01:33:20 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
Requires: httpd
|
|
|
|
Requires: php >= 5
|
|
|
|
Requires: php-pear-Mail-Mime
|
|
|
|
Requires: php-curl
|
|
|
|
Requires: php-mysql
|
|
|
|
Requires: php-mbstring
|
|
|
|
Requires: php-gettext
|
2009-03-01 04:13:37 +00:00
|
|
|
Requires: php-xml
|
|
|
|
Requires: php-gd
|
2009-03-01 01:33:20 +00:00
|
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%define apache_serverroot %(/usr/sbin/apxs -q DATADIR)
|
|
|
|
%define apache_sysconfdir %(/usr/sbin/apxs -q SYSCONFDIR)
|
|
|
|
%define wwwpath %{apache_serverroot}/%{name}
|
|
|
|
%define confpath %{_sysconfdir}/%{name}
|
|
|
|
|
|
|
|
%description
|
2009-08-26 08:33:43 +01:00
|
|
|
From the ABOUT file: StatusNet (pronounced "luh-KAWN-ih-kuh") is a Free
|
2009-03-01 01:33:20 +00:00
|
|
|
and Open Source microblogging platform. It helps people in a
|
|
|
|
community, company or group to exchange short (140 character) messages
|
|
|
|
over the Web. Users can choose which people to "follow" and receive
|
|
|
|
only their friends' or colleagues' status messages. It provides a
|
|
|
|
similar service to sites like Twitter, Jaiku, and Plurk.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p %{buildroot}%{wwwpath}
|
|
|
|
cp -a * %{buildroot}%{wwwpath}
|
|
|
|
|
2009-08-25 23:53:24 +01:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/statusnet
|
|
|
|
cp -a db %{buildroot}%{_datadir}/statusnet/db
|
2009-03-01 01:33:20 +00:00
|
|
|
|
2009-08-25 23:53:24 +01:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/statusnet/avatar
|
2009-03-13 23:50:58 +00:00
|
|
|
|
2009-03-01 01:33:20 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d
|
2009-08-25 23:53:24 +01:00
|
|
|
cat > %{buildroot}%{_sysconfdir}/httpd/conf.d/statusnet.conf <<"EOF"
|
2009-08-26 08:33:43 +01:00
|
|
|
Alias /statusnet/ "/var/www/statusnet/"
|
2009-03-01 01:33:20 +00:00
|
|
|
|
2009-08-25 23:53:24 +01:00
|
|
|
<Directory "/var/www/statusnet">
|
2009-03-01 01:33:20 +00:00
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
AllowOverride All
|
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
|
|
|
</Directory>
|
|
|
|
EOF
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %buildroot
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%dir %{wwwpath}
|
|
|
|
%{wwwpath}/*
|
2009-08-25 23:53:24 +01:00
|
|
|
%{_datadir}/statusnet/*
|
|
|
|
%attr(-,apache,apache) %dir %{_datadir}/statusnet/avatar
|
2009-03-01 01:33:20 +00:00
|
|
|
%doc COPYING README doc-src/*
|
2009-08-25 23:53:24 +01:00
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/conf.d/statusnet.conf
|
2009-03-01 01:33:20 +00:00
|
|
|
|
|
|
|
%changelog
|
2009-08-26 08:33:43 +01:00
|
|
|
* Wed Apr 03 2009 Zach Copley <zach@status.net> - 0.7.3
|
2009-04-03 23:59:08 +01:00
|
|
|
- Changed version number to 0.7.3.
|
|
|
|
|
2009-03-13 23:50:58 +00:00
|
|
|
* Fri Mar 13 2009 Ken Sedgwick <ksedgwic@bonsai.com> - 0.7.2.1-1
|
2009-08-25 23:53:24 +01:00
|
|
|
- Factored statusnet version to the first line of the file.
|
2009-03-13 23:50:58 +00:00
|
|
|
|
2009-08-26 08:33:43 +01:00
|
|
|
* Wed Mar 03 2009 Zach Copley <zach@status.net> - 0.7.2
|
2009-03-13 23:50:58 +00:00
|
|
|
- Changed version number to 0.7.2.
|
|
|
|
|
2009-03-01 01:33:20 +00:00
|
|
|
* Sat Feb 28 2009 Ken Sedgwick <ken@bonsai.com> - 0.7.1-1
|
|
|
|
- Modified RPM for Fedora.
|
|
|
|
|
|
|
|
* Thu Feb 13 2009 tuukka.pasanen@ilmi.fi
|
2009-08-25 23:53:24 +01:00
|
|
|
- packaged statusnet version 0.7.1
|
2009-03-01 01:33:20 +00:00
|
|
|
|
|
|
|
* Wed Feb 04 2009 tuukka.pasanen@ilmi.fi
|
2009-08-25 23:53:24 +01:00
|
|
|
- packaged statusnet version 0.7.0 using the buildservice spec file wizard
|