rpms/jbigkit/devel jbigkit.spec,1.1,1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/jbigkit/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10054
Modified Files:
jbigkit.spec
Log Message:
rebuild
Index: jbigkit.spec
===================================================================
RCS file: /cvs/free/rpms/jbigkit/devel/jbigkit.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- jbigkit.spec 3 Aug 2008 12:19:03 -0000 1.1
+++ jbigkit.spec 3 Aug 2008 12:20:38 -0000 1.2
@@ -1,6 +1,6 @@
Name: jbigkit
Version: 1.6
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: JBIG1 lossless image compression tools
Group: Applications/Multimedia
@@ -92,6 +92,9 @@
%changelog
+* Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1.6-3
+- rebuild
+
* Sun Oct 1 2006 David Woodhouse <dwmw2(a)infradead.org> 1.6-2
- Review fixes
16 years, 3 months
rpms/jbigkit/devel jbigkit-1.6-shlib.patch, NONE, 1.1 jbigkit.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/jbigkit/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9601
Modified Files:
.cvsignore sources
Added Files:
jbigkit-1.6-shlib.patch jbigkit.spec
Log Message:
import jbigkit
jbigkit-1.6-shlib.patch:
--- NEW FILE jbigkit-1.6-shlib.patch ---
--- jbigkit/pbmtools/Makefile.shlib 2003-06-11 18:27:22.000000000 +0100
+++ jbigkit/pbmtools/Makefile 2006-09-12 14:06:14.000000000 +0100
@@ -9,19 +9,19 @@ CFLAGS = -g -Wall -ansi -pedantic -I../l
.SUFFIXES: .1 .5 .txt $(SUFFIXES)
-all: pbmtojbg jbgtopbm pbmtojbg.txt jbgtopbm.txt pbm.txt pgm.txt
+all: pbmtojbg jbgtopbm # pbmtojbg.txt jbgtopbm.txt pbm.txt pgm.txt
-pbmtojbg: pbmtojbg.o ../libjbig/libjbig.a
+pbmtojbg: pbmtojbg.o ../libjbig/libjbig.so.$(VERSION)
$(CC) $(CFLAGS) -o pbmtojbg pbmtojbg.o -L../libjbig -ljbig
-jbgtopbm: jbgtopbm.o ../libjbig/libjbig.a
+jbgtopbm: jbgtopbm.o ../libjbig/libjbig.so.$(VERSION)
$(CC) $(CFLAGS) -o jbgtopbm jbgtopbm.o -L../libjbig -ljbig
jbgtopbm.o: jbgtopbm.c ../libjbig/jbig.h
pbmtojbg.o: pbmtojbg.c ../libjbig/jbig.h
-../libjbig/libjbig.a: ../libjbig/jbig.c ../libjbig/jbig.h
- cd ../libjbig ; make libjbig.a
+../libjbig/libjbig.so.$(VERSION): ../libjbig/jbig.c ../libjbig/jbig.h
+ cd ../libjbig ; make libjbig.so.$(VERSION)
test: pbmtojbg jbgtopbm
make IMG=ccitt1 OPTIONSJ= OPTIONSP= dotest1
--- jbigkit/libjbig/Makefile.shlib 2004-06-08 15:40:06.000000000 +0100
+++ jbigkit/libjbig/Makefile 2006-09-12 14:07:26.000000000 +0100
@@ -6,19 +6,24 @@
# Options for the compiler: A high optimization level is suggested
CFLAGS = -O -Wall -ansi -pedantic
+PICFLAGS := -fPIC -DPIC
-all: libjbig.a tstcodec
+all: libjbig.so.$(VERSION) tstcodec
-tstcodec: tstcodec.c jbig.c jbig.h jbig_tab.o
- $(CC) $(CFLAGS) -o tstcodec -DTEST_CODEC tstcodec.c jbig.c \
- jbig_tab.o
-
-libjbig.a: jbig.o jbig_tab.o
- rm -f libjbig.a
- ar rc libjbig.a jbig.o jbig_tab.o
- -ranlib libjbig.a
+tstcodec: tstcodec.c jbig.c jbig_tab.c
+ $(CC) $(CFLAGS) -DTEST_CODEC -o $@ $^
+
+libjbig.so.$(VERSION): jbig.o jbig_tab.o jbig.h libjbig.so
+ $(CC) -shared -Wl,-soname,$@ -o $@ jbig.o jbig_tab.o
+
+libjbig.so:
+ ln -sf $@.$(VERSION) $@
jbig.o: jbig.c jbig.h
+ $(CC) $(CFLAGS) $(PICFLAGS) -c -o $@ $<
+
+jbig_tab.o: jbig_tab.c
+ $(CC) $(CFLAGS) $(PICFLAGS) -c -o $@ $<
test: tstcodec
./tstcodec
@@ -27,4 +32,4 @@ t82test.pbm: tstcodec
./tstcodec $@
clean:
- rm -f *.o *~ core gmon.out dbg_d\=??.pbm tstcodec t82test.pbm
+ rm -f *.o *~ core gmon.out dbg_d\=??.pbm tstcodec t82test.pbm libjbig.so*
--- jbigkit/Makefile.shlib 2004-06-11 19:05:26.000000000 +0100
+++ jbigkit/Makefile 2006-09-12 14:06:14.000000000 +0100
@@ -11,6 +11,7 @@ CCFLAGS = -O2 -W
CFLAGS = $(CCFLAGS) -I../libjbig
VERSION=1.6
+export VERSION
all: lib pbm
@echo "Enter 'make test' in order to start some automatic tests."
@@ -23,7 +24,7 @@ pbm: lib
test: lib pbm
(cd libjbig; make "CC=$(CC)" "CFLAGS=$(CFLAGS)" test)
- (cd pbmtools; make "CC=$(CC)" "CFLAGS=$(CFLAGS)" test)
+ (cd pbmtools; LD_LIBRARY_PATH=../libjbig make "CC=$(CC)" "CFLAGS=$(CFLAGS)" test)
clean:
rm -f *~ core
--- NEW FILE jbigkit.spec ---
Name: jbigkit
Version: 1.6
Release: 2%{?dist}
Summary: JBIG1 lossless image compression tools
Group: Applications/Multimedia
License: GPL
URL: http://www.cl.cam.ac.uk/~mgk25/jbigkit/
Source0: http://www.cl.cam.ac.uk/~mgk25/download/%{name}-%{version}.tar.gz
Patch0: jbigkit-1.6-shlib.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%package libs
Summary: JBIG1 lossless image compression library
Group: Applications/Multimedia
%package devel
Summary: JBIG1 lossless image compression library -- development files
Group: Applications/Multimedia
Requires: jbigkit-libs = %{version}-%{release}
%description libs
JBIG-KIT provides a portable library of compression and decompression
functions with a documented interface that you can include very easily
into your image or document processing software. In addition, JBIG-KIT
provides ready-to-use compression and decompression programs with a
simple command line interface (similar to the converters found in
netpbm).
JBIG-KIT implements the specification:
ISO/IEC 11544:1993 and ITU-T Recommendation T.82(1993):
Information technology — Coded representation of picture and audio
information — Progressive bi-level image compression
which is commonly referred to as the “JBIG1 standard”
%description devel
The jbigkit-devel package contains files needed for development using
the JBIG-KIT image compression library.
%description
The jbigkit package contains tools for converting between PBM and JBIG1
formats.
%prep
%setup -q -n jbigkit
%patch0 -p1 -b .shlib
%build
make %{?_smp_mflags} CCFLAGS="$RPM_OPT_FLAGS"
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_libdir}
mkdir -p $RPM_BUILD_ROOT%{_includedir}
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
install -p -m0755 libjbig/libjbig.so.%{version} $RPM_BUILD_ROOT/%{_libdir}
ln -sf libjbig.so.%{version} $RPM_BUILD_ROOT/%{_libdir}/libjbig.so
install -p -m0644 libjbig/jbig.h $RPM_BUILD_ROOT%{_includedir}
install -p -m0755 pbmtools/???to??? $RPM_BUILD_ROOT%{_bindir}
install -p -m0644 pbmtools/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
%clean
rm -rf $RPM_BUILD_ROOT
%check
make test
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_bindir}/???to???
%{_mandir}/man1/*
%files libs
%{_libdir}/libjbig.so.%{version}
%doc COPYING ANNOUNCE TODO INSTALL CHANGES
%files devel
%{_libdir}/libjbig.so
%{_includedir}/jbig.h
%changelog
* Sun Oct 1 2006 David Woodhouse <dwmw2(a)infradead.org> 1.6-2
- Review fixes
* Tue Sep 12 2006 David Woodhouse <dwmw2(a)infradead.org> 1.6-1
- Initial version
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/jbigkit/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 22 Jul 2008 16:51:30 -0000 1.1
+++ .cvsignore 3 Aug 2008 12:19:03 -0000 1.2
@@ -0,0 +1 @@
+jbigkit-1.6.tar.gz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/jbigkit/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 22 Jul 2008 16:51:30 -0000 1.1
+++ sources 3 Aug 2008 12:19:03 -0000 1.2
@@ -0,0 +1 @@
+ce196e45f293d40ba76af3dc981ccfd7 jbigkit-1.6.tar.gz
16 years, 3 months
rpms/gstreamer-plugins-bad/devel .cvsignore, 1.2, 1.3 gstreamer-plugins-bad-0.10.5-sys-modplug.patch, 1.1, 1.2 gstreamer-plugins-bad.spec, 1.2, 1.3 sources, 1.2, 1.3 gst-plugins-bad-0.10.7-new-dirac.patch, 1.1, NONE
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/gstreamer-plugins-bad/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7848
Modified Files:
.cvsignore gstreamer-plugins-bad-0.10.5-sys-modplug.patch
gstreamer-plugins-bad.spec sources
Removed Files:
gst-plugins-bad-0.10.7-new-dirac.patch
Log Message:
* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.8-2
- Release bump to keep rpmfusion version higher then livna
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gstreamer-plugins-bad/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 22 Jul 2008 19:04:28 -0000 1.2
+++ .cvsignore 1 Aug 2008 15:08:37 -0000 1.3
@@ -1 +1 @@
-gst-plugins-bad-0.10.7.tar.bz2
+gst-plugins-bad-0.10.8.tar.bz2
gstreamer-plugins-bad-0.10.5-sys-modplug.patch:
Index: gstreamer-plugins-bad-0.10.5-sys-modplug.patch
===================================================================
RCS file: /cvs/free/rpms/gstreamer-plugins-bad/devel/gstreamer-plugins-bad-0.10.5-sys-modplug.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gstreamer-plugins-bad-0.10.5-sys-modplug.patch 22 Jul 2008 19:04:28 -0000 1.1
+++ gstreamer-plugins-bad-0.10.5-sys-modplug.patch 1 Aug 2008 15:08:37 -0000 1.2
@@ -1,6 +1,6 @@
-diff -up gst-plugins-bad-0.10.7/gst/modplug/Makefile.am.sys-modplug gst-plugins-bad-0.10.7/gst/modplug/Makefile.am
---- gst-plugins-bad-0.10.7/gst/modplug/Makefile.am.sys-modplug 2008-02-23 16:01:32.000000000 +0100
-+++ gst-plugins-bad-0.10.7/gst/modplug/Makefile.am 2008-04-24 13:12:34.000000000 +0200
+diff -up gst-plugins-bad-0.10.8/gst/modplug/Makefile.am.foo gst-plugins-bad-0.10.8/gst/modplug/Makefile.am
+--- gst-plugins-bad-0.10.8/gst/modplug/Makefile.am.foo 2008-04-20 15:06:06.000000000 +0200
++++ gst-plugins-bad-0.10.8/gst/modplug/Makefile.am 2008-08-01 15:58:29.000000000 +0200
@@ -1,10 +1,8 @@
-SUBDIRS=libmodplug .
-
@@ -13,46 +13,42 @@
libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstmodplug.h
-diff -up gst-plugins-bad-0.10.7/gst/modplug/gstmodplug.cc.sys-modplug gst-plugins-bad-0.10.7/gst/modplug/gstmodplug.cc
---- gst-plugins-bad-0.10.7/gst/modplug/gstmodplug.cc.sys-modplug 2007-10-10 13:44:01.000000000 +0200
-+++ gst-plugins-bad-0.10.7/gst/modplug/gstmodplug.cc 2008-04-24 13:10:39.000000000 +0200
-@@ -44,8 +44,8 @@
- #include "config.h"
- #endif
-
--#include "libmodplug/stdafx.h"
--#include "libmodplug/sndfile.h"
-+#include <libmodplug/stdafx.h>
-+#include <libmodplug/sndfile.h>
-
- #include "gstmodplug.h"
-
-diff -up gst-plugins-bad-0.10.7/gst/modplug/Makefile.in.sys-modplug gst-plugins-bad-0.10.7/gst/modplug/Makefile.in
---- gst-plugins-bad-0.10.7/gst/modplug/Makefile.in.sys-modplug 2008-04-24 01:33:17.000000000 +0200
-+++ gst-plugins-bad-0.10.7/gst/modplug/Makefile.in 2008-04-24 13:12:13.000000000 +0200
-@@ -530,13 +530,13 @@ sbindir = @sbindir@
+diff -up gst-plugins-bad-0.10.8/gst/modplug/Makefile.in.foo gst-plugins-bad-0.10.8/gst/modplug/Makefile.in
+--- gst-plugins-bad-0.10.8/gst/modplug/Makefile.in.foo 2008-07-31 23:54:41.000000000 +0200
++++ gst-plugins-bad-0.10.8/gst/modplug/Makefile.in 2008-08-01 16:00:44.000000000 +0200
+@@ -84,7 +84,6 @@ pluginLTLIBRARIES_INSTALL = $(INSTALL)
+ LTLIBRARIES = $(plugin_LTLIBRARIES)
+ am__DEPENDENCIES_1 =
+ libgstmodplug_la_DEPENDENCIES = \
+- $(top_builddir)/gst/modplug/libmodplug/libmodplug.la \
+ $(am__DEPENDENCIES_1)
+ am_libgstmodplug_la_OBJECTS = libgstmodplug_la-gstmodplug.lo
+ libgstmodplug_la_OBJECTS = $(am_libgstmodplug_la_OBJECTS)
+@@ -617,11 +616,11 @@ sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
-SUBDIRS = libmodplug .
+SUBDIRS = .
-
plugin_LTLIBRARIES = libgstmodplug.la
-
libgstmodplug_la_SOURCES = gstmodplug.cc
libgstmodplug_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS)
-libgstmodplug_la_LIBADD = $(top_builddir)/gst/modplug/libmodplug/libmodplug.la $(GST_PLUGINS_BASE_LIBS) -lstdc++
+libgstmodplug_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lstdc++ -lmodplug
libgstmodplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
-
noinst_HEADERS = gstmodplug.h
-@@ -547,8 +547,7 @@ CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
- LTLIBRARIES = $(plugin_LTLIBRARIES)
+ all: all-recursive
+diff -up gst-plugins-bad-0.10.8/gst/modplug/gstmodplug.cc.foo gst-plugins-bad-0.10.8/gst/modplug/gstmodplug.cc
+--- gst-plugins-bad-0.10.8/gst/modplug/gstmodplug.cc.foo 2008-07-19 15:18:20.000000000 +0200
++++ gst-plugins-bad-0.10.8/gst/modplug/gstmodplug.cc 2008-08-01 15:58:29.000000000 +0200
+@@ -43,8 +43,8 @@
+ #include "config.h"
+ #endif
--libgstmodplug_la_DEPENDENCIES = \
-- $(top_builddir)/gst/modplug/libmodplug/libmodplug.la
-+libgstmodplug_la_DEPENDENCIES =
- am_libgstmodplug_la_OBJECTS = libgstmodplug_la-gstmodplug.lo
- libgstmodplug_la_OBJECTS = $(am_libgstmodplug_la_OBJECTS)
+-#include "libmodplug/stdafx.h"
+-#include "libmodplug/sndfile.h"
++#include <libmodplug/stdafx.h>
++#include <libmodplug/sndfile.h>
+
+ #include "gstmodplug.h"
Index: gstreamer-plugins-bad.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer-plugins-bad/devel/gstreamer-plugins-bad.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gstreamer-plugins-bad.spec 24 Jul 2008 09:20:55 -0000 1.2
+++ gstreamer-plugins-bad.spec 1 Aug 2008 15:08:37 -0000 1.3
@@ -10,15 +10,14 @@
Summary: GStreamer streaming media framework "bad" plug-ins
Name: gstreamer-plugins-bad
-Version: 0.10.7
-Release: 3%{?dist}
+Version: 0.10.8
+Release: 2%{?dist}
License: LGPLv2+
Group: Applications/Multimedia
URL: http://gstreamer.freedesktop.org/
Source: http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-%{ve...
Patch1: gstreamer-plugins-bad-0.10.5-sys-modplug.patch
Patch2: gst-plugins-bad-0.10.5-mms-seek.patch
-Patch3: gst-plugins-bad-0.10.7-new-dirac.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: %{gstreamer} >= %{gst_minver}
BuildRequires: %{gstreamer}-devel >= %{gst_minver}
@@ -108,7 +107,6 @@
%setup -q -n gst-plugins-bad-%{version}
%patch1 -p1
%patch2 -p1
-%patch3 -p1
### we use the system version of libmodplug
%{__rm} -r gst/modplug/libmodplug/*
touch gst/modplug/libmodplug/Makefile.in
@@ -166,7 +164,6 @@
%{_libdir}/gstreamer-%{majorminor}/libgstflvdemux.so
%{_libdir}/gstreamer-%{majorminor}/libgstfreeze.so
%{_libdir}/gstreamer-%{majorminor}/libgsth264parse.so
-%{_libdir}/gstreamer-%{majorminor}/libgstinterleave.so
%{_libdir}/gstreamer-%{majorminor}/libgstrfbsrc.so
%{_libdir}/gstreamer-%{majorminor}/libgstmpeg4videoparse.so
%{_libdir}/gstreamer-%{majorminor}/libgstmpegtsparse.so
@@ -178,7 +175,6 @@
%ifarch %{ix86} x86_64
%{_libdir}/gstreamer-%{majorminor}/libgstreal.so
%endif
-%{_libdir}/gstreamer-%{majorminor}/libgstreplaygain.so
%{_libdir}/gstreamer-%{majorminor}/libgstrtpmanager.so
%{_libdir}/gstreamer-%{majorminor}/libgstsdpelem.so
%{_libdir}/gstreamer-%{majorminor}/libgstselector.so
@@ -241,8 +237,11 @@
%changelog
-* Wed Jul 23 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.7-3
-- Release bump for rpmfusion
+* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.8-2
+- Release bump to keep rpmfusion version higher then livna
+
+* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.8-1
+- New upstream release 0.10.8
- Merge changes from latest freshrpms package: enable ofa and dirac plugins
* Fri Jun 27 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.10.7-2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gstreamer-plugins-bad/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 22 Jul 2008 19:04:28 -0000 1.2
+++ sources 1 Aug 2008 15:08:37 -0000 1.3
@@ -1 +1 @@
-9a511c9e9a0510ca4e212ce1d67e2cba gst-plugins-bad-0.10.7.tar.bz2
+ddc8f92dab0081f131650ad6c95908b8 gst-plugins-bad-0.10.8.tar.bz2
--- gst-plugins-bad-0.10.7-new-dirac.patch DELETED ---
16 years, 3 months
rpms/vice/F-8 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 vice-1.19-datadir.patch, 1.1, 1.2 vice-htmlview.patch, 1.1, 1.2 vice-tmpnam.patch, 1.1, 1.2 vice.spec, 1.1, 1.2
by jwrdegoede
Author: jwrdegoede
Update of /cvs/nonfree/rpms/vice/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27808
Modified Files:
.cvsignore sources vice-1.19-datadir.patch vice-htmlview.patch
vice-tmpnam.patch vice.spec
Log Message:
* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0-1
- New upstream release 2.0
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-8/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 25 Jul 2008 19:55:08 -0000 1.2
+++ .cvsignore 1 Aug 2008 11:18:24 -0000 1.3
@@ -1,4 +1,4 @@
-vice-1.22.tar.gz
+vice-2.0.tar.gz
vice-largeicons.tar.bz2
vice-miniicons.tar.bz2
vice-normalicons.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-8/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 25 Jul 2008 19:55:08 -0000 1.2
+++ sources 1 Aug 2008 11:18:24 -0000 1.3
@@ -1,4 +1,4 @@
-33204acbb74bafb12594d39b55888626 vice-1.22.tar.gz
+e4af3962469cb2279429718946528f1d vice-2.0.tar.gz
a4936bbfe1cc7b37d4fd93f0901de974 vice-largeicons.tar.bz2
c944e3eeaac9c3962983423f8e7609e7 vice-miniicons.tar.bz2
1e024cef652bc4bf929905b182ef689b vice-normalicons.tar.bz2
vice-1.19-datadir.patch:
Index: vice-1.19-datadir.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-8/vice-1.19-datadir.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-1.19-datadir.patch 25 Jul 2008 19:55:08 -0000 1.1
+++ vice-1.19-datadir.patch 1 Aug 2008 11:18:24 -0000 1.2
@@ -1,8 +1,7 @@
-diff -up vice-1.22/src/arch/unix/archdep.h.foo vice-1.22/src/arch/unix/archdep.h
---- vice-1.22/src/arch/unix/archdep.h.foo 2007-04-29 20:50:17.000000000 +0200
-+++ vice-1.22/src/arch/unix/archdep.h 2008-07-25 21:49:40.000000000 +0200
-@@ -106,7 +106,7 @@
- extern const char *archdep_home_path(void);
+--- vice-2.0/src/arch/unix/archdep.h.foo 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/archdep.h 2008-08-01 10:19:47.000000000 +0200
+@@ -109,7 +109,7 @@ extern const char *archdep_home_path(voi
+ extern const char *archdep_pref_path;
/* Define the default system directory (where the ROMs are). */
-#ifdef __NetBSD__
@@ -10,27 +9,3 @@
#define LIBDIR PREFIX "/share/vice"
#else
#define LIBDIR PREFIX "/lib/vice"
-diff -up vice-1.22/src/arch/unix/x11/gnome/x11ui.c.foo vice-1.22/src/arch/unix/x11/gnome/x11ui.c
---- vice-1.22/src/arch/unix/x11/gnome/x11ui.c.foo 2007-08-04 15:24:43.000000000 +0200
-+++ vice-1.22/src/arch/unix/x11/gnome/x11ui.c 2008-07-25 21:49:40.000000000 +0200
-@@ -424,9 +424,9 @@ void archdep_ui_init(int argc, char *arg
- gtk_init(&fake_argc, &fake_args);
-
- /* set X11 fontpath */
-- if (access(PREFIX "/lib/vice/fonts/fonts.dir", R_OK) == 0)
-+ if (access(PREFIX "/share/vice/fonts/fonts.dir", R_OK) == 0)
- {
-- const char *cmd = "xset fp+ " PREFIX "/lib/vice/fonts";
-+ const char *cmd = "xset fp+ " PREFIX "/share/vice/fonts";
-
- if (system(cmd) != 0)
- fprintf(stderr, _("Can't add fontpath `%s'.\n"), cmd);
-@@ -1404,7 +1404,7 @@ void ui_exit(void)
- ui_dispatch_events();
-
- /* remove fontpath, Don't care about result */
-- system("xset fp- " PREFIX "/lib/vice/fonts");
-+ system("xset fp- " PREFIX "/share/vice/fonts");
-
- lib_free(s);
- exit(0);
vice-htmlview.patch:
Index: vice-htmlview.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-8/vice-htmlview.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-htmlview.patch 25 Jul 2008 19:55:08 -0000 1.1
+++ vice-htmlview.patch 1 Aug 2008 11:18:24 -0000 1.2
@@ -1,11 +1,12 @@
---- vice-1.21/src/arch/unix/x11/ui-resources.c.htmlview 2007-03-03 10:07:37.000000000 +0100
-+++ vice-1.21/src/arch/unix/x11/ui-resources.c 2007-03-10 14:44:58.000000000 +0100
-@@ -112,7 +112,7 @@
+diff -up vice-2.0/src/arch/unix/x11/ui-resources.c.bar vice-2.0/src/arch/unix/x11/ui-resources.c
+--- vice-2.0/src/arch/unix/x11/ui-resources.c.bar 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/x11/ui-resources.c 2008-08-01 10:24:23.000000000 +0200
+@@ -112,7 +112,7 @@ static const resource_string_t resources
#ifdef MACOSX_SUPPORT
"/usr/bin/open %s",
#else
-- "netscape %s",
-+ "htmlview %s",
+- "firefox %s",
++ "xdg-open %s",
#endif
RES_EVENT_NO, NULL,
&ui_resources.html_browser_command,
vice-tmpnam.patch:
Index: vice-tmpnam.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-8/vice-tmpnam.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-tmpnam.patch 25 Jul 2008 19:55:08 -0000 1.1
+++ vice-tmpnam.patch 1 Aug 2008 11:18:24 -0000 1.2
@@ -1,17 +1,18 @@
---- vice-1.20/src/arch/unix/archdep.c.tmpnam 2006-07-10 16:24:09.000000000 +0200
-+++ vice-1.20/src/arch/unix/archdep.c 2006-09-23 09:18:46.000000000 +0200
-@@ -373,36 +373,28 @@
- }
+diff -up vice-2.0/src/arch/unix/archdep.c.foobar vice-2.0/src/arch/unix/archdep.c
+--- vice-2.0/src/arch/unix/archdep.c.foobar 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/archdep.c 2008-08-01 10:27:52.000000000 +0200
+@@ -416,37 +416,27 @@ char *archdep_quote_parameter(const char
char *archdep_tmpnam(void)
--{
+ {
-#ifdef GP2X
- static unsigned int tmp_string_counter=0;
- char tmp_string[32];
-
- sprintf(tmp_string,"vice%d.tmp",tmp_string_counter++);
- return lib_stralloc(tmp_string);
--#elif HAVE_MKSTEMP
+-#else
+-#ifdef HAVE_MKSTEMP
- char *tmpName;
- const char mkstempTemplate[] = "/vice.XXXXXX";
- int fd;
@@ -21,7 +22,6 @@
- if ((tmp = getenv("TMPDIR")) != NULL ) {
- strncpy(tmpName, tmp, ioutil_maxpathlen());
- tmpName[ioutil_maxpathlen() - sizeof(mkstempTemplate)] = '\0';
-+{
+ char *tmp, *name;
+
+ name = util_concat(archdep_home_path(), "/.vice", NULL);
@@ -50,6 +50,7 @@
+ return tmp;
#else
- return lib_stralloc(tmpnam(NULL));
+-#endif
+ name = lib_stralloc(tmp);
+ free(tmp);
+ return name;
Index: vice.spec
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-8/vice.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice.spec 25 Jul 2008 19:55:08 -0000 1.1
+++ vice.spec 1 Aug 2008 11:18:24 -0000 1.2
@@ -1,11 +1,11 @@
Name: vice
-Version: 1.22
-Release: 2%{?dist}
+Version: 2.0
+Release: 1%{?dist}
Summary: Emulator for a variety of Commodore 8bit machines
Group: Applications/Emulators
License: GPL
URL: http://www.viceteam.org/
-Source0: http://www.viceteam.org/online/vice-%{version}.tar.gz
+Source0: http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-...
Source1: x128.desktop
Source2: x64.desktop
Source3: xcbm-ii.desktop
@@ -116,6 +116,9 @@
%changelog
+* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0-1
+- New upstream release 2.0
+
* Fri Jul 25 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 1.22-2
- Release bump for rpmfusion
16 years, 3 months
rpms/vice/F-9 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 vice-1.19-datadir.patch, 1.1, 1.2 vice-htmlview.patch, 1.1, 1.2 vice-tmpnam.patch, 1.1, 1.2 vice.spec, 1.1, 1.2
by jwrdegoede
Author: jwrdegoede
Update of /cvs/nonfree/rpms/vice/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27713
Modified Files:
.cvsignore sources vice-1.19-datadir.patch vice-htmlview.patch
vice-tmpnam.patch vice.spec
Log Message:
* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0-1
- New upstream release 2.0
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-9/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 25 Jul 2008 19:52:59 -0000 1.2
+++ .cvsignore 1 Aug 2008 11:18:07 -0000 1.3
@@ -1,4 +1,4 @@
-vice-1.22.tar.gz
+vice-2.0.tar.gz
vice-largeicons.tar.bz2
vice-miniicons.tar.bz2
vice-normalicons.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-9/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 25 Jul 2008 19:52:59 -0000 1.2
+++ sources 1 Aug 2008 11:18:07 -0000 1.3
@@ -1,4 +1,4 @@
-33204acbb74bafb12594d39b55888626 vice-1.22.tar.gz
+e4af3962469cb2279429718946528f1d vice-2.0.tar.gz
a4936bbfe1cc7b37d4fd93f0901de974 vice-largeicons.tar.bz2
c944e3eeaac9c3962983423f8e7609e7 vice-miniicons.tar.bz2
1e024cef652bc4bf929905b182ef689b vice-normalicons.tar.bz2
vice-1.19-datadir.patch:
Index: vice-1.19-datadir.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-9/vice-1.19-datadir.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-1.19-datadir.patch 25 Jul 2008 19:52:59 -0000 1.1
+++ vice-1.19-datadir.patch 1 Aug 2008 11:18:07 -0000 1.2
@@ -1,8 +1,7 @@
-diff -up vice-1.22/src/arch/unix/archdep.h.foo vice-1.22/src/arch/unix/archdep.h
---- vice-1.22/src/arch/unix/archdep.h.foo 2007-04-29 20:50:17.000000000 +0200
-+++ vice-1.22/src/arch/unix/archdep.h 2008-07-25 21:49:40.000000000 +0200
-@@ -106,7 +106,7 @@
- extern const char *archdep_home_path(void);
+--- vice-2.0/src/arch/unix/archdep.h.foo 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/archdep.h 2008-08-01 10:19:47.000000000 +0200
+@@ -109,7 +109,7 @@ extern const char *archdep_home_path(voi
+ extern const char *archdep_pref_path;
/* Define the default system directory (where the ROMs are). */
-#ifdef __NetBSD__
@@ -10,27 +9,3 @@
#define LIBDIR PREFIX "/share/vice"
#else
#define LIBDIR PREFIX "/lib/vice"
-diff -up vice-1.22/src/arch/unix/x11/gnome/x11ui.c.foo vice-1.22/src/arch/unix/x11/gnome/x11ui.c
---- vice-1.22/src/arch/unix/x11/gnome/x11ui.c.foo 2007-08-04 15:24:43.000000000 +0200
-+++ vice-1.22/src/arch/unix/x11/gnome/x11ui.c 2008-07-25 21:49:40.000000000 +0200
-@@ -424,9 +424,9 @@ void archdep_ui_init(int argc, char *arg
- gtk_init(&fake_argc, &fake_args);
-
- /* set X11 fontpath */
-- if (access(PREFIX "/lib/vice/fonts/fonts.dir", R_OK) == 0)
-+ if (access(PREFIX "/share/vice/fonts/fonts.dir", R_OK) == 0)
- {
-- const char *cmd = "xset fp+ " PREFIX "/lib/vice/fonts";
-+ const char *cmd = "xset fp+ " PREFIX "/share/vice/fonts";
-
- if (system(cmd) != 0)
- fprintf(stderr, _("Can't add fontpath `%s'.\n"), cmd);
-@@ -1404,7 +1404,7 @@ void ui_exit(void)
- ui_dispatch_events();
-
- /* remove fontpath, Don't care about result */
-- system("xset fp- " PREFIX "/lib/vice/fonts");
-+ system("xset fp- " PREFIX "/share/vice/fonts");
-
- lib_free(s);
- exit(0);
vice-htmlview.patch:
Index: vice-htmlview.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-9/vice-htmlview.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-htmlview.patch 25 Jul 2008 19:52:59 -0000 1.1
+++ vice-htmlview.patch 1 Aug 2008 11:18:07 -0000 1.2
@@ -1,11 +1,12 @@
---- vice-1.21/src/arch/unix/x11/ui-resources.c.htmlview 2007-03-03 10:07:37.000000000 +0100
-+++ vice-1.21/src/arch/unix/x11/ui-resources.c 2007-03-10 14:44:58.000000000 +0100
-@@ -112,7 +112,7 @@
+diff -up vice-2.0/src/arch/unix/x11/ui-resources.c.bar vice-2.0/src/arch/unix/x11/ui-resources.c
+--- vice-2.0/src/arch/unix/x11/ui-resources.c.bar 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/x11/ui-resources.c 2008-08-01 10:24:23.000000000 +0200
+@@ -112,7 +112,7 @@ static const resource_string_t resources
#ifdef MACOSX_SUPPORT
"/usr/bin/open %s",
#else
-- "netscape %s",
-+ "htmlview %s",
+- "firefox %s",
++ "xdg-open %s",
#endif
RES_EVENT_NO, NULL,
&ui_resources.html_browser_command,
vice-tmpnam.patch:
Index: vice-tmpnam.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-9/vice-tmpnam.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-tmpnam.patch 25 Jul 2008 19:52:59 -0000 1.1
+++ vice-tmpnam.patch 1 Aug 2008 11:18:07 -0000 1.2
@@ -1,17 +1,18 @@
---- vice-1.20/src/arch/unix/archdep.c.tmpnam 2006-07-10 16:24:09.000000000 +0200
-+++ vice-1.20/src/arch/unix/archdep.c 2006-09-23 09:18:46.000000000 +0200
-@@ -373,36 +373,28 @@
- }
+diff -up vice-2.0/src/arch/unix/archdep.c.foobar vice-2.0/src/arch/unix/archdep.c
+--- vice-2.0/src/arch/unix/archdep.c.foobar 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/archdep.c 2008-08-01 10:27:52.000000000 +0200
+@@ -416,37 +416,27 @@ char *archdep_quote_parameter(const char
char *archdep_tmpnam(void)
--{
+ {
-#ifdef GP2X
- static unsigned int tmp_string_counter=0;
- char tmp_string[32];
-
- sprintf(tmp_string,"vice%d.tmp",tmp_string_counter++);
- return lib_stralloc(tmp_string);
--#elif HAVE_MKSTEMP
+-#else
+-#ifdef HAVE_MKSTEMP
- char *tmpName;
- const char mkstempTemplate[] = "/vice.XXXXXX";
- int fd;
@@ -21,7 +22,6 @@
- if ((tmp = getenv("TMPDIR")) != NULL ) {
- strncpy(tmpName, tmp, ioutil_maxpathlen());
- tmpName[ioutil_maxpathlen() - sizeof(mkstempTemplate)] = '\0';
-+{
+ char *tmp, *name;
+
+ name = util_concat(archdep_home_path(), "/.vice", NULL);
@@ -50,6 +50,7 @@
+ return tmp;
#else
- return lib_stralloc(tmpnam(NULL));
+-#endif
+ name = lib_stralloc(tmp);
+ free(tmp);
+ return name;
Index: vice.spec
===================================================================
RCS file: /cvs/nonfree/rpms/vice/F-9/vice.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice.spec 25 Jul 2008 19:52:59 -0000 1.1
+++ vice.spec 1 Aug 2008 11:18:07 -0000 1.2
@@ -1,11 +1,11 @@
Name: vice
-Version: 1.22
-Release: 2%{?dist}
+Version: 2.0
+Release: 1%{?dist}
Summary: Emulator for a variety of Commodore 8bit machines
Group: Applications/Emulators
License: GPL
URL: http://www.viceteam.org/
-Source0: http://www.viceteam.org/online/vice-%{version}.tar.gz
+Source0: http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-...
Source1: x128.desktop
Source2: x64.desktop
Source3: xcbm-ii.desktop
@@ -116,6 +116,9 @@
%changelog
+* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0-1
+- New upstream release 2.0
+
* Fri Jul 25 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 1.22-2
- Release bump for rpmfusion
16 years, 3 months
rpms/vice/devel .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 vice-1.19-datadir.patch, 1.2, 1.3 vice-htmlview.patch, 1.1, 1.2 vice-tmpnam.patch, 1.1, 1.2 vice.spec, 1.2, 1.3
by jwrdegoede
Author: jwrdegoede
Update of /cvs/nonfree/rpms/vice/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24513
Modified Files:
.cvsignore sources vice-1.19-datadir.patch vice-htmlview.patch
vice-tmpnam.patch vice.spec
Log Message:
* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0-1
- New upstream release 2.0
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/vice/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 25 Jul 2008 19:37:37 -0000 1.2
+++ .cvsignore 1 Aug 2008 10:23:03 -0000 1.3
@@ -1,4 +1,4 @@
-vice-1.22.tar.gz
+vice-2.0.tar.gz
vice-largeicons.tar.bz2
vice-miniicons.tar.bz2
vice-normalicons.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/vice/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 25 Jul 2008 19:37:37 -0000 1.2
+++ sources 1 Aug 2008 10:23:03 -0000 1.3
@@ -1,4 +1,4 @@
-33204acbb74bafb12594d39b55888626 vice-1.22.tar.gz
+e4af3962469cb2279429718946528f1d vice-2.0.tar.gz
a4936bbfe1cc7b37d4fd93f0901de974 vice-largeicons.tar.bz2
c944e3eeaac9c3962983423f8e7609e7 vice-miniicons.tar.bz2
1e024cef652bc4bf929905b182ef689b vice-normalicons.tar.bz2
vice-1.19-datadir.patch:
Index: vice-1.19-datadir.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/devel/vice-1.19-datadir.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vice-1.19-datadir.patch 25 Jul 2008 19:50:53 -0000 1.2
+++ vice-1.19-datadir.patch 1 Aug 2008 10:23:03 -0000 1.3
@@ -1,8 +1,7 @@
-diff -up vice-1.22/src/arch/unix/archdep.h.foo vice-1.22/src/arch/unix/archdep.h
---- vice-1.22/src/arch/unix/archdep.h.foo 2007-04-29 20:50:17.000000000 +0200
-+++ vice-1.22/src/arch/unix/archdep.h 2008-07-25 21:49:40.000000000 +0200
-@@ -106,7 +106,7 @@
- extern const char *archdep_home_path(void);
+--- vice-2.0/src/arch/unix/archdep.h.foo 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/archdep.h 2008-08-01 10:19:47.000000000 +0200
+@@ -109,7 +109,7 @@ extern const char *archdep_home_path(voi
+ extern const char *archdep_pref_path;
/* Define the default system directory (where the ROMs are). */
-#ifdef __NetBSD__
@@ -10,27 +9,3 @@
#define LIBDIR PREFIX "/share/vice"
#else
#define LIBDIR PREFIX "/lib/vice"
-diff -up vice-1.22/src/arch/unix/x11/gnome/x11ui.c.foo vice-1.22/src/arch/unix/x11/gnome/x11ui.c
---- vice-1.22/src/arch/unix/x11/gnome/x11ui.c.foo 2007-08-04 15:24:43.000000000 +0200
-+++ vice-1.22/src/arch/unix/x11/gnome/x11ui.c 2008-07-25 21:49:40.000000000 +0200
-@@ -424,9 +424,9 @@ void archdep_ui_init(int argc, char *arg
- gtk_init(&fake_argc, &fake_args);
-
- /* set X11 fontpath */
-- if (access(PREFIX "/lib/vice/fonts/fonts.dir", R_OK) == 0)
-+ if (access(PREFIX "/share/vice/fonts/fonts.dir", R_OK) == 0)
- {
-- const char *cmd = "xset fp+ " PREFIX "/lib/vice/fonts";
-+ const char *cmd = "xset fp+ " PREFIX "/share/vice/fonts";
-
- if (system(cmd) != 0)
- fprintf(stderr, _("Can't add fontpath `%s'.\n"), cmd);
-@@ -1404,7 +1404,7 @@ void ui_exit(void)
- ui_dispatch_events();
-
- /* remove fontpath, Don't care about result */
-- system("xset fp- " PREFIX "/lib/vice/fonts");
-+ system("xset fp- " PREFIX "/share/vice/fonts");
-
- lib_free(s);
- exit(0);
vice-htmlview.patch:
Index: vice-htmlview.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/devel/vice-htmlview.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-htmlview.patch 25 Jul 2008 19:37:37 -0000 1.1
+++ vice-htmlview.patch 1 Aug 2008 10:23:03 -0000 1.2
@@ -1,11 +1,12 @@
---- vice-1.21/src/arch/unix/x11/ui-resources.c.htmlview 2007-03-03 10:07:37.000000000 +0100
-+++ vice-1.21/src/arch/unix/x11/ui-resources.c 2007-03-10 14:44:58.000000000 +0100
-@@ -112,7 +112,7 @@
+diff -up vice-2.0/src/arch/unix/x11/ui-resources.c.bar vice-2.0/src/arch/unix/x11/ui-resources.c
+--- vice-2.0/src/arch/unix/x11/ui-resources.c.bar 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/x11/ui-resources.c 2008-08-01 10:24:23.000000000 +0200
+@@ -112,7 +112,7 @@ static const resource_string_t resources
#ifdef MACOSX_SUPPORT
"/usr/bin/open %s",
#else
-- "netscape %s",
-+ "htmlview %s",
+- "firefox %s",
++ "xdg-open %s",
#endif
RES_EVENT_NO, NULL,
&ui_resources.html_browser_command,
vice-tmpnam.patch:
Index: vice-tmpnam.patch
===================================================================
RCS file: /cvs/nonfree/rpms/vice/devel/vice-tmpnam.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-tmpnam.patch 25 Jul 2008 19:37:37 -0000 1.1
+++ vice-tmpnam.patch 1 Aug 2008 10:23:03 -0000 1.2
@@ -1,17 +1,18 @@
---- vice-1.20/src/arch/unix/archdep.c.tmpnam 2006-07-10 16:24:09.000000000 +0200
-+++ vice-1.20/src/arch/unix/archdep.c 2006-09-23 09:18:46.000000000 +0200
-@@ -373,36 +373,28 @@
- }
+diff -up vice-2.0/src/arch/unix/archdep.c.foobar vice-2.0/src/arch/unix/archdep.c
+--- vice-2.0/src/arch/unix/archdep.c.foobar 2008-07-07 20:23:10.000000000 +0200
++++ vice-2.0/src/arch/unix/archdep.c 2008-08-01 10:27:52.000000000 +0200
+@@ -416,37 +416,27 @@ char *archdep_quote_parameter(const char
char *archdep_tmpnam(void)
--{
+ {
-#ifdef GP2X
- static unsigned int tmp_string_counter=0;
- char tmp_string[32];
-
- sprintf(tmp_string,"vice%d.tmp",tmp_string_counter++);
- return lib_stralloc(tmp_string);
--#elif HAVE_MKSTEMP
+-#else
+-#ifdef HAVE_MKSTEMP
- char *tmpName;
- const char mkstempTemplate[] = "/vice.XXXXXX";
- int fd;
@@ -21,7 +22,6 @@
- if ((tmp = getenv("TMPDIR")) != NULL ) {
- strncpy(tmpName, tmp, ioutil_maxpathlen());
- tmpName[ioutil_maxpathlen() - sizeof(mkstempTemplate)] = '\0';
-+{
+ char *tmp, *name;
+
+ name = util_concat(archdep_home_path(), "/.vice", NULL);
@@ -50,6 +50,7 @@
+ return tmp;
#else
- return lib_stralloc(tmpnam(NULL));
+-#endif
+ name = lib_stralloc(tmp);
+ free(tmp);
+ return name;
Index: vice.spec
===================================================================
RCS file: /cvs/nonfree/rpms/vice/devel/vice.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vice.spec 25 Jul 2008 19:50:53 -0000 1.2
+++ vice.spec 1 Aug 2008 10:23:03 -0000 1.3
@@ -1,11 +1,11 @@
Name: vice
-Version: 1.22
-Release: 2%{?dist}
+Version: 2.0
+Release: 1%{?dist}
Summary: Emulator for a variety of Commodore 8bit machines
Group: Applications/Emulators
License: GPL
URL: http://www.viceteam.org/
-Source0: http://www.viceteam.org/online/vice-%{version}.tar.gz
+Source0: http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-...
Source1: x128.desktop
Source2: x64.desktop
Source3: xcbm-ii.desktop
@@ -116,6 +116,9 @@
%changelog
+* Fri Aug 1 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 2.0-1
+- New upstream release 2.0
+
* Fri Jul 25 2008 Hans de Goede <j.w.r.degoede(a)hhs.nl> 1.22-2
- Release bump for rpmfusion
16 years, 3 months