Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / pkg / vigigraph.rhel6.spec @ 9996920f

History | View | Annotate | Download (1.71 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:   mod_wsgi
20

    
21

    
22
%description
23
@DESCRIPTION@
24
This application is part of the Vigilo Project <http://vigilo-project.org>
25

    
26
%prep
27
%setup -q
28
# A cause des permissions sur /var/log/httpd sur Red Hat
29
sed -i -e '/<IfModule mod_wsgi\.c>/a WSGISocketPrefix run/wsgi' deployment/%{module}.conf.in
30

    
31
%build
32

    
33
%install
34
rm -rf $RPM_BUILD_ROOT
35
make install_pkg \
36
    DESTDIR=$RPM_BUILD_ROOT \
37
    SYSCONFDIR=%{_sysconfdir} \
38
	LOCALSTATEDIR=%{_localstatedir} \
39
    PYTHON=%{__python}
40

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

    
43

    
44
%post
45
/sbin/service httpd condrestart > /dev/null 2>&1 || :
46

    
47
%clean
48
rm -rf $RPM_BUILD_ROOT
49

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