Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / pkg / vigiboard.rhel6.spec @ 2d135e67

History | View | Annotate | Download (1.81 KB)

1
%define module  @SHORT_NAME@
2

    
3
Name:       vigilo-%{module}
4
Summary:    @SUMMARY@
5
Version:    @VERSION@
6
Release:    1%{?svn}%{?dist}
7
Source0:    %{name}-%{version}.tar.gz
8
URL:        @URL@
9
Group:      System/Servers
10
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-build
11
License:    GPLv2
12
Buildarch:  noarch
13

    
14
BuildRequires:   python-distribute
15
BuildRequires:   python-babel
16

    
17
Requires:   python-distribute
18
Requires:   vigilo-turbogears
19
Requires:   python-tw-forms
20
Requires:   mod_wsgi
21

    
22
# Renommage
23
Obsoletes: vigiboard < 1.0-1
24
Provides:  vigiboard = %{version}-%{release}
25

    
26

    
27
%description
28
@DESCRIPTION@
29
This application is part of the Vigilo Project <http://vigilo-project.org>
30

    
31
%prep
32
%setup -q
33
# A cause des permissions sur /var/log/httpd sur Red Hat
34
sed -i -e '/<IfModule mod_wsgi\.c>/a WSGISocketPrefix run/wsgi' deployment/%{module}.conf
35

    
36
%build
37
make PYTHON=%{__python} SYSCONFDIR=%{_sysconfdir}
38

    
39
%install
40
rm -rf $RPM_BUILD_ROOT
41
make install \
42
    DESTDIR=$RPM_BUILD_ROOT \
43
    SYSCONFDIR=%{_sysconfdir} \
44
    PYTHON=%{__python}
45

    
46
# %find_lang %{name} # ne fonctionne qu'avec les fichiers dans /usr/share/locale/
47

    
48

    
49
%post
50
/sbin/service httpd condrestart > /dev/null 2>&1 || :
51

    
52
%clean
53
rm -rf $RPM_BUILD_ROOT
54

    
55
%files
56
%defattr(644,root,root,755)
57
%doc COPYING
58
%dir %{_sysconfdir}/vigilo
59
%dir %{_sysconfdir}/vigilo/%{module}
60
%config(noreplace) %{_sysconfdir}/vigilo/%{module}/*.conf
61
%config(noreplace) %{_sysconfdir}/vigilo/%{module}/*.py
62
%config(noreplace) %{_sysconfdir}/vigilo/%{module}/*.wsgi
63
%config(noreplace) %attr(640,root,apache) %{_sysconfdir}/vigilo/%{module}/*.ini
64
%{_sysconfdir}/httpd/conf.d/%{module}.conf
65
%dir %{_localstatedir}/log/vigilo/
66
%attr(750,apache,apache) %{_localstatedir}/log/vigilo/%{module}
67
%config(noreplace) %{_sysconfdir}/logrotate.d/%{module}
68
%attr(750,apache,apache) %{_localstatedir}/cache/vigilo/sessions
69
%{python_sitelib}/*