source: projects/specs/trunk/x/xfce4-time-out-plugin/xfce4-time-out-plugin-vl.spec @ 9407

Revision 9407, 2.3 KB checked in by inagaki, 9 years ago (diff)

2015-03-03 Ryoichi INAGAKI <ryo1@…>

  • Xfce panel plugins: rebuilt with libxfce4util 4.12.1

added whiskermenu-plugin


Line 
1Name:           xfce4-time-out-plugin
2Summary:        Time-out plugin for the Xfce4 panel
3Summary(ja):    Xfce パネル用 タイムアウトプラグイン
4Version:        1.0.1
5Release:        4%{?_dist_release}
6
7Group:          User Interface/Desktops
8License:        GPLv2+
9URL:            http://goodies.xfce.org/projects/panel-plugins/%{name}
10
11Source0:        http://archive.xfce.org/src/panel-plugins/%{name}/1.0/%{name}-%{version}.tar.bz2
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14BuildRequires:  libxfce4ui-devel >= 4.8.0
15BuildRequires:  libxfce4util-devel >= 4.8.0
16BuildRequires:  xfce4-panel-devel >= 4.8.0
17
18Vendor:         Project Vine
19Distribution:   Vine Linux
20Packager:       Takemikaduchi
21
22
23%description
24xfce4-time-out-plugin is a plugin for the Xfce panel. It's a
25comfortable tool for taking a break from computer work every now
26and then. You can define a working interval and whenever time
27of this interval has passed your screen is locked for a configurable
28amount of time - which gives you enough time to grab a cup of
29coffee, smoke a cigarette or even do something healthy like eating,
30exercising, cleaning up or whatever.
31
32
33%prep
34%setup -q
35
36%build
37%configure --disable-static
38make %{?_smp_mflags}
39
40%install
41rm -rf $RPM_BUILD_ROOT
42make install DESTDIR=$RPM_BUILD_ROOT
43
44find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
45chmod +x $RPM_BUILD_ROOT%{_libdir}/xfce4/panel/plugins/*.so
46
47%find_lang %{name}
48
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53
54%post
55touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
56gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
57
58%postun
59if [ $1 -eq 0 ]; then
60    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
61    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
62fi
63
64
65%files -f %{name}.lang
66%defattr(-,root,root)
67%doc AUTHORS COPYING ChangeLog NEWS README
68%{_libdir}/xfce4/panel/plugins/libtime-out.so
69%{_datadir}/icons/hicolor/*/apps/%{name}.*
70%{_datadir}/xfce4/panel/plugins/%{name}.desktop
71
72%changelog
73* Mon Mar  2 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.0.1-4
74- rebuilt with libxfce4util 4.12.1
75
76* Sun Dec 21 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.0.1-3
77- modified libtime-out.so permission
78
79* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.1-2
80- rebuild with VineSeed environment
81
82* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.1-1
83- initial build for Vine Linux
84
Note: See TracBrowser for help on using the repository browser.