smpeg: Remove from opt, Danny Rawlins is adopting in contrib (currently unmaintained).

This commit is contained in:
Brett Goulder 2008-02-19 07:42:18 -05:00
parent 27df4ebb0b
commit 46fa08fd0a
4 changed files with 0 additions and 66 deletions

View File

@ -1,30 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/glmovie
-rwxr-xr-x root/root usr/bin/plaympeg
-rwxr-xr-x root/root usr/bin/smpeg-config
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/smpeg/
-rw-r--r-- root/root usr/include/smpeg/MPEG.h
-rw-r--r-- root/root usr/include/smpeg/MPEGaction.h
-rw-r--r-- root/root usr/include/smpeg/MPEGaudio.h
-rw-r--r-- root/root usr/include/smpeg/MPEGerror.h
-rw-r--r-- root/root usr/include/smpeg/MPEGfilter.h
-rw-r--r-- root/root usr/include/smpeg/MPEGlist.h
-rw-r--r-- root/root usr/include/smpeg/MPEGring.h
-rw-r--r-- root/root usr/include/smpeg/MPEGstream.h
-rw-r--r-- root/root usr/include/smpeg/MPEGsystem.h
-rw-r--r-- root/root usr/include/smpeg/MPEGvideo.h
-rw-r--r-- root/root usr/include/smpeg/smpeg.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libsmpeg-0.4.so.0 -> libsmpeg-0.4.so.0.1.3
-rwxr-xr-x root/root usr/lib/libsmpeg-0.4.so.0.1.3
-rw-r--r-- root/root usr/lib/libsmpeg.a
-rwxr-xr-x root/root usr/lib/libsmpeg.la
lrwxrwxrwx root/root usr/lib/libsmpeg.so -> libsmpeg-0.4.so.0.1.3
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/plaympeg.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/smpeg.m4

View File

@ -1,2 +0,0 @@
59c76ac704088ef5539210190c4e1fe3 smpeg-0.4.4.tar.gz
514632fb38e5ad33970854b3baa873f2 smpeg-mpegaudiosdl.patch

View File

@ -1,20 +0,0 @@
# Description: A SDL MPEG player library.
# URL: http://www.lokigames.com/development/smpeg.php3
# Maintainer: Matt Housh, jaeger at crux dot nu
# Depends on: libsdl
name=smpeg
version=0.4.4
release=2
source=(http://gentoo.osuosl.org/distfiles/$name-$version.tar.gz \
$name-mpegaudiosdl.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/$name-mpegaudiosdl.patch
./configure --prefix=/usr --enable-gtk-player=no
sed -i -e 's|\(libsmpeg_la_LDFLAGS = .*\)|\1 -lstdc++|' Makefile
make
make install DESTDIR=$PKG
rm -f $PKG/usr/man/man1/gtv.1
}

View File

@ -1,14 +0,0 @@
--- smpeg-0.4.4/MPEGaudio.h.orig 2006-01-15 16:17:56.356444000 +0100
+++ smpeg-0.4.4/MPEGaudio.h 2006-01-15 16:18:36.686965250 +0100
@@ -148,6 +148,11 @@
char buffer[2*WINDOWSIZE];
};
+void Play_MPEGaudioSDL(void *udata, Uint8 *stream, int len);
+#ifdef THREADED_AUDIO
+int Decode_MPEGaudio(void *udata);
+#endif
+
/* The actual MPEG audio class */
class MPEGaudio : public MPEGerror, public MPEGaudioaction {