Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / pkg / vigiboard.rhel6.spec @ b8e1cd40

History | View | Annotate | Download (1.77 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

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

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

    
47

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

    
51
%clean
52
rm -rf $RPM_BUILD_ROOT
53

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