Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / pkg / vigiboard.redhat.spec @ c91e2ca9

History | View | Annotate | Download (2.24 KB)

1
%define module  @SHORT_NAME@
2

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

    
9
Name:       vigilo-%{module}
10
Summary:    @SUMMARY@
11
Version:    @VERSION@
12
Release:    @RELEASE@%{?dist}
13
Source0:    %{name}-%{version}.tar.gz
14
URL:        @URL@
15
Group:      Applications/System
16
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-build
17
License:    GPLv2
18
Buildarch:  noarch
19

    
20
BuildRequires:   python26-distribute
21
BuildRequires:   python26-babel
22

    
23
Requires:   python26-distribute
24
Requires:   vigilo-turbogears
25
Requires:   python26-tw-forms
26
Requires:   python26-mod_wsgi
27

    
28
# Renommage
29
Obsoletes: vigiboard < 1.0-1
30
Provides:  vigiboard = %{version}-%{release}
31

    
32

    
33
%description
34
@DESCRIPTION@
35
This application is part of the Vigilo Project <http://vigilo-project.org>
36

    
37
%prep
38
%setup -q
39

    
40
%build
41

    
42
%install
43
rm -rf $RPM_BUILD_ROOT
44
make install_pkg \
45
    DESTDIR=$RPM_BUILD_ROOT \
46
    SYSCONFDIR=%{_sysconfdir} \
47
    LOCALSTATEDIR=%{_localstatedir} \
48
    PYTHON=%{__python}
49

    
50
# Pour marquer en %ghost
51
touch $RPM_BUILD_ROOT%{python_sitelib}/%{module}/app_cfg.py{c,o}
52

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

    
55

    
56
%post
57
/sbin/service httpd condrestart > /dev/null 2>&1 || :
58

    
59
%clean
60
rm -rf $RPM_BUILD_ROOT
61

    
62
%files
63
%defattr(644,root,root,755)
64
%doc COPYING.txt README.txt
65
%dir %{_sysconfdir}/vigilo
66
%dir %{_sysconfdir}/vigilo/%{module}
67
%config(noreplace) %{_sysconfdir}/vigilo/%{module}/*.conf
68
%config(noreplace) %{_sysconfdir}/vigilo/%{module}/*.py
69
%config(noreplace) %{_sysconfdir}/vigilo/%{module}/*.wsgi
70
%config(noreplace) %attr(640,root,apache) %{_sysconfdir}/vigilo/%{module}/*.ini
71
%ghost %{_sysconfdir}/vigilo/%{module}/*.pyo
72
%ghost %{_sysconfdir}/vigilo/%{module}/*.pyc
73
%config(noreplace) /etc/httpd/conf.d/%{name}.conf
74
%dir %{_localstatedir}/log/vigilo/
75
%attr(750,apache,apache) %{_localstatedir}/log/vigilo/%{module}
76
%config(noreplace) /etc/logrotate.d/%{name}
77
%attr(750,apache,apache) %{_localstatedir}/cache/vigilo/sessions
78
%{python26_sitelib}/*
79
%ghost %{python_sitelib}/%{module}/app_cfg.pyc
80
%ghost %{python_sitelib}/%{module}/app_cfg.pyo