libfame: dropped

This commit is contained in:
Danny Rawlins 2013-12-04 03:00:17 +11:00
parent 498470fc93
commit c6ce40d681
5 changed files with 0 additions and 3039 deletions

View File

@ -1,51 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/libfame-config
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/fame.h
-rw-r--r-- root/root usr/include/fame_bitbuffer.h
-rw-r--r-- root/root usr/include/fame_decoder.h
-rw-r--r-- root/root usr/include/fame_decoder_mpeg.h
-rw-r--r-- root/root usr/include/fame_encoder.h
-rw-r--r-- root/root usr/include/fame_encoder_mpeg.h
-rw-r--r-- root/root usr/include/fame_malloc.h
-rw-r--r-- root/root usr/include/fame_monitor.h
-rw-r--r-- root/root usr/include/fame_motion.h
-rw-r--r-- root/root usr/include/fame_motion_fourstep.h
-rw-r--r-- root/root usr/include/fame_motion_none.h
-rw-r--r-- root/root usr/include/fame_motion_pmvfast.h
-rw-r--r-- root/root usr/include/fame_profile.h
-rw-r--r-- root/root usr/include/fame_profile_mpeg.h
-rw-r--r-- root/root usr/include/fame_profile_mpeg1.h
-rw-r--r-- root/root usr/include/fame_profile_mpeg4_shape.h
-rw-r--r-- root/root usr/include/fame_profile_mpeg4_simple.h
-rw-r--r-- root/root usr/include/fame_profile_stats.h
-rw-r--r-- root/root usr/include/fame_rate.h
-rw-r--r-- root/root usr/include/fame_rate_1param.h
-rw-r--r-- root/root usr/include/fame_rate_simple.h
-rw-r--r-- root/root usr/include/fame_shape.h
-rw-r--r-- root/root usr/include/fame_syntax.h
-rw-r--r-- root/root usr/include/fame_syntax_mpeg1.h
-rw-r--r-- root/root usr/include/fame_syntax_mpeg4.h
-rw-r--r-- root/root usr/include/fame_version.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libfame-0.9.so.1 -> libfame-0.9.so.1.0.0
-rwxr-xr-x root/root usr/lib/libfame-0.9.so.1.0.0
-rw-r--r-- root/root usr/lib/libfame.a
-rwxr-xr-x root/root usr/lib/libfame.la
lrwxrwxrwx root/root usr/lib/libfame.so -> libfame-0.9.so.1.0.0
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/fame_close.3.gz
-rw-r--r-- root/root usr/man/man3/fame_encode_frame.3.gz
-rw-r--r-- root/root usr/man/man3/fame_encode_slice.3.gz
-rw-r--r-- root/root usr/man/man3/fame_end_frame.3.gz
-rw-r--r-- root/root usr/man/man3/fame_get_object.3.gz
-rw-r--r-- root/root usr/man/man3/fame_init.3.gz
-rw-r--r-- root/root usr/man/man3/fame_open.3.gz
-rw-r--r-- root/root usr/man/man3/fame_register.3.gz
-rw-r--r-- root/root usr/man/man3/fame_start_frame.3.gz
-rw-r--r-- root/root usr/man/man3/fame_unregister.3.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/libfame.m4

View File

@ -1,3 +0,0 @@
509a00f6ec1dcdf04916fcc096135a1e libfame-0.9.1-config_update-1.patch
1c4823578b898342c005cc2d11f51030 libfame-0.9.1-gcc34-1.patch
880085761e17a3b4fc41f4f6f198fd3b libfame-0.9.1.tar.gz

View File

@ -1,23 +0,0 @@
# Description: Library for encoding MPEG content.
# URL: http://fame.sourceforge.net/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Martin Opel, mo at obbl-net dot de
name=libfame
version=0.9.1
release=3
source=(http://downloads.sourceforge.net/project/fame/$name/$version/$name-$version.tar.gz
$name-$version-gcc34-1.patch
$name-$version-config_update-1.patch)
build() {
cd $name-$version
patch -p 1 -i $SRC/$name-$version-gcc34-1.patch
patch -p 1 -i $SRC/$name-$version-config_update-1.patch
sed -i 's/$CC --version/$CC -dumpversion/' configure
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}

File diff suppressed because it is too large Load Diff

View File

@ -1,32 +0,0 @@
Submitted By: Randy McMurchy <randy_at_linuxfromscratch_dot_org>
Date: 2004-09-04
Initial Package Version: 0.9.1
Upstream Status: Not submitted
Origin: Randy McMurchy
Description: Fixes libfame library when compiled with GCC-3.4.x
diff -Naur libfame-0.9.1-orig/src/half_mmx.h libfame-0.9.1/src/half_mmx.h
--- libfame-0.9.1-orig/src/half_mmx.h 2002-04-30 18:04:02.000000000 +0000
+++ libfame-0.9.1/src/half_mmx.h 2004-09-05 03:49:09.666845896 +0000
@@ -18,7 +18,7 @@
*/
/**************************** half-pixel interpolation ***********************/
-static short const _mmx_one[] = { 1, 1, 1, 1 };
+const _mmx_one[] = { 1, 1, 1, 1 };
static void inline mmx_interpolate(unsigned char **ref,
int pitch,
diff -Naur libfame-0.9.1-orig/src/half_sse.h libfame-0.9.1/src/half_sse.h
--- libfame-0.9.1-orig/src/half_sse.h 2002-01-27 02:24:56.000000000 +0000
+++ libfame-0.9.1/src/half_sse.h 2004-09-05 03:49:39.894250632 +0000
@@ -19,7 +19,7 @@
*/
/**************************** half-pixel interpolation ***********************/
-static short const _mmx_one[] = { 1, 1, 1, 1 };
+const _mmx_one[] = { 1, 1, 1, 1 };
static unsigned char const _mmx_one_byte[] = {1,1,1,1,1,1,1,1};