Compare commits

...
Sign in to create a new pull request.

6 commits

Author SHA1 Message Date
Fedora Release Engineering
7cb84e78c8 dist-git conversion 2010-07-29 15:44:01 +00:00
Bill Nottingham
710c8261ce Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:31:12 +00:00
Christoph Wickert
97f47472d1 Rebuild for Xfce 4.4.1 2007-04-28 16:45:05 +00:00
Christoph Wickert
bb0e1bdd1b update to 0.2.1 on Xfce 4.4 2007-01-27 20:26:09 +00:00
Christoph Wickert
756bd3961e cosmetical fix in summary 2007-01-03 02:04:07 +00:00
Warren Togami
b9c1e65840 Initialize branch FC-6 for xfce4-dict-plugin 2006-11-13 18:25:57 +00:00
5 changed files with 15 additions and 40 deletions

View file

@ -1 +0,0 @@
xfce4-dict-plugin-0.2.0.tar.bz2

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
xfce4-dict-plugin-0.2.1.tar.bz2

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: xfce4-dict-plugin
# $Id$
NAME := xfce4-dict-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)

View file

@ -1 +1 @@
ac2f3626858b7b6800ac43cc9de6e0bc xfce4-dict-plugin-0.2.0.tar.bz2
2ef7f110883a9d9316fd06a1c2a327da xfce4-dict-plugin-0.2.1.tar.bz2

View file

@ -1,17 +1,17 @@
Name: xfce4-dict-plugin
Version: 0.2.0
Version: 0.2.1
Release: 2%{?dist}
Summary: A XFCE panel plugin to query a Dict server
Summary: A Xfce panel plugin to query a Dict server
Group: User Interface/Desktops
License: GPL
URL: http://goodies.xfce.org/projects/panel-plugins/%{name}
Source0: http://files.uvena.de/xfce4-dict-plugin/xfce4-dict-plugin-0.2.0.tar.bz2
Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.90.2
BuildRequires: libxml2-devel, gettext, perl(XML::Parser)
Requires: xfce4-panel >= 4.3.99.2
Requires: xfce4-panel >= 4.4.0
%description
With this plugin you can query a dictionary server (see RFC 2229) to search
@ -21,36 +21,26 @@ offered by the server to improve your search results.
%prep
%setup -q
%build
%configure --disable-static
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%find_lang %{name}
%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
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
%postun
touch --no-create %{_datadir}/icons/hicolor || :
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING ChangeLog README
@ -58,8 +48,14 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/xfce4/panel-plugins/*.desktop
%{_datadir}/icons/hicolor/scalable/apps/dict-icon.svg
%changelog
* Sat Apr 28 2007 Christoph Wickert <fedora christoph-wickert de> - 0.2.1-2
- Rebuild for Xfce 4.4.1
* Mon Jan 22 2007 Christoph Wickert <fedora christoph-wickert de> - 0.2.1-1
- Update to 0.2.1 on Xfce 4.4.
- Update gtk-icon-cache scriptlets.
* Sun Nov 12 2006 Christoph Wickert <fedora christoph-wickert de> - 0.2.0-2
- Add %%defattr (#215169).