rpms/libmpeg2/devel libmpeg2.spec,1.2,1.3
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libmpeg2/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14953
Modified Files:
libmpeg2.spec
Log Message:
- Fix CFLAGS on x86 producing selinux denials.
Index: libmpeg2.spec
===================================================================
RCS file: /cvs/free/rpms/libmpeg2/devel/libmpeg2.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libmpeg2.spec 30 Jul 2008 05:16:34 -0000 1.2
+++ libmpeg2.spec 8 Oct 2008 01:36:19 -0000 1.3
@@ -1,6 +1,6 @@
Name: libmpeg2
Version: 0.5.1
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: MPEG-2 decoder libraries
Group: System Environment/Libraries
@@ -50,14 +50,22 @@
%build
-%configure --disable-static
+%configure --disable-static \
+%ifarch i386
+ --disable-accel-detect \
+%endif
# mpeg2dec have rpath
# remove rpath from libtool
sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
-make %{?_smp_mflags}
+make %{?_smp_mflags} \
+%ifarch i386
+ OPT_CFLAGS="-fPIC -DPIC" \
+%else
+ OPT_CFLAGS="" \
+%endif
%install
@@ -98,6 +106,9 @@
%changelog
+* Fri Oct 4 2008 kwizart < kwizart at gmail.com > - 0.5.1-3
+- Fix CFLAGS on x86 producing selinux denials.
+
* Wed Jul 30 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.5.1-2
- rebuild for buildsys cflags issue
16 years
rpms/raine/devel raine-0.50.11-makefile.patch, NONE, 1.1 raine.spec, 1.2, 1.3 raine-0.50.3-makefile.patch, 1.1, NONE
by Xavier Lamien
Author: laxathom
Update of /cvs/nonfree/rpms/raine/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4620
Modified Files:
raine.spec
Added Files:
raine-0.50.11-makefile.patch
Removed Files:
raine-0.50.3-makefile.patch
Log Message:
Update patch against new release
raine-0.50.11-makefile.patch:
--- NEW FILE raine-0.50.11-makefile.patch ---
--- raine-0.50.11/makefile.false 2008-03-14 23:24:04.000000000 +0100
+++ raine-0.50.11/makefile 2008-10-08 00:34:36.000000000 +0200
@@ -20,7 +20,7 @@
# RAINE_DEBUG = 1
# Be verbose ?
-# VERBOSE = 1
+VERBOSE = 1
# Use asm video core ? (comment to use C core)
ASM_VIDEO_CORE = 1
@@ -204,9 +204,9 @@
SDL = 1
prefix = $(DESTDIR)/usr
- bindir = $(prefix)/games
- sharedir = $(prefix)/share/games
- mandir = $(prefix)/man/man6
+ bindir = $(prefix)/bin
+ sharedir = $(prefix)/share
+ mandir = $(sharedir)/man/man6
rainedata = $(sharedir)/raine
ifndef SDL
langdir = $(rainedata)/languages
@@ -258,7 +258,6 @@
ifndef SDL
ifeq ("$(shell if [ -e /usr/include/vga.h ] || [ -e /usr/local/include/vga.h ]; then echo yes; fi)","yes")
-GFX_SVGALIB=1
endif
endif
@@ -305,7 +304,7 @@
OBJDIR = $(OSTYPE)-sdl
endif
-include cpuinfo
+#include cpuinfo
ifdef X86_64
OBJDIR := $(OBJDIR)64
@@ -388,25 +387,18 @@
ifdef RAINE32
# when starting a game -> black screen if -O > 1 (bug in uint64 calculation)
-CFLAGS = -O1
+#CFLAGS = -O1
else
# Seems to work now, at least with the sdl version ? (to be tested with windows !)
-CFLAGS = -O3
+CFLAGS = $(RPMFLAGS)
endif
CFLAGS += $(INCDIR) \
$(DEFINE) \
- $(_MARCH) \
- -Wno-trigraphs \
- -fschedule-insns2 \
- -funroll-all-loops \
- -fexpensive-optimizations \
- -ffast-math \
- -w \
- -fomit-frame-pointer
+ $(_MARCH)
# This is required for gcc-2.9x (bug in -fomit-frame-pointer)
-CFLAGS_MCU = $(_MARCH) -O3 -fexpensive-optimizations # switches for the 68705 mcus
+CFLAGS_MCU = $(CFLAGS)s # switches for the 68705 mcus
ifdef RAINE_UNIX
CFLAGS += -pipe
@@ -1156,7 +1148,7 @@
./makedep $(OBJDIR) $(OBJS) > make.dep
cpuinfo:
- @sh ./detect-cpu
+# @sh ./detect-cpu
include make.dep
@@ -1207,8 +1199,6 @@
sh -c "if [ -f hiscore.dat ]; then $(INSTALL_DATA) hiscore.dat $(rainedata); fi"
sh -c "if [ -f history.dat ]; then $(INSTALL_DATA) history.dat $(rainedata); fi"
$(INSTALL_DATA) config/cheats.cfg $(rainedata)
- $(INSTALL_DATA) raine.desktop $(prefix)/share/applications
- $(INSTALL_DATA) raine.png $(prefix)/share/pixmaps
install_dirs:
$(MD) -pv $(bindir) $(rainedata) $(langdir) $(romdir) $(artdir) $(emudxdir) $(prefix)/share/pixmaps $(prefix)/share/applications $(bitmaps_dir) $(fonts_dir)
Index: raine.spec
===================================================================
RCS file: /cvs/nonfree/rpms/raine/devel/raine.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- raine.spec 14 Sep 2008 21:51:07 -0000 1.2
+++ raine.spec 7 Oct 2008 22:51:50 -0000 1.3
@@ -1,13 +1,13 @@
Name: raine
Version: 0.50.11
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Arcade emulator focused on Taito and Jaleco games hardware
Group: Applications/Emulators
License: GPL+ and Distributable
URL: http://www.rainemu.com
Source0: http://www.rainemu.com/html/archive/raines-%{version}.tar.bz2
Source1: %{name}.desktop
-Patch0: %{name}-0.50.3-makefile.patch
+Patch0: %{name}-0.50.11-makefile.patch
Patch1: %{name}-0.50.3-fixdatadirloc.patch
Patch2: %{name}-0.50.3-fixcustomcursor.patch
Patch3: %{name}-0.50.11-incdirfix.patch
@@ -101,6 +101,9 @@
%changelog
+* Tue Oct 07 2008 Xavier Lamien <lxtnow[at]gmail.com> - 0.50.11-3
+- Update patch against new release.
+
* Sun Sep 14 2008 Xavier Lamien <lxtnow[at]gmail.com> - 0.50.11-2
- Update files and rebuild for RPM fusion.
--- raine-0.50.3-makefile.patch DELETED ---
16 years
rpms/streamdvd/F-9 streamdvd-gcc43.patch, NONE, 1.1 streamdvd.spec, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/free/rpms/streamdvd/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31280/F-9
Modified Files:
streamdvd.spec
Added Files:
streamdvd-gcc43.patch
Log Message:
Fix build against GCC-4.3
streamdvd-gcc43.patch:
--- NEW FILE streamdvd-gcc43.patch ---
diff -aur StreamDVD-0.4/mplex/inputstrm.cpp.old StreamDVD-0.4/mplex/inputstrm.cpp
--- StreamDVD-0.4/mplex/inputstrm.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/inputstrm.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -23,6 +23,7 @@
#include "config.h"
#include <assert.h>
+#include <climits>
#include "mjpeg_types.h"
#include "fastintfns.h"
diff -aur StreamDVD-0.4/mplex/multiplexor.cpp.old StreamDVD-0.4/mplex/multiplexor.cpp
--- StreamDVD-0.4/mplex/multiplexor.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/multiplexor.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -22,6 +22,7 @@
#include "config.h"
#include <math.h>
#include <stdlib.h>
+#include <cstring>
#include "mjpeg_types.h"
#include "mjpeg_logging.h"
diff -aur StreamDVD-0.4/mplex/padstrm.cpp.old StreamDVD-0.4/mplex/padstrm.cpp
--- StreamDVD-0.4/mplex/padstrm.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/padstrm.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -25,6 +25,7 @@
#endif
#include "padstrm.hpp"
+#include <cstring>
diff -aur StreamDVD-0.4/mplex/zalphastrm_in.cpp.old StreamDVD-0.4/mplex/zalphastrm_in.cpp
--- StreamDVD-0.4/mplex/zalphastrm_in.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/zalphastrm_in.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -23,6 +23,7 @@
#include "config.h"
#include <math.h>
#include <stdlib.h>
+#include <cstring>
#include "zalphastrm.hpp"
#include "interact.hpp"
Index: streamdvd.spec
===================================================================
RCS file: /cvs/free/rpms/streamdvd/F-9/streamdvd.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- streamdvd.spec 14 Sep 2008 21:35:53 -0000 1.1
+++ streamdvd.spec 7 Oct 2008 21:58:27 -0000 1.2
@@ -1,7 +1,7 @@
%{!?perl_vendorarch: %define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)}
Name: streamdvd
Version: 0.4
-Release: 7%{?dist}
+Release: 8%{?dist}
Summary: A fast tool to backup Video DVDs
Group: Applications/Multimedia
@@ -13,6 +13,7 @@
Patch2: streamdvd-lsdvd.patch
Patch3: streamdvd-gui.patch
Patch4: streamdvd-gcc41.patch
+Patch5: streamdvd-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libdvdread-devel >= 0.9.2
@@ -56,6 +57,7 @@
%patch2
%patch3
%patch4 -p1
+%patch5 -p1
%{__perl} -pi -e 's/(Tk::JPEG)::Lite/$1/' \
%{_builddir}/StreamDVD-%{version}/Gui/StreamDVD/Gui.pm
@@ -103,6 +105,9 @@
%{perl_vendorarch}/StreamDVD
%changelog
+* Tue Oct 07 2008 Xavier Lamien <lxtnow[at]gmail.com> - 0.4-8
+- Fix build against gcc-4.3.
+
* Sat Aug 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.4-7
- rebuild for RPM Fusion
16 years
rpms/streamdvd/devel streamdvd-gcc43.patch, NONE, 1.1 streamdvd.spec, 1.1, 1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/free/rpms/streamdvd/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31280/devel
Modified Files:
streamdvd.spec
Added Files:
streamdvd-gcc43.patch
Log Message:
Fix build against GCC-4.3
streamdvd-gcc43.patch:
--- NEW FILE streamdvd-gcc43.patch ---
diff -aur StreamDVD-0.4/mplex/inputstrm.cpp.old StreamDVD-0.4/mplex/inputstrm.cpp
--- StreamDVD-0.4/mplex/inputstrm.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/inputstrm.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -23,6 +23,7 @@
#include "config.h"
#include <assert.h>
+#include <climits>
#include "mjpeg_types.h"
#include "fastintfns.h"
diff -aur StreamDVD-0.4/mplex/multiplexor.cpp.old StreamDVD-0.4/mplex/multiplexor.cpp
--- StreamDVD-0.4/mplex/multiplexor.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/multiplexor.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -22,6 +22,7 @@
#include "config.h"
#include <math.h>
#include <stdlib.h>
+#include <cstring>
#include "mjpeg_types.h"
#include "mjpeg_logging.h"
diff -aur StreamDVD-0.4/mplex/padstrm.cpp.old StreamDVD-0.4/mplex/padstrm.cpp
--- StreamDVD-0.4/mplex/padstrm.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/padstrm.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -25,6 +25,7 @@
#endif
#include "padstrm.hpp"
+#include <cstring>
diff -aur StreamDVD-0.4/mplex/zalphastrm_in.cpp.old StreamDVD-0.4/mplex/zalphastrm_in.cpp
--- StreamDVD-0.4/mplex/zalphastrm_in.cpp.old 2004-03-08 23:10:53.000000000 +0100
+++ StreamDVD-0.4/mplex/zalphastrm_in.cpp 2008-07-07 23:28:19.000000000 +0200
@@ -23,6 +23,7 @@
#include "config.h"
#include <math.h>
#include <stdlib.h>
+#include <cstring>
#include "zalphastrm.hpp"
#include "interact.hpp"
Index: streamdvd.spec
===================================================================
RCS file: /cvs/free/rpms/streamdvd/devel/streamdvd.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- streamdvd.spec 9 Aug 2008 21:29:32 -0000 1.1
+++ streamdvd.spec 7 Oct 2008 21:58:28 -0000 1.2
@@ -1,7 +1,7 @@
%{!?perl_vendorarch: %define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)}
Name: streamdvd
Version: 0.4
-Release: 7%{?dist}
+Release: 8%{?dist}
Summary: A fast tool to backup Video DVDs
Group: Applications/Multimedia
@@ -13,6 +13,7 @@
Patch2: streamdvd-lsdvd.patch
Patch3: streamdvd-gui.patch
Patch4: streamdvd-gcc41.patch
+Patch5: streamdvd-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libdvdread-devel >= 0.9.2
@@ -56,6 +57,7 @@
%patch2
%patch3
%patch4 -p1
+%patch5 -p1
%{__perl} -pi -e 's/(Tk::JPEG)::Lite/$1/' \
%{_builddir}/StreamDVD-%{version}/Gui/StreamDVD/Gui.pm
@@ -103,6 +105,9 @@
%{perl_vendorarch}/StreamDVD
%changelog
+* Tue Oct 07 2008 Xavier Lamien <lxtnow[at]gmail.com] - 0.4-8
+- Fix build against gcc-4.3.
+
* Sat Aug 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.4-7
- rebuild for RPM Fusion
16 years
rpms/rt2870/devel rt2870.spec,1.2,1.3
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12132
Modified Files:
rt2870.spec
Log Message:
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-2
- Re-own %%{_sysconfdir}/Wireless/
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/devel/rt2870.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rt2870.spec 7 Oct 2008 08:11:52 -0000 1.2
+++ rt2870.spec 7 Oct 2008 09:06:19 -0000 1.3
@@ -2,7 +2,7 @@
Name: rt2870
Version: 1.4.0.0
-Release: 1%{?dist}.1
+Release: 2%{?dist}
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
@@ -41,10 +41,14 @@
%files
%defattr(-,root,root,-)
%doc ReleaseNotes README_STA iwpriv_usage.txt
+%dir %{_sysconfdir}/Wireless
%dir %{_sysconfdir}/Wireless/RT2870STA
%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA/RT2870STA.dat
%changelog
+* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-2
+- Re-own %%{_sysconfdir}/Wireless/
+
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
- Install RT2870STA.dat at the "right" place
16 years
rpms/rt2870/F-8 rt2870.spec,1.2,1.3
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12006
Modified Files:
rt2870.spec
Log Message:
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-2
- Re-own %%{_sysconfdir}/Wireless/
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-8/rt2870.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rt2870.spec 7 Oct 2008 08:10:56 -0000 1.2
+++ rt2870.spec 7 Oct 2008 09:04:35 -0000 1.3
@@ -2,7 +2,7 @@
Name: rt2870
Version: 1.4.0.0
-Release: 1%{?dist}.1
+Release: 2%{?dist}
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
@@ -41,10 +41,14 @@
%files
%defattr(-,root,root,-)
%doc ReleaseNotes README_STA iwpriv_usage.txt
+%dir %{_sysconfdir}/Wireless
%dir %{_sysconfdir}/Wireless/RT2870STA
%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA/RT2870STA.dat
%changelog
+* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-2
+- Re-own %%{_sysconfdir}/Wireless/
+
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
- Install RT2870STA.dat at the "right" place
16 years
rpms/rt2870/F-9 rt2870.spec,1.2,1.3
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11270
Modified Files:
rt2870.spec
Log Message:
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-2
- Re-own %%{_sysconfdir}/Wireless/
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-9/rt2870.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rt2870.spec 7 Oct 2008 08:08:05 -0000 1.2
+++ rt2870.spec 7 Oct 2008 08:55:26 -0000 1.3
@@ -2,7 +2,7 @@
Name: rt2870
Version: 1.4.0.0
-Release: 1%{?dist}.1
+Release: 2%{?dist}
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
@@ -41,10 +41,14 @@
%files
%defattr(-,root,root,-)
%doc ReleaseNotes README_STA iwpriv_usage.txt
+%dir %{_sysconfdir}/Wireless
%dir %{_sysconfdir}/Wireless/RT2870STA
%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA/RT2870STA.dat
%changelog
+* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-2
+- Re-own %%{_sysconfdir}/Wireless/
+
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
- Install RT2870STA.dat at the "right" place
16 years
rpms/rt2870/devel rt2870.spec,1.1,1.2
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9106/devel
Modified Files:
rt2870.spec
Log Message:
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
- Install RT2870STA.dat at the "right" place
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/devel/rt2870.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rt2870.spec 5 Oct 2008 13:32:11 -0000 1.1
+++ rt2870.spec 7 Oct 2008 08:11:52 -0000 1.2
@@ -2,7 +2,7 @@
Name: rt2870
Version: 1.4.0.0
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
@@ -32,8 +32,8 @@
%install
rm -rf $RPM_BUILD_ROOT
-install -dm 755 $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless
-install -p -m 0644 RT2870STA.dat $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/
+install -dm 755 $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/RT2870STA/
+install -p -m 0644 RT2870STA.dat $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/RT2870STA/
%clean
rm -rf $RPM_BUILD_ROOT
@@ -41,10 +41,13 @@
%files
%defattr(-,root,root,-)
%doc ReleaseNotes README_STA iwpriv_usage.txt
-%dir %{_sysconfdir}/Wireless
-%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA.dat
+%dir %{_sysconfdir}/Wireless/RT2870STA
+%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA/RT2870STA.dat
%changelog
+* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
+- Install RT2870STA.dat at the "right" place
+
* Sat Oct 04 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1
- Rebuild for 1.4.0.0
- Added iwpriv_usage.txt into package
16 years
rpms/rt2870/F-8 rt2870.spec,1.1,1.2
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv8661/F-8
Modified Files:
rt2870.spec
Log Message:
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
- Install RT2870STA.dat at the "right" place
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-8/rt2870.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rt2870.spec 5 Oct 2008 18:20:20 -0000 1.1
+++ rt2870.spec 7 Oct 2008 08:10:56 -0000 1.2
@@ -2,7 +2,7 @@
Name: rt2870
Version: 1.4.0.0
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
@@ -32,8 +32,8 @@
%install
rm -rf $RPM_BUILD_ROOT
-install -dm 755 $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless
-install -p -m 0644 RT2870STA.dat $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/
+install -dm 755 $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/RT2870STA/
+install -p -m 0644 RT2870STA.dat $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/RT2870STA/
%clean
rm -rf $RPM_BUILD_ROOT
@@ -41,10 +41,13 @@
%files
%defattr(-,root,root,-)
%doc ReleaseNotes README_STA iwpriv_usage.txt
-%dir %{_sysconfdir}/Wireless
-%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA.dat
+%dir %{_sysconfdir}/Wireless/RT2870STA
+%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA/RT2870STA.dat
%changelog
+* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
+- Install RT2870STA.dat at the "right" place
+
* Sat Oct 04 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1
- Rebuild for 1.4.0.0
- Added iwpriv_usage.txt into package
16 years
rpms/rt2870/F-9 rt2870.spec,1.1,1.2
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv8491/F-9
Modified Files:
rt2870.spec
Log Message:
* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
- Install RT2870STA.dat at the "right" place
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-9/rt2870.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rt2870.spec 5 Oct 2008 18:20:05 -0000 1.1
+++ rt2870.spec 7 Oct 2008 08:08:05 -0000 1.2
@@ -2,7 +2,7 @@
Name: rt2870
Version: 1.4.0.0
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
@@ -32,8 +32,8 @@
%install
rm -rf $RPM_BUILD_ROOT
-install -dm 755 $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless
-install -p -m 0644 RT2870STA.dat $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/
+install -dm 755 $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/RT2870STA/
+install -p -m 0644 RT2870STA.dat $RPM_BUILD_ROOT/%{_sysconfdir}/Wireless/RT2870STA/
%clean
rm -rf $RPM_BUILD_ROOT
@@ -41,10 +41,13 @@
%files
%defattr(-,root,root,-)
%doc ReleaseNotes README_STA iwpriv_usage.txt
-%dir %{_sysconfdir}/Wireless
-%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA.dat
+%dir %{_sysconfdir}/Wireless/RT2870STA
+%config(noreplace) %{_sysconfdir}/Wireless/RT2870STA/RT2870STA.dat
%changelog
+* Tue Oct 07 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1.1
+- Install RT2870STA.dat at the "right" place
+
* Sat Oct 04 2008 Orcan Ogetbil <orcanbahri[AT]yahoo[DOT]com> - 1.4.0.0-1
- Rebuild for 1.4.0.0
- Added iwpriv_usage.txt into package
16 years