Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29a50ba738 | ||
|
|
b148447bcc | ||
|
|
6e9d18020d | ||
|
|
0a5456393c | ||
|
|
fa50bce5be |
5 changed files with 26 additions and 35 deletions
|
|
@ -1 +0,0 @@
|
|||
xfce4-notes-plugin-1.6.4.tar.bz2
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
xfce4-notes-plugin-1.7.1.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: xfce4-notes-plugin
|
||||
# $Id$
|
||||
NAME := xfce4-notes-plugin
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
88132a8224880f01f02450020c73f9c3 xfce4-notes-plugin-1.6.4.tar.bz2
|
||||
c6d27d8c566fbd98a14bd59273da0adf xfce4-notes-plugin-1.7.1.tar.bz2
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
Name: xfce4-notes-plugin
|
||||
Version: 1.6.4
|
||||
Version: 1.7.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Notes plugin for the Xfce panel
|
||||
|
||||
Group: User Interface/Desktops
|
||||
License: GPLv2+
|
||||
URL: http://goodies.xfce.org/projects/panel-plugins/%{name}
|
||||
Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2
|
||||
Source0: http://archive.xfce.org/src/panel-plugins/%{name}/1.7/%{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: xfce4-panel-devel >= 4.4.0, libxfcegui4-devel >= 4.4.0, libxml2-devel
|
||||
BuildRequires: Thunar-devel >= 0.8.0, xfconf-devel >= 4.5.90
|
||||
BuildRequires: xfconf-devel >= 4.6.0
|
||||
BuildRequires: gettext, intltool, perl(XML::Parser)
|
||||
Requires: xfce4-panel >= 4.4.1, xfconf >= 4.5.90
|
||||
Requires: xfce4-panel >= 4.4.1, xfconf >= 4.6.0
|
||||
|
||||
%description
|
||||
This plugin provides sticky notes for your desktop. You can create a note by
|
||||
|
|
@ -41,22 +41,24 @@ rm -rf $RPM_BUILD_ROOT
|
|||
|
||||
|
||||
%post
|
||||
touch --no-create %{_datadir}/icons/hicolor || :
|
||||
if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
|
||||
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||
fi
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
|
||||
%postun
|
||||
touch --no-create %{_datadir}/icons/hicolor || :
|
||||
if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
|
||||
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||
if [ $1 -eq 0 ] ; then
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
%posttrans
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING ChangeLog README TODO
|
||||
%doc AUTHORS COPYING ChangeLog NEWS README
|
||||
%{_bindir}/xfce4-notes-settings
|
||||
%{_libexecdir}/xfce4/panel-plugins/%{name}
|
||||
%{_datadir}/xfce4/panel-plugins/*.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
||||
|
|
@ -65,6 +67,16 @@ fi
|
|||
|
||||
|
||||
%changelog
|
||||
* Fri Sep 04 2009 Christoph Wickert <cwickert@fedoraproject.org> - 1.7.1-1
|
||||
- Update to 1.7.1
|
||||
|
||||
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Fri Jul 03 2009 Christoph Wickert <cwickert@fedoraproject.org> - 1.7.0-1
|
||||
- Update to 1.7.0
|
||||
- Update gtk-update-icon-cache scriptlets
|
||||
|
||||
* Sun Mar 01 2009 Christoph Wickert <cwickert@fedoraproject.org> - 1.6.4-1
|
||||
- Update to 1.6.4
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue