rpms/xawtv/devel xawtv-3.74-strip.patch, NONE, 1.1 xawtv-3.95-curses-utf8.patch, NONE, 1.1 xawtv-3.95-font.patch, NONE, 1.1 xawtv-3.95-gcc4.patch, NONE, 1.1 xawtv-3.95-region.patch, NONE, 1.1 xawtv.desktop, NONE, 1.1 xawtv.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Dmitry Butskoy (buc) fedora-extras-commits at redhat.com
Mon Jun 25 11:26:36 UTC 2007


Author: buc

Update of /cvs/extras/rpms/xawtv/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv6831/devel

Modified Files:
	.cvsignore sources 
Added Files:
	xawtv-3.74-strip.patch xawtv-3.95-curses-utf8.patch 
	xawtv-3.95-font.patch xawtv-3.95-gcc4.patch 
	xawtv-3.95-region.patch xawtv.desktop xawtv.spec 
Log Message:


xawtv-3.74-strip.patch:

--- NEW FILE xawtv-3.74-strip.patch ---
--- xawtv-3.74/libng/plugins/Subdir.mk.strip	2002-06-20 14:02:24.000000000 +0200
+++ xawtv-3.74/libng/plugins/Subdir.mk	2002-06-20 14:02:55.000000000 +0200
@@ -58,7 +58,7 @@
 
 install::
 	$(INSTALL_DIR) $(libdir)
-	$(INSTALL_PROGRAM) -s $(TARGETS-plugins) $(libdir)
+	$(INSTALL_PROGRAM) $(TARGETS-plugins) $(libdir)
 	rm -f $(GONE-plugins)
 
 clean::
--- xawtv-3.74/vbistuff/Subdir.mk.strip	2002-06-20 14:04:05.000000000 +0200
+++ xawtv-3.74/vbistuff/Subdir.mk	2002-06-20 14:04:12.000000000 +0200
@@ -30,7 +30,7 @@
 all:: $(TARGETS-vbistuff)
 
 install::
-	$(INSTALL_PROGRAM) -s $(TARGETS-vbistuff) $(bindir)
+	$(INSTALL_PROGRAM) $(TARGETS-vbistuff) $(bindir)
 
 clean::
 	rm -f $(HTML-alevtd)
--- xawtv-3.74/x11/Subdir.mk.strip	2002-06-20 14:04:20.000000000 +0200
+++ xawtv-3.74/x11/Subdir.mk	2002-06-20 14:04:45.000000000 +0200
@@ -108,7 +108,7 @@
 
 ifeq ($(FOUND_X11),yes)
 install::
-	$(INSTALL_PROGRAM) -s $(TARGETS-x11) $(bindir)
+	$(INSTALL_PROGRAM) $(TARGETS-x11) $(bindir)
 	$(INSTALL_DIR) $(resdir)/app-defaults
 	$(INSTALL_DATA) $(srcdir)/x11/Xawtv.ad $(resdir)/app-defaults/Xawtv
 endif
--- xawtv-3.74/Makefile.in.strip	2002-04-08 13:13:07.000000000 +0200
+++ xawtv-3.74/Makefile.in	2002-06-20 13:57:17.000000000 +0200
@@ -18,7 +18,7 @@
 # programs
 CC		:= @CC@
 INSTALL		:= @INSTALL@
-INSTALL_PROGRAM := @INSTALL_PROGRAM@ -s
+INSTALL_PROGRAM := @INSTALL_PROGRAM@
 INSTALL_DATA	:= @INSTALL_DATA@
 INSTALL_DIR	:= @INSTALL@ -d -m 755
 

xawtv-3.95-curses-utf8.patch:

--- NEW FILE xawtv-3.95-curses-utf8.patch ---
diff -Nrbu xawtv-3.95/configure.ac xawtv-3.95-OK/configure.ac
--- xawtv-3.95/configure.ac	2004-08-18 19:48:09.000000000 +0400
+++ xawtv-3.95-OK/configure.ac	2006-12-27 19:01:29.000000000 +0300
@@ -110,7 +110,10 @@
   AC_CHECK_LIB(c_r,pthread_create,LIBPTHREAD="-lc_r")
 fi
 AC_CHECK_LIB(ossaudio,main,LIBOSS="-lossaudio")
