rpms/camstream/devel .cvsignore, 1.4, 1.5 Makefile, 1.3, 1.4 camstream-0.26.3-x86_64-asm.patch, 1.2, 1.3 camstream-makefiles.patch, 1.2, 1.3 camstream.desktop, 1.2, 1.3 camstream.png, 1.2, 1.3 camstream.spec, 1.12, 1.13 sources, 1.4, 1.5 dead.package, 1.1, NONE

Simon Perreault (nomis80) fedora-extras-commits at redhat.com
Sun Dec 24 18:19:54 UTC 2006


Author: nomis80

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

Added Files:
	.cvsignore Makefile camstream-0.26.3-x86_64-asm.patch 
	camstream-makefiles.patch camstream.desktop camstream.png 
	camstream.spec sources 
Removed Files:
	dead.package 
Log Message:
Waking the dead: package camstream is back to life.



Index: .cvsignore
===================================================================
RCS file: .cvsignore
diff -N .cvsignore
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ .cvsignore	24 Dec 2006 18:19:23 -0000	1.5
@@ -0,0 +1 @@
+camstream-0.26.3.tar.gz


Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	24 Dec 2006 18:19:23 -0000	1.4
@@ -0,0 +1,21 @@
+# Makefile for source rpm: camstream
+# $Id$
+NAME := camstream
+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)

camstream-0.26.3-x86_64-asm.patch:

