Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / pkg / vigigraph.redhat.spec @ c1b9f1da

History | View | Annotate | Download (2.12 KB)

1
%define module  vigigraph
2
%define name    vigilo-%{module}
3
%define version 2.0.0
4
%define release 1%{?svn}%{?dist}
5

    
6
%define pyver 26
7
%define pybasever 2.6
8
%define __python /usr/bin/python%{pybasever}
9
%define __os_install_post %{__python26_os_install_post}
10
%{!?python26_sitelib: %define python26_sitelib %(python26 -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
11

    
12
Name:       %{name}
13
Summary:    Vigilo graphs interface
14
Version:    %{version}
15
Release:    %{release}
16
Source0:    %{module}-%{version}.tar.gz
17
URL:        http://www.projet-vigilo.org
18
Group:      System/Servers
19
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-build
20
License:    GPLv2
21
Buildarch:  noarch
22

    
23
BuildRequires:   python26-distribute
24
BuildRequires:   python26-babel
25
BuildRequires:   wget
26

    
27
Requires:   python26-distribute
28
Requires:   vigilo-turbogears
29
Requires:   mod_wsgi-python26
30

    
31

    
32
%description
33
Vigilo graphs interface.
34
This application is part of the Vigilo Project <http://vigilo-project.org>
35

    
36
%prep
37
%setup -q -n %{module}-%{version}
38
# A cause des permissions sur /var/log/httpd sur Red Hat
39
sed -i -e '/<IfModule mod_wsgi\.c>/a WSGISocketPrefix run/wsgi' deployment/%{module}.conf
40

    
41
%build
42
make PYTHON=%{__python} SYSCONFDIR=%{_sysconfdir}
43

    
44
%install
45
rm -rf $RPM_BUILD_ROOT
46
make install \
47
	DESTDIR=$RPM_BUILD_ROOT \
48
	SYSCONFDIR=%{_sysconfdir} \
49
	PYTHON=%{__python}
50

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

    
53

    
54
%clean
55
rm -rf $RPM_BUILD_ROOT
56

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