-AC_CHECK_LIB(ncurses,initscr,LIBCURSES="-lncurses")
+AC_CHECK_LIB(ncursesw,initscr,LIBCURSES="-lncursesw")
+if test "$LIBCURSES" = ""; then
+  AC_CHECK_LIB(ncurses,initscr,LIBCURSES="-lncurses")
+fi
 if test "$LIBCURSES" = ""; then
   AC_CHECK_LIB(curses,initscr,LIBCURSES="-lcurses")
 fi
@@ -120,6 +123,9 @@
   echo "      you need also the *-devel packages."
   exit 1
 fi
+if test "$LIBCURSES" = "-lncursesw"; then
+  CFLAGS="$CFLAGS -I/usr/include/ncursesw"
+fi
 AC_SUBST(LIBPTHREAD)
 AC_SUBST(LIBOSS)
 AC_SUBST(LIBCURSES)
diff -Nrbu xawtv-3.95/console/radio.c xawtv-3.95-OK/console/radio.c
--- xawtv-3.95/console/radio.c	2003-04-16 19:35:13.000000000 +0400
+++ xawtv-3.95-OK/console/radio.c	2006-12-27 19:13:06.000000000 +0300
@@ -23,6 +23,7 @@
 #include <string.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <locale.h>
 #include <curses.h>
 #include <sys/time.h>
 #include <sys/ioctl.h>
@@ -398,6 +399,8 @@
     int    quit=0, scan=0, arg_mute=0;
     struct video_tuner tuner;
 