Index: camstream-0.26.3-x86_64-asm.patch
===================================================================
RCS file: camstream-0.26.3-x86_64-asm.patch
diff -N camstream-0.26.3-x86_64-asm.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ camstream-0.26.3-x86_64-asm.patch	24 Dec 2006 18:19:23 -0000	1.3
@@ -0,0 +1,376 @@
+Credits for this patch go to gentoo. 
+
+--- ./camstream/video/video_asm.S.old	2004-04-17 18:22:08.977932552 +0100
++++ ./camstream/video/video_asm.S	2004-04-17 18:23:37.614457752 +0100
+@@ -17,52 +17,52 @@
+ 	
+ ENTRY(calc_diff128)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-	
+-	mov Number, %ecx	# number of pixels
+-	mov Dst, %edi		# destination
+-	mov Src1, %esi		# src_new
+-	mov Src2, %ebx		# src_old
++	push %rbx
++	push %rsi
++	push %rdi
++	
++	mov Number, %rcx	# number of pixels
++	mov Dst, %rdi		# destination
++	mov Src1, %rsi		# src_new
++	mov Src2, %rbx		# src_old
+ 	
+ 0:	lodsb			# load byte
+-	mov (%ebx), %ah		# load second byte
++	mov (%rbx), %ah		# load second byte
+ 	shr $1, %al		# /2 by shift-right both values
+ 	shr $1, %ah
+ 	sub %ah, %al		# substract old value
+ 	add $128, %al		# add virtual 0-point
+ 	stosb
+-	inc %ebx
++	inc %rbx
+ 	loop 0b
+ 
+-9:	pop %edi
+-	pop %esi
+-	pop %ebx
++9:	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+ 	
+ 
+ ENTRY(calc_diff128_mmx)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-	
+-	mov Number, %ecx	# number of pixels
+-	mov Dst, %edi		# destination
+-	mov Src1, %esi		# src_new
+-	mov Src2, %ebx		# src_old
++	push %rbx
++	push %rsi
++	push %rdi
++	
++	mov Number, %rcx	# number of pixels
++	mov Dst, %rdi		# destination
++	mov Src1, %rsi		# src_new
++	mov Src2, %rbx		# src_old
+ 
+-	shr $2, %ecx		# MMX uses 4 bytes in a row; too bad MMX 
++	shr $2, %rcx		# MMX uses 4 bytes in a row; too bad MMX 
+ 				# doesnt have carry-bits or shift-right byte, 
+ 				# or we could have grabbed 8 bytes in a row
+ 	movq mm_128w, %mm7
+ 	
+-0:	movd (%esi), %mm0	# 00 00 00 00 b3 b2 b1 b0
++0:	movd (%rsi), %mm0	# 00 00 00 00 b3 b2 b1 b0
+ 	punpcklbw mm_0, %mm0	# 00 b3 00 b2 00 b1 00 b0
+ 	
+-	movd (%ebx), %mm1	# 00 00 00 00 c3 c2 c1 c0
++	movd (%rbx), %mm1	# 00 00 00 00 c3 c2 c1 c0
+ 	punpcklbw mm_0, %mm1	# 00 c3 00 c2 00 c1 00 c0
+ 
+ 	psraw $1, %mm0		# shift, then substract; this eliminates a
+@@ -71,17 +71,17 @@
+ 	psubw %mm1, %mm0	# subtract
+ 	paddw %mm7, %mm0	# add virtual 0-point
+ 	packuswb mm_0, %mm0	# pack, unsigned saturation 00 00 00 00 d3 d2 d1 d0
+-	movd %mm0, (%edi)	# store
++	movd %mm0, (%rdi)	# store
+ 
+-	add $4, %ebx
+-	add $4, %esi
+-	add $4, %edi
++	add $4, %rbx
++	add $4, %rsi
++	add $4, %rdi
+ 	loop 0b
+ 
+ 9:	emms			# empty MMX state
+-	pop %edi
+-	pop %esi
+-	pop %ebx
++	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+ 	
+@@ -89,24 +89,24 @@
+ # calc_intg: perform Integrator step, that is, add a buffer to another
+ ENTRY(calc_intg128)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-	
+-	mov  8(%ebp), %ecx	# number of pixels
+-	mov 12(%ebp), %edi	# destination
+-	mov 16(%ebp), %esi	# 2nd buffer
++	push %rbx
++	push %rsi
++	push %rdi
++	
++	mov  8(%rbp), %rcx	# number of pixels
++	mov 12(%rbp), %rdi	# destination
++	mov 16(%rbp), %rsi	# 2nd buffer
+ 
+ 0:	lodsb
+ 	sub $128, %al		# s - 128
+ 	shl $1, %al		# *2
+-	add %al, (%edi)		# add to destination
+-	inc %edi
++	add %al, (%rdi)		# add to destination
++	inc %rdi
+ 	loop 0b
+ 	
+-9:	pop %edi
+-	pop %esi
+-	pop %ebx
++9:	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+ 
+@@ -116,36 +116,36 @@
+ # Perform Integrator step with MMX instructions
+ ENTRY(calc_intg128_smx)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-	
+-	mov  8(%ebp), %ecx	# number of pixels
+-	mov 12(%ebp), %edi	# destination
+-	mov 16(%ebp), %esi	# 2nd buffer
+-	shr $2, %ecx		# divide by 4 (again, we must use word operands)
++	push %rbx
++	push %rsi
++	push %rdi
++	
++	mov  8(%rbp), %rcx	# number of pixels
++	mov 12(%rbp), %rdi	# destination
++	mov 16(%rbp), %rsi	# 2nd buffer
++	shr $2, %rcx		# divide by 4 (again, we must use word operands)
+ 	
+ 	movq mm_128w, %mm7	# load constant
+ 
+ 				# The following instructions are hopefully mixed
+ 				#  to optimize execution
+-0:	movd (%edi), %mm0	# 00 00 00 00 b3 b2 b1 b0
++0:	movd (%rdi), %mm0	# 00 00 00 00 b3 b2 b1 b0
+ 	punpcklbw mm_0, %mm0	# 00 b3 00 b2 00 b1 00 b0
+-	movd (%esi), %mm1	# 00 00 00 00 c3 c2 c1 c0
++	movd (%rsi), %mm1	# 00 00 00 00 c3 c2 c1 c0
+ 	punpcklbw mm_0, %mm1	# 00 c3 00 c2 00 c1 00 c0
+-	add $4, %esi		# keep CPU busy
++	add $4, %rsi		# keep CPU busy
+ 	psubw %mm7, %mm1	# src - 128
+ 	psllw $1, %mm1		# * 2
+ 	paddw %mm1, %mm0	# dst += src
+ 	packuswb mm_0, %mm0	# pack, unsigned saturation 00 00 00 00 d3 d2 d1 d0
+-	movd %mm0, (%edi)	# store back
+-	add $4, %edi
++	movd %mm0, (%rdi)	# store back
++	add $4, %rdi
+ 	loop 0b
+ 		
+ 9:	emms			# clear MMX state
+-	pop %edi
+-	pop %esi
+-	pop %ebx
++	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+ 
+--- ./camstream/video/video_asm_add.S.old	2004-04-17 18:22:17.121694512 +0100
++++ ./camstream/video/video_asm_add.S	2004-04-17 18:23:54.272925280 +0100
+@@ -4,102 +4,102 @@
+ 
+ ENTRY(calc_add)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-
+-	mov Number, %ecx
+-	mov Dst, %edi
+-	mov Src1, %esi
++	push %rbx
++	push %rsi
++	push %rdi
++
++	mov Number, %rcx
++	mov Dst, %rdi
++	mov Src1, %rsi
+ 
+ 0:	lodsb
+-	add %al, (%edi)
+-	inc %edi
++	add %al, (%rdi)
++	inc %rdi
+ 	loop 0b
+ 
+-9:	pop %edi
+-	pop %esi
+-	pop %ebx
++9:	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+ 
+ ENTRY(calc_add_mmx)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-
+-	mov Number, %ecx
+-	mov Dst, %edi
+-	mov Src1, %esi
++	push %rbx
++	push %rsi
++	push %rdi
++
++	mov Number, %rcx
++	mov Dst, %rdi
++	mov Src1, %rsi
+ 	
+-	shr $3, %ecx		# Divide by 8 (!)
++	shr $3, %rcx		# Divide by 8 (!)
+ 
+-0:	movq (%esi), %mm0
+-	add $8, %esi
+-	movq (%edi), %mm1
++0:	movq (%rsi), %mm0
++	add $8, %rsi
++	movq (%rdi), %mm1
+ 	paddb %mm1, %mm0	# add, with overflow
+-	movq %mm0, (%edi)
+-	add $8, %edi
++	movq %mm0, (%rdi)
++	add $8, %rdi
+ 	loop 0
+ 
+-9:	pop %edi
+-	pop %esi
+-	pop %ebx
++9:	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+ 
+ 
+ ENTRY(calc_add_mmxs)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-
+-	mov Number, %ecx
+-	mov Dst, %edi
+-	mov Src1, %esi
++	push %rbx
++	push %rsi
++	push %rdi
++
++	mov Number, %rcx
++	mov Dst, %rdi
++	mov Src1, %rsi
+ 	
+-	shr $3, %ecx		# Divide by 8 (!)
++	shr $3, %rcx		# Divide by 8 (!)
+ 
+-0:	movq (%esi), %mm0
+-	add $8, %esi
+-	movq (%edi), %mm1
++0:	movq (%rsi), %mm0
++	add $8, %rsi
++	movq (%rdi), %mm1
+ 	paddsb %mm1, %mm0	# add, with saturation
+-	movq %mm0, (%edi)
+-	add $8, %edi
++	movq %mm0, (%rdi)
++	add $8, %rdi
+ 	loop 0
+ 
+-9:	pop %edi
+-	pop %esi
+-	pop %ebx
++9:	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+ 
+ ENTRY(calc_add128_mmx)
+ 	enter $0, $0
+-	push %ebx
+-	push %esi
+-	push %edi
+-
+-	mov Number, %ecx
+-	mov Dst, %edi
+-	mov Src1, %esi
++	push %rbx
++	push %rsi
++	push %rdi
++
++	mov Number, %rcx
++	mov Dst, %rdi
++	mov Src1, %rsi
+ 	
+-	shr $3, %ecx		# Divide by 8 (!)
++	shr $3, %rcx		# Divide by 8 (!)
+ 	movq mm_128b, %mm7	# load constant
+ 
+-0:	movq (%esi), %mm0
+-	add $8, %esi
++0:	movq (%rsi), %mm0
++	add $8, %rsi
+ 	psubb %mm7, %mm0	# compensate null-point
+-	movq (%edi), %mm1
++	movq (%rdi), %mm1
+ 	paddb %mm1, %mm0	# add, with overflow
+-	movq %mm0, (%edi)
+-	add $8, %edi
++	movq %mm0, (%rdi)
++	add $8, %rdi
+ 	loop 0
+ 
+-9:	pop %edi
+-	pop %esi
+-	pop %ebx
++9:	pop %rdi
++	pop %rsi
++	pop %rbx
+ 	leave
+ 	ret
+--- ./camstream/video/video_def.h.old	2004-04-17 18:22:25.357442488 +0100
++++ ./camstream/video/video_def.h	2004-04-17 18:24:14.037920544 +0100
+@@ -1,8 +1,8 @@
+ #define __ASSEMBLY__
+ #include <linux/linkage.h>
+ 
+-#define Number 8(%ebp)
+-#define Dst    12(%ebp)
+-#define Src1   16(%ebp)
+-#define Src2   20(%ebp)
++#define Number 8(%rbp)
++#define Dst    12(%rbp)
++#define Src1   16(%rbp)
++#define Src2   20(%rbp)
+ 

