Compare commits

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

16 commits

Author SHA1 Message Date
Bruno Wolff III
a005cb4b94 Not updated or needed these days. ember uses libwfut instead and that's the only world forge client we have. 2014-06-14 09:46:47 -05:00
Dennis Gilmore
64c80999cc - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-07 23:26:30 -05:00
Martin Preisler
2c13b2617c Rebuilt because of libgcj ABI break 2014-04-10 15:12:01 +02:00
Dennis Gilmore
764e317d5e - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 2013-08-04 01:48:53 -05:00
Parag Nemade
b2483a3425 Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077
- Cleanup spec as per recently changed packaging guidelines
2013-02-09 22:03:41 +05:30
Bruno Wolff III
8f3b37c549 Rebuild for libgcc soname bump 2013-01-26 09:10:40 -06:00
Dennis Gilmore
ec3a2373b6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-21 22:28:34 -05:00
Bruno Wolff III
43bc97d87c Rebuild for gcc update 2012-01-04 08:21:51 -06:00
Dennis Gilmore
09d5b9d76a - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 20:23:17 -06:00
Fedora Release Engineering
638d8e159c dist-git conversion 2010-07-29 15:16:15 +00:00
Bill Nottingham
69e5295a5b Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:43:12 +00:00
Jesse Keating
769152f1ed - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 07:12:14 +00:00
Jesse Keating
4e19a485f0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-25 18:27:31 +00:00
alexlan
aee7cb9c46 - Rebuild for new GCC 4.4 to fix broken deps 2009-02-08 12:46:57 +00:00
Michael Thomas
01655b404b Rebuild for new libgcj 2008-02-01 07:23:07 +00:00
Michael Thomas
25d0b076b8 - License tag clarification
- Better download URL
2007-08-23 00:50:49 +00:00
7 changed files with 1 additions and 137 deletions

View file

@ -1 +0,0 @@
WFUT-1.1.0.tar.gz

View file

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

1
dead.package Normal file
View file

@ -0,0 +1 @@
Not updated or needed these days. ember uses libwfut instead and that's the only world forge client we have.

View file

@ -1 +0,0 @@
72bed202a37f2aaee536a6264a4957f2 WFUT-1.1.0.tar.gz

View file

@ -1,12 +0,0 @@
[Desktop Entry]
Encoding=UTF-8
Name=wfut
GenericName=WorldForge media updater
Comment=Update the WorldForge media
Exec=wfut
Icon=wfut.png
Terminal=false
StartupNotify=false
Type=Application
Categories=Application;Game;
Version=1.0

BIN
wfut.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

102
wfut.spec
View file

@ -1,102 +0,0 @@
Name: wfut
Version: 1.1.0
Release: 3%{?dist}
Summary: Software updater tool for WorldForge applications
Group: Development/Libraries
License: GPL
URL: http://www.worldforge.org
Source0: http://dl.sourceforge.net/worldforge/srcs/WFUT-1.1.0.tar.gz
Source1: wfut.desktop
Source2: wfut.png
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gcc-java desktop-file-utils
%description
Software updater tool for WorldForge applications.
%prep
%setup -q -n WFUT-%{version}
sed -i -e 's/gcj -c/gcj $(RPM_OPT_FLAGS) -c/' src/Makefile.in
%build
# This should be compiling to native code now, making the JAR
# override unnecessary. Leave it in for now as a reminder of
# how to use it with gcc's jar program.
JAR=fastjar
export JAR
%configure
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
# The start script checks for a native binary, and if not found, will
# try to use java + jar file instead. But we are only building the
# native binary, so don't bother with this check.
mv $RPM_BUILD_ROOT%{_bindir}/wfut-bin $RPM_BUILD_ROOT%{_bindir}/wfut
desktop-file-install --vendor fedora \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
--add-category X-Fedora \
%{SOURCE1}
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
install -p %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/
%clean
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
%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
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README TODO
%{_bindir}/%{name}
%{_datadir}/applications/*.desktop
%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
%changelog
* Wed Mar 28 2007 Wart <wart at kobold dot ort> 1.1.0-3
- Enable use of RPM_OPT_FLAGS
* Thu Mar 1 2007 Wart <wart at kobold dot ort> 1.1.0-2
- Rebuild for new libgcj .so version
* Wed Feb 7 2007 Wart <wart at kobold dot ort> 1.1.0-1
- Update to 1.1.0
- Upstream moved sources to SourceForge
* Thu Aug 17 2006 Wart <wart at kobold dot ort> 1.0-3
- Remove unnecessary startup script.
- Added .desktop file
* Wed Aug 16 2006 Wart <wart at kobold dot ort> 1.0-2
- Removed BR: autoxxx which aren't needed anymore.
* Wed Aug 16 2006 Wart <wart at kobold dot ort> 1.0-1
- Update to latest WFUT public tarball.
* Tue Aug 15 2006 Wart <wart at kobold dot ort> 0.0.0-2
- Updated spec for FC5 and newer. This no longer builds
the WFUT.jar archive, but uses a native binary instead.
* Tue Jun 20 2006 Wart <wart at kobold dot ort> 0.0.0-1
- Initial package for Fedora