]> git.pld-linux.org Git - packages/tint2.git/blob - tint2.spec
- BR: rpm-pythonprov
[packages/tint2.git] / tint2.spec
1 #
2 # Conditional build:
3 %bcond_without  tintwizard      # build without tintwizard
4 #
5 Summary:        tint2 is a simple panel/taskbar intentionally made for openbox3
6 Summary(pl.UTF-8):      tint2 jest prostym panelem oryginalnie zaprojektowanym dla openbox3
7 Name:           tint2
8 Version:        0.8
9 Release:        1
10 License:        GPL v2
11 Group:          Applications
12 Source0:        http://tint2.googlecode.com/files/%{name}-%{version}.tar.gz
13 # Source0-md5:  866bc529cb7d0884e976f8fc9aef0eea
14 Source1:        http://tint2.googlecode.com/files/%{name}-0.7.pdf
15 # Source1-md5:  25980bd22fabc6a66660173fa639957b
16 Patch0:         %{name}-tintwizard_conf.patch
17 URL:            http://code.google.com/p/tint2/
18 BuildRequires:  autoconf
19 BuildRequires:  automake
20 BuildRequires:  cairo-devel
21 BuildRequires:  glib2-devel
22 BuildRequires:  imlib2-devel
23 BuildRequires:  libpng-devel
24 BuildRequires:  libtool
25 BuildRequires:  pango-devel
26 BuildRequires:  pkgconfig
27 BuildRequires:  rpm-pythonprov
28 BuildRequires:  xorg-lib-libXinerama-devel
29 %if %{with tintwizard}
30 Requires:       python
31 Requires:       python-pygtk-gtk
32 %endif
33 Suggests:       openbox
34 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
35
36 %description
37 tint2 is a simple panel/taskbar intentionally made for openbox3, but
38 should also work with other window managers. It's based on ttm code
39 http://code.google.com/p/ttm/
40
41 %description -l pl.UTF-8
42 tint2 jest prostym panelem/zasobnikiem oryginalnie zaprojektowanym dla
43 openbox3, ale powinien również współpracować z innymi menadżerami
44 okien. Jego kod oparty jest na ttm http://code.google.com/p/ttm/
45
46 %package examples
47 Summary:        tint2 - example configurations
48 Summary(pl.UTF-8):      tint2 - przykładowe konfiguracje
49 Group:          Documentation
50 Requires:       %{name} = %{version}-%{release}
51
52 %description examples
53 tint2 - example configurations.
54
55 %description examples -l pl.UTF-8
56 tint2 - przykładowe konfiguracje.
57
58 %prep
59 %setup -q
60 %patch0 -p1
61
62 %build
63 %{__libtoolize}
64 %{__aclocal}
65 %{__autoconf}
66 %{__autoheader}
67 %{__automake}
68 %configure
69 %{__make} \
70         CC="%{__cc}" \
71         CFLAGS="%{rpmcflags} %{rpmldflags}"
72
73 %install
74 rm -rf $RPM_BUILD_ROOT
75 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
76 %{?with_tintwizard:install -d $RPM_BUILD_ROOT%{_bindir}}
77
78 %{__make} install \
79         DESTDIR=$RPM_BUILD_ROOT
80
81 %{?with_tintwizard:cp src/tint2conf/tintwizard.py $RPM_BUILD_ROOT%{_bindir}}
82 cp %{SOURCE1} doc
83 install sample/*.tint2rc $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
84
85 %clean
86 rm -rf $RPM_BUILD_ROOT
87
88 %files
89 %defattr(644,root,root,755)
90 %doc AUTHORS ChangeLog NEWS README doc/tint2-0.7.pdf
91 %attr(755,root,root) %{_bindir}/tint2
92 %{?with_tintwizard:%attr(755,root,root) %{_bindir}/tintwizard.py}
93 %dir %{_sysconfdir}/xdg/tint2
94 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/xdg/tint2/tint2rc
95 %{_mandir}/man1/tint2.1.*
96
97 %files examples
98 %defattr(644,root,root,755)
99 %{_examplesdir}/%{name}-%{version}
This page took 0.078333 seconds and 4 git commands to generate.