123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- Name: xfce4-notes-plugin
- Summary: Memo plugin for the Xfce4 panel
- Summary(ja): Xfce パネル用 メモプラグイン
- Version: 1.7.7
- Release: 1%{?_dist_release}
- Group: User Interface/Desktops
- License: GPLv2+
- URL: http://goodies.xfce.org/projects/panel-plugins/%{name}
- Source0: http://archive.xfce.org/src/panel-plugins/%{name}/1.7/%{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: libxfce4util-devel >= 4.4.0
- BuildRequires: libxfce4ui-devel >= 4.4.0
- BuildRequires: libxfcegui4-devel >= 4.4.0
- BuildRequires: xfce4-panel-devel >= 4.4.0
- BuildRequires: xfconf-devel >= 4.6.0
- BuildRequires: unique-devel >= 1.0.0
- Requires(post,postun): desktop-file-utils
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- The notes plugin provides you a quick way to write down a todo list,
- to paste a piece of code, to leave a note to your friend, or whatever
- else you had like to do with a post'it.
- %prep
- %setup -q
- %build
- %configure --disable-static
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %find_lang %{name}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- update-desktop-database %{_datadir}/applications &> /dev/null || :
- %postun
- if [ $1 -eq 0 ]; then
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- fi
- update-desktop-database %{_datadir}/applications &> /dev/null || :
- %files -f %{name}.lang
- %defattr(-,root,root)
- %doc AUTHORS COPYING ChangeLog NEWS README
- %config(noreplace) %{_sysconfdir}/xdg/autostart/xfce4-notes-autostart.desktop
- %{_bindir}/xfce4-notes
- %{_bindir}/xfce4-notes-settings
- %{_bindir}/xfce4-popup-notes
- %{_libdir}/xfce4/panel-plugins/libnotes.so*
- %{_datadir}/applications/xfce4-notes.desktop
- %{_datadir}/icons/hicolor/*/apps/%{name}.*
- %{_datadir}/xfce4/panel-plugins/xfce4-notes-plugin-47.desktop
- %{_datadir}/%{name}
- %changelog
- * Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7.7-1
- - initial build for Vine Linux
|