camstream-makefiles.patch:

Index: camstream-makefiles.patch
===================================================================
RCS file: camstream-makefiles.patch
diff -N camstream-makefiles.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ camstream-makefiles.patch	24 Dec 2006 18:19:23 -0000	1.3
@@ -0,0 +1,95 @@
+diff -Naru camstream-0.26.2.orig/camstream/configure.in camstream-0.26.2/camstream/configure.in
+--- camstream-0.26.2.orig/camstream/configure.in	2002-12-30 03:43:35.000000000 +0200
++++ camstream-0.26.2/camstream/configure.in	2003-08-08 01:27:04.000000000 +0300
+@@ -200,7 +200,7 @@
+ 
+ dnl Check for Intel architecture
+ AC_CACHE_CHECK(for Intel processor(s), ac_cv_flag_intelcpu, [
+-if [ uname -m | grep -q "i.86" ]; then
++if test -n "$HAVE_IX86"; then
+   ac_cv_flag_intelcpu=yes
+ else
+   ac_cv_flag_intelcpu=no
+@@ -212,7 +212,7 @@
+ 
+   dnl Check for mmx processor
+   AC_CACHE_CHECK(for MMX on processor(s), ac_cv_flag_mmx, [
+-  if grep "^flags.* mmx" /proc/cpuinfo > /dev/null; then
++  if test -n "$HAVE_MMX"; then
+     ac_cv_flag_mmx=yes
+   else
+     ac_cv_flag_mmx=no
+diff -Naru camstream-0.26.2.orig/camstream/icons/Makefile.in camstream-0.26.2/camstream/icons/Makefile.in
+--- camstream-0.26.2.orig/camstream/icons/Makefile.in	2001-11-14 01:06:27.000000000 +0200
++++ camstream-0.26.2/camstream/icons/Makefile.in	2003-08-08 01:27:23.000000000 +0300
+@@ -1,9 +1,7 @@
+ # Extra defines
+-exec_prefix=@exec_prefix@
+-prefix=@prefix@
+-SHAREDIR=@datadir@/camstream
++datadir=@datadir@
++SHAREDIR=$(datadir)/camstream
+ ICON_DIR=$(SHAREDIR)/icons
+-BIN_DIR=@bindir@
+ 
+ install:
+ 	install --mode=0755 --directory $(ICON_DIR)
+diff -Naru camstream-0.26.2.orig/camstream/Makefile.in camstream-0.26.2/camstream/Makefile.in
+--- camstream-0.26.2.orig/camstream/Makefile.in	2002-05-01 03:23:20.000000000 +0300
++++ camstream-0.26.2/camstream/Makefile.in	2003-08-08 01:27:23.000000000 +0300
+@@ -9,8 +9,9 @@
+ # Extra defines
+ prefix=@prefix@
+ exec_prefix=@exec_prefix@
+-SHARE_DIR=@datadir@/camstream
+-BIN_DIR=@bindir@
++datadir=@datadir@
++SHARE_DIR=$(datadir)/camstream
++bindir=@bindir@
+ 
+ MOREDEFS=-DSHARE_DIR=\"$(SHARE_DIR)\"
+ 
+@@ -77,8 +78,8 @@
+ 
+ install:	all
+ 	make -C icons install
+-	install --mode=0755 --directory $(BIN_DIR)
+-	install --strip camstream $(BIN_DIR)
++	install --mode=0755 --directory $(bindir)
++	install camstream $(bindir)
+ 
+ # Default targets
+ clean:
+diff -Naru camstream-0.26.2.orig/lib/ccvt/configure.in camstream-0.26.2/lib/ccvt/configure.in
+--- camstream-0.26.2.orig/lib/ccvt/configure.in	2001-12-03 22:42:48.000000000 +0200
++++ camstream-0.26.2/lib/ccvt/configure.in	2003-08-08 01:27:23.000000000 +0300
+@@ -19,7 +19,7 @@
+ 
+ dnl Check for Intel architecture
+ AC_CACHE_CHECK(for Intel processor(s), ac_cv_flag_intelcpu, [
+-if [ uname -m | grep -q "i.86" ]; then
++if test -n "$HAVE_IX86"; then
+   ac_cv_flag_intelcpu=yes
+ else
+   ac_cv_flag_intelcpu=no
+@@ -31,7 +31,7 @@
+ 
+   dnl Check for mmx processor
+   AC_CACHE_CHECK(for MMX on processor(s), ac_cv_flag_mmx, [
+-  if grep "^flags.* mmx" /proc/cpuinfo > /dev/null; then
++  if test -n "$HAVE_MMX"; then
+     ac_cv_flag_mmx=yes
+   else
+     ac_cv_flag_mmx=no
+diff -Naru camstream-0.26.2.orig/lib/ccvt/Makefile.in camstream-0.26.2/lib/ccvt/Makefile.in
+--- camstream-0.26.2.orig/lib/ccvt/Makefile.in	2002-12-08 02:06:38.000000000 +0200
++++ camstream-0.26.2/lib/ccvt/Makefile.in	2003-08-08 01:26:42.000000000 +0300
+@@ -1,6 +1,5 @@
+-CPPFLAGS=-Wall -g -O3
+-CFLAGS=@DEFS@
+-CXXFLAGS=-I$(QTDIR)/include @DEFS@
++CFLAGS=@DEFS@ $(RPM_OPT_FLAGS)
++CXXFLAGS=-I$(QTDIR)/include $(CFLAGS)
+ ASFLAGS=-g
+ LDFLAGS=-g @LDFLAGS@
+ LIBS=


Index: camstream.desktop
===================================================================
RCS file: camstream.desktop
diff -N camstream.desktop
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ camstream.desktop	24 Dec 2006 18:19:23 -0000	1.3
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=CamStream
+Comment=A set of programs to make use of your webcam
+Exec=camstream
+Icon=camstream.png
+Terminal=false
+Type=Application
+Encoding=UTF-8
+Categories=Application;AudioVideo;QT;


Index: camstream.spec
===================================================================
RCS file: camstream.spec
diff -N camstream.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ camstream.spec	24 Dec 2006 18:19:23 -0000	1.13
@@ -0,0 +1,141 @@
+Name:           camstream
+Version:        0.26.3
+Release:        9%{?dist}
+
+Summary:        Set of programs to make use of your webcam
+
+Group:          Applications/Multimedia
+License:        GPL
+URL:            http://www.smcc.demon.nl/camstream/
+Source0:        http://www.smcc.demon.nl/camstream/download/camstream-0.26.3.tar.gz
+Source1:        %{name}.desktop
+Source2:        %{name}.png
+Patch0:         %{name}-makefiles.patch
+Patch1:         %{name}-%{version}-x86_64-asm.patch
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:  qt-devel, autoconf, desktop-file-utils
+ExclusiveArch:  %{ix86} x86_64 
+
+%description
+CamStream is (going to be) a collection of tools for webcams and other
+video-devices, enhancing your Linux system with multimedia video.
+All written in C++ and with a nice GUI frontend. The interface
+is based on Qt, an excellent GUI framework.
+
+
+%prep
+%setup -q
+%patch0 -p1
+%ifarch x86_64
+%patch1 -p1
+%endif
+
+
+%build
+[ -n "$QTDIR" ] || . %{_sysconfdir}/profile.d/qt.sh
+
+# Use our homebrew CPU flags for sane builds.
+%ifarch %{ix86}
+export HAVE_IX86=1
+%ifarch i686 athlon
+export HAVE_MMX=1
+%endif
+%endif
+
+# Do autoconfs due to patch0 and to nuke old autoconf 2.13 stuff in lib/ccvt.
+# Build lib/ccvt separately (needs gcc while other stuff needs g++).
+pushd lib/ccvt
+autoconf
+%configure
+make %{?_smp_mflags}
+popd
+
+pushd camstream
+autoconf
+popd
+
+export CC=g++
+%configure
+make all %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%makeinstall
+install -d -p -m 755 $RPM_BUILD_ROOT%{_datadir}/pixmaps
+install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/camstream.png
+install -m 755 camstream/ftpput $RPM_BUILD_ROOT%{_bindir}
+install -m 755 camstream/caminfo $RPM_BUILD_ROOT%{_bindir}
+desktop-file-install \
+  --vendor fedora \
+  --dir $RPM_BUILD_ROOT%{_datadir}/applications \
+  --mode 644 \
+  --add-category X-Fedora \
+  %{SOURCE1}
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc docs/*
+%{_bindir}/*
+%{_datadir}/camstream
+%{_datadir}/pixmaps/*
+%{_datadir}/applications/*
+
+
+%changelog
+* Sat Mar 11 2006 Simon Perreault <nomis80 at nomis80.org> - 0.26.3-9
+- Taking ownership of package.
+- Fixed build dependencies (#178654).
+
+* Wed May 25 2005 Colin Charles <colin at fedoraproject.org> - 0.26.3-8
+- remove ppc (ExclusiveArch x86/x86_64), as there's x86 assembly in video_asm.S that would require porting (#158652)
+
+* Sun May 22 2005 Jeremy Katz <katzj at redhat.com> - 0.26.3-7
+- rebuild on all arches
+
+* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
+- rebuilt
+
+* Sat Jan 29 2005 Thorsten Leemhuis <fedora at leemhuis.info> 0:0.26.3-5
+- Add x86_64 asm patch; Patch was created by gentoo, many thanks to them
+
+* Mon Dec 29 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.3-0.fdr.4
+- Upstream applied patch to ftpput.cc
+
+* Tue Dec 09 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.3-0.fdr.3
+- Including patch (ftpput.cc) originaly from M. Schwendt, modyfied to be applied on 0.26-3
+- Including ftpput and caminfo
+
+* Sun Dec 07 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.3-0.fdr.2
+- removing obsolete depency on ImageMagik
+
+* Thu Dec 04 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.3-0.fdr.1
+- Update to 26.3 which Michael Schwendt`s included fix for ftpput.cc merged by
+- upstream. Including desktop-icon.
+
+* Thu Aug  7 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.26.2-0.fdr.4
+- Add .desktop entry.
+- Rework makefiles patch for correct install locations and CPU/optflags.
+- Cosmetic specfile tweaks.
+
+* Wed Aug 06 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.2-0.fdr.3
+- Corrected permissions on sources
+
+* Thu Aug 05 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.2-0.fdr.2
+- More documentation included
+- Using autoconf for ccvt
+- Patched the Makefiles for ccvt and camstream to proper build in rpm-root
+
+* Mon Aug 04 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.2-0.fdr.1
+- Workaround for qt-devel included
+
+* Mon Aug 04 2003 Andreas Pfaffeneder <fedora at zuhause-local.de> 0:0.26.2-0.fdr.0
+- Initial Fedora-RPM release.
+
+


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	24 Dec 2006 18:19:23 -0000	1.5
@@ -0,0 +1 @@
+c01a6161196ab6a6e4334476ae568a31  camstream-0.26.3.tar.gz


--- dead.package DELETED ---




More information about the fedora-extras-commits mailing list