source: projects/specs/trunk/x/xfce4-fsguard-plugin/xfce4-fsguard-plugin-vl.spec @ 9173

Revision 9173, 2.0 KB checked in by inagaki, 9 years ago (diff)

2014-12-21 Ryoichi INAGAKI <ryo1@…>

  • xfce4 plugins: updated
  • xfce4-panel, xfce4-power-manager, xfdesktop: updated


Line 
1Name:           xfce4-fsguard-plugin
2Summary:        Free space checker plugin for the Xfce4 panel
3Summary(ja):    Xfce パネル用 空き容量チェッカプラグイン
4Version:        1.0.1
5Release:        1%{?_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:  gtk2-devel >= 2.20.0
15BuildRequires:  libxfce4ui-devel >= 4.8.0
16BuildRequires:  libxfce4util-devel >= 4.8.0
17BuildRequires:  xfce4-panel-devel >= 4.8.0
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23
24%description
25The FSGuard panel plugin checks free space on a chosen mount point
26frequently and displays a message when a limit is reached.  There are
27two limits: a warning limit where only the icon changes, and an urgent
28limit that advise the user with a message.  The icon button can be
29clicked to open the chosen mount point.
30
31
32%prep
33%setup -q
34
35%build
36%configure --disable-static
37make %{?_smp_mflags}
38
39%install
40rm -rf $RPM_BUILD_ROOT
41make install DESTDIR=$RPM_BUILD_ROOT
42
43find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
44
45%find_lang %{name}
46
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51
52%post
53touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
54gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
55
56%postun
57if [ $1 -eq 0 ]; then
58    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
59    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
60fi
61
62
63%files -f %{name}.lang
64%defattr(-,root,root)
65%doc AUTHORS COPYING ChangeLog NEWS README
66%{_libdir}/xfce4/panel/plugins/*.so
67%{_datadir}/icons/hicolor/*/apps/*
68%{_datadir}/xfce4/panel/plugins/*.desktop
69
70%changelog
71* Sun Dec 21 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.0.1-1
72- new upstream release
73
74* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.0-2
75- rebuild with VineSeed environment
76
77* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.0-1
78- initial build for Vine Linux
79
Note: See TracBrowser for help on using the repository browser.