+    setlocale(LC_ALL,"");
+
     /* parse args */
     for (;;) {
 	c = getopt(argc, argv, "mhiqdsSf:c:");
diff -Nrbu xawtv-3.95/console/record.c xawtv-3.95-OK/console/record.c
--- xawtv-3.95/console/record.c	2003-04-03 14:51:00.000000000 +0400
+++ xawtv-3.95-OK/console/record.c	2006-12-27 19:13:18.000000000 +0300
@@ -6,6 +6,7 @@
 #include <unistd.h>
 #include <fcntl.h>
 #include <errno.h>
+#include <locale.h>
 #include <curses.h>
 #include <signal.h>
 #include <inttypes.h>
@@ -574,6 +575,8 @@
     record = 0;
     nr = 0;
 
+    setlocale(LC_ALL,"");
+
     /* parse options */
     for (;;) {
 	if (-1 == (c = getopt(argc, argv, "vhlci:o:d:m:r:t:s:L:p:n:")))

xawtv-3.95-font.patch:

--- NEW FILE xawtv-3.95-font.patch ---
diff -Nrbu xawtv-3.95/vbistuff/alevt.css.in xawtv-3.95-OK/vbistuff/alevt.css.in
--- xawtv-3.95/vbistuff/alevt.css.in	2003-02-14 17:14:08.000000000 +0300
+++ xawtv-3.95-OK/vbistuff/alevt.css.in	2007-03-02 19:38:26.000000000 +0300
@@ -3,7 +3,7 @@
 pre.vt		{ border: 1pt solid black; padding: 12pt }
 pre.vt		{ background-color: #c0c0c0; width: auto; float: left }
 pre.vt		{ white-space: pre }
-pre.vt		{ font-family: "teletext, monospace"; font-size: 20px; line-height: 20px }
+pre.vt		{ font-family: "teletext"; font-size: 10px; line-height: 10px }
 
 div.quick	{ clear: both }
 
diff -Nrbu xawtv-3.95/x11/Xawtv.ad xawtv-3.95-OK/x11/Xawtv.ad
--- xawtv-3.95/x11/Xawtv.ad	2003-02-18 19:31:33.000000000 +0300
+++ xawtv-3.95-OK/x11/Xawtv.ad	2007-03-02 19:37:26.000000000 +0300
@@ -382,9 +382,7 @@
 xawtv.onscreen*borderColor:		black
 xawtv.onscreen*foreground:		lightgreen
 xawtv.onscreen.label.justify:		left
-xawtv.onscreen.label.font:		-*-ledfixed-medium-r-*--39-*-*-*-c-*-*-*
 xawtv.onscreen.label.fontSet:		\
-     -*-ledfixed-medium-r-semicondensed--39-*-*-*-c-*-*-*, \
  -*-bitstream vera sans-medium-r-normal--39-*-*-*-*-*-*-*, \
            -*-luxi sans-medium-r-normal--39-*-*-*-*-*-*-*, \
                           -*-*-r-normal--39-*-*-*-*-*-*-*, \

xawtv-3.95-gcc4.patch:

--- NEW FILE xawtv-3.95-gcc4.patch ---
diff -Nrbu xawtv-3.95/common/capture.c xawtv-3.95-OK/common/capture.c
--- xawtv-3.95/common/capture.c	2004-10-12 14:16:34.000000000 +0400
+++ xawtv-3.95-OK/common/capture.c	2006-12-27 19:55:59.000000000 +0300
@@ -527,12 +527,12 @@
 
     if (h->vfmt.fmtid != VIDEO_NONE && h->afmt.fmtid != AUDIO_NONE) {
 	for (frames = 0; frames < 16; frames++) {
-	    stopby = (uint64_t)(h->frames + frames) * (uint64_t)1000000000000 / h->fps;
+	    stopby = (uint64_t)(h->frames + frames) * (uint64_t)1000000000000ULL / h->fps;
 	    if (stopby > h->ats)
 		break;
 	}
 	frames++;
-	h->stopby = (uint64_t)(h->frames + frames) * (uint64_t)1000000000000 / h->fps;
+	h->stopby = (uint64_t)(h->frames + frames) * (uint64_t)1000000000000ULL / h->fps;
 	while (frames) {
 	    movie_grab_put_video(h,NULL);
 	    frames--;
@@ -594,11 +594,11 @@
 	    (h->rdrift > 0) ? '+' : '-',
 	    (int)((abs(h->rdrift) / 1000000000)),
 	    (int)((abs(h->rdrift) % 1000000000) / 10000000),
-	    (int)(h->rdrift * h->fps / (uint64_t)1000000000000),
+	    (int)(h->rdrift * h->fps / (uint64_t)1000000000000ULL),
 	    (h->vdrift > 0) ? '+' : '-',
 	    (int)((abs(h->vdrift) / 1000000000)),
 	    (int)((abs(h->vdrift) % 1000000000) / 10000000),
-	    (int)(h->vdrift * h->fps / (uint64_t)1000000000000));
+	    (int)(h->vdrift * h->fps / (uint64_t)1000000000000ULL));
     rec_status(line);
 }
 
@@ -623,7 +623,7 @@
 #endif
 
     /* rate control */
-    expected = (buf->info.ts - h->vdrift) * h->fps / (uint64_t)1000000000000;
+    expected = (buf->info.ts - h->vdrift) * h->fps / (uint64_t)1000000000000ULL;
     if (expected < h->frames-1) {
 	if (debug > 1)
 	    fprintf(stderr,"rate: ignoring frame [%d %d]\n",
diff -Nrbu xawtv-3.95/console/showqt.c xawtv-3.95-OK/console/showqt.c
--- xawtv-3.95/console/showqt.c	2003-03-27 13:37:08.000000000 +0300
+++ xawtv-3.95-OK/console/showqt.c	2006-12-27 19:52:51.000000000 +0300
@@ -25,14 +25,14 @@
                    (((uint32_t)x<<8)  & (uint32_t)0x00ff0000) |\
                    (((uint32_t)x<<24) & (uint32_t)0xff000000))
 
-# define SWAP8(x) ((((uint64_t)x>>56) & (uint64_t)0x00000000000000ff) |\
-                   (((uint64_t)x>>40) & (uint64_t)0x000000000000ff00) |\
-                   (((uint64_t)x>>24) & (uint64_t)0x0000000000ff0000) |\
-                   (((uint64_t)x>> 8) & (uint64_t)0x00000000ff000000) |\
-                   (((uint64_t)x<< 8) & (uint64_t)0x000000ff00000000) |\
-                   (((uint64_t)x<<24) & (uint64_t)0x0000ff0000000000) |\
-                   (((uint64_t)x<<40) & (uint64_t)0x00ff000000000000) |\
-                   (((uint64_t)x<<56) & (uint64_t)0xff00000000000000))
+# define SWAP8(x) ((((uint64_t)x>>56) & (uint64_t)0x00000000000000ffULL) |\
+                   (((uint64_t)x>>40) & (uint64_t)0x000000000000ff00ULL) |\
+                   (((uint64_t)x>>24) & (uint64_t)0x0000000000ff0000ULL) |\
+                   (((uint64_t)x>> 8) & (uint64_t)0x00000000ff000000ULL) |\
+                   (((uint64_t)x<< 8) & (uint64_t)0x000000ff00000000ULL) |\
+                   (((uint64_t)x<<24) & (uint64_t)0x0000ff0000000000ULL) |\
+                   (((uint64_t)x<<40) & (uint64_t)0x00ff000000000000ULL) |\
+                   (((uint64_t)x<<56) & (uint64_t)0xff00000000000000ULL))
 #else
 # define SWAP2(a) (a)
 # define SWAP4(a) (a)
diff -Nrbu xawtv-3.95/libng/plugins/read-dv.c xawtv-3.95-OK/libng/plugins/read-dv.c
--- xawtv-3.95/libng/plugins/read-dv.c	2003-02-14 17:14:05.000000000 +0300
+++ xawtv-3.95-OK/libng/plugins/read-dv.c	2006-12-27 19:58:49.000000000 +0300
@@ -125,7 +125,7 @@
 		"dv: height=%d width=%d frame_size=%ld\n",
 		h->dec->quality, h->dec->system, h->dec->std,
 		h->dec->sampling, h->dec->num_dif_seqs, h->dec->height,
-		h->dec->width, h->dec->frame_size);
+		h->dec->width, (long) h->dec->frame_size);
 	fprintf(stderr, "dv: audio: %d Hz, %d bits, %d channels,"
 		" emphasis %s\n",
 		h->dec->audio->frequency,

xawtv-3.95-region.patch:

--- NEW FILE xawtv-3.95-region.patch ---
diff -Nrbu xawtv-3.95/common/vbi-data.c xawtv-3.95-OK/common/vbi-data.c
--- xawtv-3.95/common/vbi-data.c	2003-02-14 17:14:04.000000000 +0300
+++ xawtv-3.95-OK/common/vbi-data.c	2007-03-01 20:33:44.000000000 +0300
@@ -48,6 +48,18 @@
     if (NULL == vbi->dec)
 	goto oops;
 
+    /*
+     * Give the user possibility to change default zvbi region (16, West-Europe)
+     * Sometimes the region value just not reported in the stream etc...
+     */
+    if (1) {
+	char *env = getenv("ALEVTD_REGION");
+	unsigned int region;
+
+	if (env && (region = strtoul(env,NULL,0)) != 0)
+	    vbi_teletext_set_default_region(vbi->dec,region);
+    }
+
     if (vbi->sim) {
 	vbi->par = init_sim(625,services);
         /* simulation for select */


--- NEW FILE xawtv.desktop ---
[Desktop Entry]
Encoding=UTF-8
Comment=X11 program for watching TV
Icon=xawtv32x32.xpm
Exec=xawtv
Name=XawTV Television Viewer
GenericName=Television Viewer
Terminal=false
Type=Application
Categories=Application;AudioVideo;


--- NEW FILE xawtv.spec ---
Summary: TV applications for video4linux compliant devices
Name: xawtv
Version: 3.95
Release: 1%{?dist}
Group: Applications/Multimedia
License: GPL
URL: http://bytesex.org/xawtv/

Source0: http://dl.bytesex.org/releases/xawtv/%{name}-%{version}.tar.gz
Source1: xawtv.desktop

Patch0: xawtv-3.74-strip.patch
Patch1: xawtv-3.95-curses-utf8.patch
Patch2: xawtv-3.95-gcc4.patch
Patch3: xawtv-3.95-font.patch
Patch4: xawtv-3.95-region.patch

BuildRequires: mesa-libGL-devel, libXaw-devel, libXext-devel
BuildRequires: libFS-devel, libXft-devel, libXinerama-devel
BuildRequires: libXpm-devel, libXrandr-devel, libXt-devel
BuildRequires: libXxf86dga-devel, libXv-devel

BuildRequires: ncurses-devel, fileutils, libjpeg-devel, libpng-devel
BuildRequires: alsa-lib-devel, libdv-devel
BuildRequires: zvbi-devel, aalib-devel
BuildRequires: autoconf, desktop-file-utils

Requires: usermode

BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)


%description
Xawtv is a simple xaw-based TV program which uses the bttv driver or
video4linux. Xawtv contains various command-line utilities for
grabbing images and .avi movies, for tuning in to TV stations, etc.
Xawtv also includes a grabber driver for vic.


%prep
%setup -q
%patch0 -p1 -b .strip
%patch1 -p1 -b .curses-utf8
%patch2 -p1 -b .gcc4
%patch3 -p1 -b .font
%patch4 -p1 -b .region

sed -i -e 's,/usr/X11R6/lib/X11,%{_datadir}/X11,g' configure.ac
sed -i -e 's,/usr/X11R6/include/X11,%{_includedir}/X11,g' Makefile.in

autoconf
autoheader


%build

export CFLAGS="$RPM_OPT_FLAGS -Wno-pointer-sign"

%configure --x-libraries=%{_libdir} --disable-motif --disable-quicktime
make

sed -i -e 's/^d.fault /default /' man/webcam.1
for man in `find man -name "*.[1-9]" -print`
do
    iconv -f ISO8859-1 -t UTF-8 <$man >$man.new && mv -f $man.new $man
done


%install
rm -rf $RPM_BUILD_ROOT

make DESTDIR=$RPM_BUILD_ROOT resdir=$RPM_BUILD_ROOT%{_datadir}/X11 SUID_ROOT="" install

#  we have no motif support
rm -f $RPM_BUILD_ROOT%{_mandir}/*/motv.*
rm -f $RPM_BUILD_ROOT%{_mandir}/*/mtt.*
#  we have no quicktime support
rm -f $RPM_BUILD_ROOT%{_bindir}/showqt


mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
install -p -m 0644 contrib/xawtv*.xpm $RPM_BUILD_ROOT%{_datadir}/pixmaps

desktop-file-install --vendor fedora		\
  --dir $RPM_BUILD_ROOT%{_datadir}/applications	\
  --add-category X-Fedora			\
  %{SOURCE1}
 

#   v4l-conf  stuff

mkdir -p $RPM_BUILD_ROOT%{_sbindir} \
	$RPM_BUILD_ROOT%{_sysconfdir}/pam.d \
	$RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps \

cat >v4l-conf.pam <<!
#%PAM-1.0
auth		include		config-util
account		include		config-util
session		include		config-util
!
install -m 0644 v4l-conf.pam $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/v4l-conf

cat >v4l-conf.apps <<!
SESSION=true
USER=root
PROGRAM=%{_sbindir}/v4l-conf
!
install -m 0644 v4l-conf.apps $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/v4l-conf

mv $RPM_BUILD_ROOT%{_bindir}/v4l-conf $RPM_BUILD_ROOT%{_sbindir}/
ln -s consolehelper $RPM_BUILD_ROOT%{_bindir}/v4l-conf


%clean
rm -fr $RPM_BUILD_ROOT


%files
%defattr(-,root,root,-)
%config(noreplace) %{_sysconfdir}/pam.d/v4l-conf
%config(noreplace) %{_sysconfdir}/security/console.apps/v4l-conf
%{_bindir}/*
%{_sbindir}/*
%{_libdir}/xawtv
%{_datadir}/xawtv
%{_datadir}/X11/app-defaults/*
%{_datadir}/pixmaps/*
%{_datadir}/applications/*
%{_mandir}/man?/*
%lang(es) %{_mandir}/es/*/*
%lang(fr) %{_mandir}/fr/*/*
%doc COPYING README TODO Changes contrib/frequencies*


%changelog
* Thu Jun 21 2007 Dmitry Butskoy <Dmitry at Butskoy.name> - 3.95-1
- spec file cleanup
- accepted for Fedora (review by Jason Tibbitts <tibbs at math.uh.edu>)

* Thu Mar  1 2007 Dmitry Butskoy <Dmitry at Butskoy.name> - 3.95-0
- upgrade to 3.95
- adapt for Fedora Extras, spec file cleanups
- add UTF-8 support for console apps
- drop tv-fonts package (you can use zvbi-fonts package for that purpose),
  bitstream-vera is now a default for "big" fullscreen-mode fonts.
- add desktop entry and icons
- add ALEVTD_REGION environment to change default teletext's region


* Tue Oct 21 2003 Florian La Roche <Florian.LaRoche at redhat.de>
- add BuildReq for fontconfig-devel and freetype-devel, these seem
  to get picked up

* Mon Sep 01 2003 Than Ngo <than at redhat.com> 3.88-5
- Added missing BuildRequires for libpng-devel (bug #103447)

* Tue Jun 17 2003 Than Ngo <than at redhat.com> 3.88-4
- fixed permission problem (bug #90921)

* Tue Jun 17 2003 Than Ngo <than at redhat.com> 3.88-3
- rebuilt

* Wed Jun 04 2003 Elliot Lee <sopwith at redhat.com>
- rebuilt

* Tue May  6 2003 Than Ngo <than at redhat.com> 3.88-1
- 3.88

* Thu Mar  3 2003 Than Ngo <than at redhat.com> 3.85-1
- 3.85, (#85557, #81588, #74684, #61717)
- own /usr/lib/xawtv, (bug #73981)
- dependency on libjpeg-devel, (bug #48925)
- include alevtd daemon (bug #53878)
- create default configuration by install (bug #73270) 

* Sun Feb 10 2003 Than Ngo <than at redhat.com> 3.81-6
- install correct pam file, #83820

* Mon Jan 27 2003 Than Ngo <than at redhat.com> 3.81-5
- fix #81791

* Wed Jan 22 2003 Tim Powers <timp at redhat.com>
- rebuilt

* Tue Jan 21 2003 Than Ngo <than at redhat.com> 3.81-3
- fix #81851

* Mon Dec 16 2002 Than Ngo <than at redhat.com> 3.81-2
- rebuild

* Fri Dec 13 2002 Than Ngo <than at redhat.com> 3.81-1
- update 3.81
- move bitmap fonts to bitmap-fonts package

* Tue Nov 12 2002 Nalin Dahyabhai <nalin at redhat.com> 3.78-2
- adjust PAM configuration to not use absolute paths so that the right module
  set gets used for the current arch on multilib systems

* Thu Nov  7 2002 Than Ngo <than at redhat.com> 3.78-1
- 3.78

* Fri Jun 21 2002 Tim Powers <timp at redhat.com>
- automated rebuild

* Thu Jun 20 2002 Than Ngo <than at redhat.com> 3.74-3
- Don't forcibly strip binaries

* Sun May 26 2002 Tim Powers <timp at redhat.com>
- automated rebuild

* Thu May 23 2002 Harald Hoyer <harald at redhat.de>
- 3.74

* Sun Apr 07 2002 han Ngo <than at redhat.com> 3.73-3
- remove motv manpage (#62771)

* Tue Apr  2 2002 Than Ngo <than at redhat.com> 3.73-2
- get rid of openmotif

* Sun Mar 24 2002 Than Ngo <than at redhat.com> 3.73-1
- update
- fix bug #61719

* Fri Mar 22 2002 Tim Powers <timp at redhat.com>
- rebuilt motv against new openmotif-2.2.2

* Tue Feb 26 2002 Than Ngo <than at redhat.com> 3.72-1
- update to 3.72

* Tue Feb 19 2002 Bernhard Rosenkraenzer <bero at redhat.com> 3.71-1
- 3.71

* Fri Jan 18 2002 Than Ngo <than at redhat.com> 3.68-1
- update to 3.68
- enable XFree extensions
- fix Url
- add missing plugins

* Wed Dec  5 2001 Than Ngo <than at redhat.com> 3.65-1
- update to 3.65
- fix build on ia64

* Wed Nov 14 2001 Than Ngo <than at redhat.com> 3.64-1
- update to 3.64

* Mon Sep 17 2001 Than Ngo <than at redhat.com> 3.62-1
- update to 3.62 (bug #53711 #52847)

* Tue Aug 28 2001 Than Ngo <than at redhat.com> 3.54-5
- fix spec file bug (Bug #52675)

* Fri Aug 10 2001 Than Ngo <than at redhat.com> 3.54-4
- add requires usermode (bug #51474)

* Sun Aug  5 2001 Nalin Dahyabhai <nalin at redhat.com> 3.54-3
- tweak PAM setup so that v4l-conf can access the display properly

* Tue Jul 10 2001 Elliot Lee <sopwith at redhat.com> 3.54-2
- Rebuild to remove libXv/libXxf86dga deps

* Mon Jul 02 2001 Than Ngo <than at redhat.com>
- update to 3.54

* Fri Jun 22 2001 Than Ngo <than at redhat.com>
- update to 3.53
- add buildprereq
- remove some uneeeded patches

* Tue Jun 19 2001 Karsten Hopp <karsten at redhat.de>
- excludearch s390 s390x

* Wed Jun 13 2001 Than Ngo <than at redhat.com>
- update to 3.51

* Thu Jun 07 2001 Than Ngo <than at redhat.com>
- update to 3.50

* Thu May 31 2001 Than Ngo <than at redhat.com>
- udate to 3.49

* Tue May 22 2001 Than Ngo <than at redhat.com>
- update to 3.48

* Mon May 21 2001 Tim Powers <timp at redhat.com>
- built for the distro

* Wed May 18 2001 Karsten Hopp <karsten at redhat.de>
- make xawtv work with kernel-2.4

* Wed May 16 2001 Than Ngo <than at redhat.com>
- update to 3.47

* Mon May 07 2001 Than Ngo <than at redhat.com>
- update to 3.45
- add missing fonts

* Tue Feb 13 2001 Than Ngo <than at redhat.com>
- update to 3.34
- use consolehelper for v4l-conf
- add excludearch sparc, bdftopcf is broken on sparc

* Wed Jan 24 2001 Than Ngo <than at redhat.com>
- updated to 3.30
- use /dev/video0 instead /dev/video (bug #24871)
- fixed dependencies (Bug #24881)
 
* Sun Nov 19 2000 Than Ngo <than at redhat.com>
- update to 3.24
- add missing tools (rootv,scantv)
- add missing prereq on xset and mkfontdir

* Fri Nov 3 2000 Than Ngo <than at redhat.com>
- update to 3.23

* Wed Aug 23 2000 Tim Powers <timp at redhat.com>
- rebuilt against new XFree86 to fix DGA problems

* Mon Aug 21 2000 Than Ngo <than at redhat.com>
- update to 3.18 (Bugfix release)
- option -nodga to disable DGA (Bug #16577, #15702)
- compress fonts with gzip

* Mon Aug 07 2000 Tim Powers <timp at redhat.com>
- fixed bug #15435

* Mon Aug 07 2000 Than Ngo <than at redhat.de>
- rebuilt against the new DGA
- fixed in post and postun, so that it does not
  emits to console (Bug #15436)


* Sat Jul 29 2000 Than Ngo <than at redhat.de>
- update to 3.17

* Mon Jul 24 2000 Prospector <prospector at redhat.com>
- rebuilt

* Wed Jul 12 2000 Than Ngo <than at redhat.de>
- FHS fixes

* Mon Jul 03 2000 Prospector <bugzilla at redhat.com>
- automatic rebuild

* Sun May 28 2000 Ngo Than <than at redhat.de>
- update to 3.14 for 7.0
- put man page in correct place
- add webcam
- bzip2 source
- cleanup specfile

* Wed Jan 19 2000 Preston Brown <pbrown at redhat.com>
- font fix (#8610) in post and postun
- add missing files in bin

* Sun Jan 16 2000 Preston Brown <pbrown at redhat.com>
- whoops! 3.07 already bugfix release

* Fri Jan 14 2000 Ngo Than <than at redhat.de>
- updated to 3.06

* Mon Jul 26 1999 Tim Powers <timp at redhat.com>
- updated to 2.46
- built for 6.1

* Wed Apr 28 1999 Preston Brown <pbrown at redhat.com>
- initial build for Powertools 6.0


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/xawtv/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	22 Jun 2007 19:26:22 -0000	1.1
+++ .cvsignore	25 Jun 2007 11:25:58 -0000	1.2
@@ -0,0 +1 @@
+xawtv-3.95.tar.gz


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/xawtv/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	22 Jun 2007 19:26:22 -0000	1.1
+++ sources	25 Jun 2007 11:25:58 -0000	1.2
@@ -0,0 +1 @@
+ad25e03f7e128b318e392cb09f52207d  xawtv-3.95.tar.gz




More information about the fedora-extras-commits mailing list