Browse Source

Stefan Fiedler:


			
			
				rocklinux
			
			
		
Stefan Fiedler 21 years ago
parent
commit
3b08d8fc6c
9 changed files with 301 additions and 0 deletions
  1. +60
    -0
      package/stf/kile/kile.desc
  2. +27
    -0
      package/stf/rivatv/disable-depmod.patch
  3. +25
    -0
      package/stf/rivatv/disable-mknod-video.patch
  4. +19
    -0
      package/stf/rivatv/kernel_fpu_begin.patch
  5. +23
    -0
      package/stf/rivatv/rivatv.conf
  6. +49
    -0
      package/stf/rivatv/rivatv.desc
  7. +22
    -0
      package/stf/vamps/hotfix.patch
  8. +32
    -0
      package/stf/vamps/vamps.conf
  9. +44
    -0
      package/stf/vamps/vamps.desc

+ 60
- 0
package/stf/kile/kile.desc

@ -0,0 +1,60 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/stf/ffmpeg/ffmpeg.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] Kile - an integrated LaTeX environment
[T] The aim of the Kile project is to develop a user friendly TeX/LaTeX editor.
[T] It will run on systems with the KDE desktop environment.
[T] Kile is also part of the Fink project, which means you can run Kile even on
[T] a Mac with OS-X!
[T] The main features are:
[T] Compile, convert and view your document with one click.
[T] Templates and wizards makes starting a new document very little work.
[T] Easy insertion of many standard tags and symbols and the option to define
[T] (an arbitrary number of) user defined tags.
[T] Inverse and forward search: click in the DVI viewer and jump to the
[T] corresponding LaTeX line in the editor, or jump from the editor to the
[T] corresponding page in the viewer.
[T] Finding chapter or sections is very easy, Kile constructs a list of all the
[T] chapter etc. in your document. You can use the list to jump to the
[T] corresponding section.
[T] Collect documents that belong together into a project.
[U] http://kile.sf.net
[A] Jeroen Wijnhout { Main developer }
[A] Pascal Brachet { Past main developer }
[A] Holger Danielsson { Patches }
[A] And many others { see http://kile.sourceforge.net/team.php }
[M] Stefan Fiedler <stefan.fiedler@students.jku.at>
[C] extra/multimedia
[F]
[L] GPL
[S] Stable
[V] 1.6.2
[P] X -----5---9 800.000
[D] 1308189620 kile-1.6.2.tar.gz http://cesnet.dl.sourceforge.net/sourceforge/kile/

+ 27
- 0
package/stf/rivatv/disable-depmod.patch

@ -0,0 +1,27 @@
--- rivatv-0.8.4/Makefile.in 2004-02-24 20:44:54.000000000 +0100
+++ rivatv-0.8.4.patched/Makefile.in 2004-05-13 23:46:46.000000000 +0200
@@ -99,7 +99,7 @@
else \
install -m 644 -o 0 -g 0 $$ofiles $(MODULES)$(MOD_DEST); \
fi; \
- $(DEPMOD); \
+ \
echo; \
echo "RivaTV installed."; \
echo "To load RivaTV, login as root and \`modprobe rivatv\`."; \
@@ -107,12 +107,12 @@
fi
install-ko:
- install -m 644 -o 0 -g 0 $(TARGETS:.o=.ko) $(MODULES)$(MOD_DEST); \
- $(DEPMOD);
+ install -m 644 -o 0 -g 0 $(TARGETS:.o=.ko) $(MODULES)$(MOD_DEST);
+
uninstall:
@(cd $(MODULES)$(MOD_DEST) && rm -f $(SOURCES:src/%.c=%.o) $(BTTV_SOURCES:bttv/%.c=%.o) rivatv.o)
- @$(DEPMOD)
+
@echo
@echo RivaTV uninstalled.
@echo

+ 25
- 0
package/stf/rivatv/disable-mknod-video.patch

@ -0,0 +1,25 @@
--- rivatv-0.8.4/Makefile.in 2004-02-24 20:44:54.000000000 +0100
+++ rivatv-0.8.4/Makefile.in.patched 2004-05-12 17:46:56.000000000 +0200
@@ -69,14 +69,14 @@
make -C $(KERNEL) SUBDIRS=`pwd`/src EXTRA_CFLAGS="-I`pwd`/bttv @CFLAGS@" modules
devices:
- @if ! test -c /dev/video0 ; then \
- echo Creating video devices. \
- mknod /dev/video0 c 81 0; chmod 660 /dev/video0; \
- mknod /dev/video1 c 81 1; chmod 660 /dev/video1; \
- mknod /dev/video2 c 81 2; chmod 660 /dev/video2; \
- mknod /dev/video3 c 81 3; chmod 660 /dev/video3; \
- ln -s /dev/video0 /dev/video; \
- fi
+# @if ! test -c /dev/video0 ; then \
+# echo Creating video devices. \
+# mknod /dev/video0 c 81 0; chmod 660 /dev/video0; \
+# mknod /dev/video1 c 81 1; chmod 660 /dev/video1; \
+# mknod /dev/video2 c 81 2; chmod 660 /dev/video2; \
+# mknod /dev/video3 c 81 3; chmod 660 /dev/video3; \
+# ln -s /dev/video0 /dev/video; \
+# fi
config:
@-./configure

+ 19
- 0
package/stf/rivatv/kernel_fpu_begin.patch

@ -0,0 +1,19 @@
diff -dur rivatv-0.8.4/src/rivatv-convert.c rivatv-0.8.4-patched/src/rivatv-convert.c
--- rivatv-0.8.4/src/rivatv-convert.c 2004-02-23 17:27:12.000000000 +0100
+++ rivatv-0.8.4-patched/src/rivatv-convert.c 2004-05-19 20:54:32.000000000 +0200
@@ -73,7 +73,6 @@
/* indicates whether MMX code is requested or not */
int mmx = 1;
-#ifndef RIVATV_DISABLE_CONVERSION
#if defined (__i386__) || defined (__x86_64__)
/* kernel_fpu_begin() is not exported (properly). Made a local
@@ -105,7 +104,6 @@
#endif
#endif
-#endif
void rivatv_detect_mmx (void)
{

+ 23
- 0
package/stf/rivatv/rivatv.conf

@ -0,0 +1,23 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/stf/rivatv/rivatv.conf
# ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. A copy of the GNU General Public
# License can be found at Documentation/COPYING.
#
# Many people helped and are helping developing ROCK Linux. Please
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
# file for details.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
var_append patchfiles " " "$archdir/rivatv-0.8.4-i2c-2.8.4.patch"

+ 49
- 0
package/stf/rivatv/rivatv.desc

@ -0,0 +1,49 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/stf/rivatv/rivatv.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] Driver set for nVidia based graphics card with video-in feature
[T] Is RivaTV for you?
[T] The RivaTV driver set is meant for anybody who:
[T] * has a nVidia based graphics card with video-in feature
[T] * runs Linux 2.4.0 or higher.
[T] Have both? Want to watch and/or grab video? Then RivaTV is intended
[T] for you!
[U] http://rivatv.sourceforge.net
[A] RivaTV Team
[M] Stefan Fiedler <stefan.fiedler@students.jku.at>
[C] base/kernel
[L] GPL
[S] Stable
[V] 0.8.4
#[V] 2004-01-13
[P] X -----5---9 650.000
[D] 3537883231 rivatv-0.8.4.tar.gz http://dl.sourceforge.net/sourceforge/rivatv/
[D] 3379469693 rivatv-0.8.4-i2c-2.8.4.patch http://khali.linux-fr.org/devel/i2c/other/
# [D] X rivatv-2004-01-13.tar.bz2 cvs://pserver:anonymous@cvs.rivatv.sourceforge.net:/cvsroot/rivatv::rivatv/!2004-01-13/

+ 22
- 0
package/stf/vamps/hotfix.patch

@ -0,0 +1,22 @@
diff -dur vamps-0.95/Makefile vamps-0.95-patched/Makefile
--- vamps-0.95/Makefile 2003-12-15 07:55:45.000000000 +0100
+++ vamps-0.95-patched/Makefile 2004-05-18 22:35:37.000000000 +0200
@@ -14,7 +14,7 @@
CC = gcc
CFLAGS = -Wall -O3 -fomit-frame-pointer -fexpensive-optimizations \
- -funroll-loops -march=i686 -mcpu=i686 -malign-functions=4
+ -funroll-loops -march=i686 -mcpu=i686 -falign-functions=4
STATIC =
#STATIC = -static
STRIP = strip
@@ -23,7 +23,7 @@
all: vamps vamps-play_title lsdvd
vamps: vamps.o requant.o
- $(CC) -o $@ $(STATIC) vamps.o requant.o -lpthread
+ $(CC) -o $@ $(STATIC) vamps.o requant.o -lpthread -lm
$(STRIP) $@
requant.o: requant.h putvlc.h getvlc.h
Nur in vamps-0.95-patched: Makefile~.

+ 32
- 0
package/stf/vamps/vamps.conf

@ -0,0 +1,32 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/stf/ffmpeg/ffmpeg.conf
# ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. A copy of the GNU General Public
# License can be found at Documentation/COPYING.
#
# Many people helped and are helping developing ROCK Linux. Please
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
# file for details.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
#
copy_source() {
echo "Installing program files ..."
cp -av ./{vamps,vamps-play_title} /usr/bin
pkginstalled lsdvd || cp -av ./lsdvd /usr/bin
}
hook_add postmake 5 "copy_source"
makeinstopt=""

+ 44
- 0
package/stf/vamps/vamps.desc

@ -0,0 +1,44 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/stf/ffmpeg/ffmpeg.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] Fast MPEG requantiser for Linux
[T] Vamps evaporates DVD compliant MPEG2 program streams by selectively copying
[T] audio and subpicture tracks and by re-quantizing the embedded elementary video
[T] stream. A shrink factor may be either specified for the video ES (elementary
[T] stream) only or for the full PS.
[U] http://www.heise.de/ct/ftp/04/01/094/ { German only! }
[A] Unknown
[M] Stefan Fiedler <stefan.fiedler@students.jku.at>
[C] extra/multimedia
[L] GPL
[S] Stable
[V] 0.9.5
[P] X -----5---9 650.000
[D] 2380126469 vamps-0.9.5.tar.gz !ftp://ftp.heise.de/pub/ct/listings/0401-094.tgz

Loading…
Cancel
Save