Import of gstreamer-plugins, a large collection of audio and video

plugins for gstreamer.
This commit is contained in:
marcm 2004-12-22 06:09:18 +00:00
parent 93aa6e9406
commit 1773956362
47 changed files with 1087 additions and 0 deletions

View File

@ -0,0 +1,383 @@
# $OpenBSD: Makefile,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
COMMENT= "GStreamer Streaming-media framework plug-ins."
VERSION= 0.8.6
DISTNAME= gst-plugins-${VERSION}
PKGNAME= gstreamer-plugins-${VERSION}
CATEGORIES= devel
HOMEPAGE= http://www.gstreamer.net/
MAINTAINER= Marc Matteo <marcm@openbsd.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= GL GLU ICE SM X11 Xcursor Xext Xft Xinerama Xrender Xv \
fontconfig freetype m ossaudio z \
glib-2.0.0.0 gmodule-2.0.0.0 gobject-2.0.0.0 gthread-2.0.0.0 \
ORBit-2 atk-1.0.0.0 xml2 \
pango-1.0.0.0 pangoft2-1.0.0.0 pangox-1.0.0.0 pangoxft-1.0.0.0 \
gdk-x11-2.0.0.0 gdk_pixbuf-2.0.0.0 gtk-x11-2.0.0.0
MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins/ \
${MASTER_SITE_GNOME:=sources/gst-plugins/0.8/}
EXTRACT_SUFX= .tar.bz2
MODULES= devel/gettext
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
LIB_DEPENDS= gconf-2::devel/gconf2 \
gstcontrol-0.8.5.0,gstreamer-0.8.5.0::devel/gstreamer
USE_GMAKE= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --with-gconf-schema-file-dir=${LOCALBASE}/share/schemas/gst-plugins
# Disable plugins we won't or can't build...
CONFIGURE_ARGS+= --disable-alsa
CONFIGURE_ARGS+= --disable-mjpegtools
CONFIGURE_ARGS+= --disable-openquicktime
CONFIGURE_ARGS+= --disable-qcam
# Speex in ports is too old
CONFIGURE_ARGS+= --disable-speex
CONFIGURE_ARGS+= --disable-v4l
CONFIGURE_ARGS+= --disable-v4l2
CONFIGURE_ARGS+= --disable-tests
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
# Flavor/Plugin setup below this point...
# "You're off the edge of the map, mate. Here there be monsters"
PSEUDO_FLAVORS= no_nuthin
FLAVOR?=
MULTI_PACKAGES=
SUBPACKAGE?=
# a52dec
COMMENT-a52= "GStreamer plugin for decoding A/52 audio streams"
PKGNAME-a52= gstreamer-a52-${VERSION}
PSEUDO_FLAVORS+= no_a52
# a52 doesn't build properly on sparc64
.if !${FLAVOR:L:Mno_a52} && !${FLAVOR:L:Mno_nuthin} && ${MACHINE_ARCH} != "sparc64"
MULTI_PACKAGES+= -a52
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-a52"
LIB_DEPENDS= a52::audio/liba52
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-a52}
LIB_DEPENDS+= a52::audio/liba52
CONFIGURE_ARGS+= --enable-a52dec
. else
CONFIGURE_ARGS+= --disable-a52dec
. endif
.endif
# audiofile
COMMENT-audiofile= "GStreamer plugin for using the Audiofile library"
PKGNAME-audiofile= gstreamer-audiofile-${VERSION}
PSEUDO_FLAVORS+= no_audiofile
.if !${FLAVOR:L:Mno_audiofile} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -audiofile
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-audiofile"
LIB_DEPENDS= audiofile::devel/libaudiofile
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-audiofile}
LIB_DEPENDS+= audiofile::devel/libaudiofile
CONFIGURE_ARGS+= --enable-audiofile
. else
CONFIGURE_ARGS+= --disable-audiofile
. endif
.endif
# cdparanoia (cdda)
COMMENT-cdda= "GStreamer plugin for reading audio from CDs"
PKGNAME-cdda= gstreamer-cdda-${VERSION}
PSEUDO_FLAVORS+= no_cdda
.if !${FLAVOR:L:Mno_cdda} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -cdda
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-cdda"
LIB_DEPENDS= cdda_interface,cdda_paranoia::audio/cdparanoia
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-cdda}
LIB_DEPENDS+= cdda_interface,cdda_paranoia::audio/cdparanoia
CONFIGURE_ARGS+= --enable-cdparanoia
. else
CONFIGURE_ARGS+= --disable-cdparanoia
. endif
.endif
# dvdreadsrc
COMMENT-dvdread= "GStreamer plugin for DVD playback"
PKGNAME-dvdread= gstreamer-dvdread-${VERSION}
PSEUDO_FLAVORS+= no_dvdread
.if !${FLAVOR:L:Mno_dvdread} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -dvdread
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-dvdread"
LIB_DEPENDS= dvdread::devel/libdvdread
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-dvdread}
LIB_DEPENDS+= dvdread::devel/libdvdread
CONFIGURE_ARGS+= --enable-dvdread
. else
CONFIGURE_ARGS+= --disable-dvdread
. endif
.endif
# esd
COMMENT-esd= "GStreamer plugin for outputting to esd"
PKGNAME-esd= gstreamer-esd-${VERSION}
PSEUDO_FLAVORS+= no_esd
.if !${FLAVOR:L:Mno_esd} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -esd
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-esd"
LIB_DEPENDS= esd.2::audio/esound
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-esd}
LIB_DEPENDS+= esd.2::audio/esound
CONFIGURE_ARGS+= --enable-esd
. else
CONFIGURE_ARGS+= --disable-esd
. endif
.endif
# flac
COMMENT-flac= "GStreamer plugin for encoding/decoding FLAC files"
PKGNAME-flac= gstreamer-flac-${VERSION}
PSEUDO_FLAVORS+= no_flac
.if !${FLAVOR:L:Mno_flac} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -flac
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-flac"
LIB_DEPENDS= FLAC::audio/flac
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-flac}
LIB_DEPENDS+= FLAC::audio/flac
CONFIGURE_ARGS+= --enable-flac
. else
CONFIGURE_ARGS+= --disable-flac
. endif
.endif
# gnomevfs
COMMENT-gnome= "GStreamer plugin supporting GNOME VFS"
PKGNAME-gnome= gstreamer-gnome-${VERSION}
PSEUDO_FLAVORS+= no_gnome
.if !${FLAVOR:L:Mno_gnome} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -gnome
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-gnome"
WANTLIB+= bonobo-activation
LIB_DEPENDS= gnomevfs-2::x11/gnome/vfs2
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-gnome}
LIB_DEPENDS+= gnomevfs-2::x11/gnome/vfs2
CONFIGURE_ARGS+= --enable-gnome_vfs
. else
CONFIGURE_ARGS+= --disable-gnome_vfs
. endif
.endif
# jpeg
COMMENT-jpeg= "GStreamer plugin for handling JPEG files"
PKGNAME-jpeg= gstreamer-jpeg-${VERSION}
PSEUDO_FLAVORS+= no_jpeg
.if !${FLAVOR:L:Mno_jpeg} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -jpeg
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-jpeg"
LIB_DEPENDS= jpeg::graphics/jpeg
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-jpeg}
LIB_DEPENDS+= jpeg::graphics/jpeg
CONFIGURE_ARGS+= --enable-jpeg
. else
CONFIGURE_ARGS+= --disable-jpeg
. endif
.endif
# lame
COMMENT-lame= "GStreamer plugin for encoding mp3 files using LAME"
PKGNAME-lame= gstreamer-lame-${VERSION}
PSEUDO_FLAVORS+= no_lame
.if !${FLAVOR:L:Mno_lame} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -lame
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-lame"
PERMIT_PACKAGE_CDROM= "patent issues"
PERMIT_DISTFILES_CDROM= "patent issues"
LIB_DEPENDS= mp3lame::audio/lame,no_x11
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-lame}
LIB_DEPENDS+= mp3lame::audio/lame,no_x11
CONFIGURE_ARGS+= --enable-lame
. else
CONFIGURE_ARGS+= --disable-lame
. endif
.endif
# mad
COMMENT-mad= "GStreamer plugin for decoding mp3 files using MAD"
PKGNAME-mad= gstreamer-mad-${VERSION}
PSEUDO_FLAVORS+= no_mad
.if !${FLAVOR:L:Mno_mad} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -mad
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-mad"
LIB_DEPENDS= id3tag::audio/libid3tag \
mad::audio/libmad
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-mad}
LIB_DEPENDS+= id3tag::audio/libid3tag \
mad::audio/libmad
CONFIGURE_ARGS+= --enable-mad
. else
CONFIGURE_ARGS+= --disable-mad
. endif
.endif
# mikmod
COMMENT-mikmod= "GStreamer plugin for using the Mikmod library"
PKGNAME-mikmod= gstreamer-mikmod-${VERSION}
PSEUDO_FLAVORS+= no_mikmod
.if !${FLAVOR:L:Mno_mikmod} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -mikmod
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-mikmod"
LIB_DEPENDS= mikmod::audio/libmikmod
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-mikmod}
LIB_DEPENDS+= mikmod::audio/libmikmod
CONFIGURE_ARGS+= --enable-mikmod
. else
CONFIGURE_ARGS+= --disable-mikmod
. endif
.endif
# mpeg2dec
COMMENT-mpeg2= "GStreamer plugin for playing and encoding MPEG video files"
PKGNAME-mpeg2= gstreamer-mpeg2-${VERSION}
PSEUDO_FLAVORS+= no_mpeg2
.if !${FLAVOR:L:Mno_mpeg2} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -mpeg2
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-mpeg2"
LIB_DEPENDS= mpeg2::graphics/libmpeg2
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-mpeg2}
LIB_DEPENDS+= mpeg2::graphics/libmpeg2
CONFIGURE_ARGS+= --enable-mpeg2dec
. else
CONFIGURE_ARGS+= --disable-mpeg2dec
. endif
.endif
# ogg
COMMENT-ogg= "GStreamer plugin for demuxing Ogg streams"
PKGNAME-ogg= gstreamer-ogg-${VERSION}
PSEUDO_FLAVORS+= no_ogg
.if !${FLAVOR:L:Mno_ogg} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -ogg
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-ogg"
LIB_DEPENDS= ogg::audio/libogg
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-ogg}
LIB_DEPENDS+= ogg::audio/libogg
CONFIGURE_ARGS+= --enable-ogg
. else
CONFIGURE_ARGS+= --disable-ogg
. endif
.endif
# sdlvideosink
COMMENT-sdl= "GStreamer plugin for using SDL to diplay video"
PKGNAME-sdl= gstreamer-sdl-${VERSION}
PSEUDO_FLAVORS+= no_sdl
.if !${FLAVOR:L:Mno_sdl} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -sdl
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-sdl"
LIB_DEPENDS= SDL::devel/sdl
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-sdl}
LIB_DEPENDS+= SDL::devel/sdl
CONFIGURE_ARGS+= --enable-sdl
. else
CONFIGURE_ARGS+= --disable-sdl
. endif
.endif
# vorbis
COMMENT-vorbis= "GStreamer plugin for Vorbis audio files"
PKGNAME-vorbis= gstreamer-vorbis-${VERSION}
PSEUDO_FLAVORS+= no_vorbis
.if !${FLAVOR:L:Mno_vorbis} && !${FLAVOR:L:Mno_nuthin}
MULTI_PACKAGES+= -vorbis
.endif
.if defined(PACKAGING)
. if ${SUBPACKAGE} == "-vorbis"
LIB_DEPENDS= vorbis,vorbisenc::audio/libvorbis
RUN_DEPENDS= ::devel/gstreamer-plugins
. endif
.else
. if ${MULTI_PACKAGES:M-vorbis}
LIB_DEPENDS+= vorbis,vorbisenc,vorbisfile::audio/libvorbis
CONFIGURE_ARGS+= --enable-vorbis
. else
CONFIGURE_ARGS+= --disable-vorbis
. endif
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (gst-plugins-0.8.6.tar.bz2) = e6b04215e7d928bd2fcce390ab406ffd
RMD160 (gst-plugins-0.8.6.tar.bz2) = 77376d1323d792436eb31680cc6085fccc7114ba
SHA1 (gst-plugins-0.8.6.tar.bz2) = e3514c61bcfc055ad112bef5d29725a364ed2409

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-configure,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- configure.orig Thu Nov 25 07:42:54 2004
+++ configure Mon Dec 6 21:47:32 2004
@@ -8296,7 +8296,7 @@ nto-qnx*)
openbsd*)
version_type=sunos
need_lib_prefix=no
- need_version=yes
+ need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
shlibpath_var=LD_LIBRARY_PATH
@@ -34518,7 +34518,7 @@ fi
echo "$as_me:$LINENO: result: $ac_cv_lib_Xv_pic_XvQueryExtension" >&5
echo "${ECHO_T}$ac_cv_lib_Xv_pic_XvQueryExtension" >&6
if test $ac_cv_lib_Xv_pic_XvQueryExtension = yes; then
- HAVE_XVIDEO="yes"
+ HAVE_XVIDEO="no" # break this test for now so we get the non-pic Xv
else
HAVE_XVIDEO="no"
fi

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-gconf_Makefile_in,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- gconf/Makefile.in.orig Thu Nov 25 07:43:38 2004
+++ gconf/Makefile.in Mon Dec 6 21:47:32 2004
@@ -807,13 +807,7 @@ gstreamer-@GST_MAJORMINOR@.schemas: gstr
cp gstreamer.schemas gstreamer-@GST_MAJORMINOR@.schemas
install-data-local:
- @GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) \
- --makefile-install-rule $(srcdir)/$(schema_DATA) || \
- (echo ;\
- echo "*****************************************************"; \
- echo "Installation of schemas failed, install them manually"; \
- echo "*****************************************************";)
- @true
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-gconf_gstreamer_schemas_in,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- gconf/gstreamer.schemas.in.orig Fri Jul 16 22:44:54 2004
+++ gconf/gstreamer.schemas.in Fri Jul 16 22:44:57 2004
@@ -5,7 +5,7 @@
<applyto>/system/gstreamer/@GST_MAJORMINOR@/default/audiosink</applyto>
<owner>gstreamer</owner>
<type>string</type>
- <default>osssink</default>
+ <default>sunaudiosink</default>
<locale name="C">
<short>default GStreamer audiosink</short>
<long>GStreamer can play audio using any number of output elements. Some possible choices are osssink, esdsink and alsasink. The audiosink can be a partial pipeline instead of just one element.</long>

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-gst_ffmpegcolorspace_avcodec_h,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- gst/ffmpegcolorspace/avcodec.h.orig Mon Dec 6 22:53:54 2004
+++ gst/ffmpegcolorspace/avcodec.h Mon Dec 6 22:55:45 2004
@@ -11,7 +11,6 @@
extern "C" {
#endif
-#include <stdint.h>
#include <sys/types.h> /* size_t */

View File

@ -0,0 +1,70 @@
$OpenBSD: patch-ltmain_sh,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- ltmain.sh.orig Sat Jun 5 06:33:39 2004
+++ ltmain.sh Mon Jul 12 23:07:36 2004
@@ -1857,9 +1857,12 @@ EOF
if test "$linkmode,$pass" = "prog,link"; then
compile_deplibs="$deplib $compile_deplibs"
finalize_deplibs="$deplib $finalize_deplibs"
- else
- deplibs="$deplib $deplibs"
+ continue
fi
+ if test "$linkmode" = "lib"; then
+ newdependency_libs="$deplib $newdependency_libs"
+ fi
+ deplibs="$deplib $deplibs"
continue
;;
-l*)
@@ -2274,10 +2277,6 @@ EOF
link_static=no # Whether the deplib will be linked statically
if test -n "$library_names" &&
{ test "$prefer_static_libs" = no || test -z "$old_library"; }; then
- if test "$installed" = no; then
- notinst_deplibs="$notinst_deplibs $lib"
- need_relink=yes
- fi
# This is a shared library
# Warn about portability, can't link against -module's on
@@ -5827,40 +5826,6 @@ relink_command=\"$relink_command\""
# Exit here if they wanted silent mode.
test "$show" = : && exit $EXIT_SUCCESS
- $echo "----------------------------------------------------------------------"
- $echo "Libraries have been installed in:"
- for libdir in $libdirs; do
- $echo " $libdir"
- done
- $echo
- $echo "If you ever happen to want to link against installed libraries"
- $echo "in a given directory, LIBDIR, you must either use libtool, and"
- $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
- $echo "flag during linking and do at least one of the following:"
- if test -n "$shlibpath_var"; then
- $echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
- $echo " during execution"
- fi
- if test -n "$runpath_var"; then
- $echo " - add LIBDIR to the \`$runpath_var' environment variable"
- $echo " during linking"
- fi
- if test -n "$hardcode_libdir_flag_spec"; then
- libdir=LIBDIR
- eval flag=\"$hardcode_libdir_flag_spec\"
-
- $echo " - use the \`$flag' linker flag"
- fi
- if test -n "$admincmds"; then
- $echo " - have your system administrator run these commands:$admincmds"
- fi
- if test -f /etc/ld.so.conf; then
- $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
- fi
- $echo
- $echo "See any operating system documentation about shared libraries for"
- $echo "more information, such as the ld(1) and ld.so(8) manual pages."
- $echo "----------------------------------------------------------------------"
exit $EXIT_SUCCESS
;;

View File

@ -0,0 +1,20 @@
$OpenBSD: patch-sys_cdrom_gstcdplayer_ioctl_bsd_h,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- sys/cdrom/gstcdplayer_ioctl_bsd.h.orig 2004-03-15 11:25:26.000000000 -0800
+++ sys/cdrom/gstcdplayer_ioctl_bsd.h 2004-04-05 22:28:22.000000000 -0700
@@ -224,6 +224,7 @@ gboolean cd_start(struct cd *cd,gint sta
return FALSE;
}
+ return TRUE;
}
gboolean cd_pause(struct cd *cd)
@@ -321,7 +322,7 @@ gint cd_current_track(struct cd *cd)
return -1;
}
-#ifdef __NetBSD__
+#if defined(__NetBSD__) || defined(__OpenBSD__)
return sub_channel.data->what.track_info.track_number;
#else
return sub_channel.data->track_number;

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-sys_oss_Makefile_in,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- sys/oss/Makefile.in.orig Thu Nov 25 07:44:49 2004
+++ sys/oss/Makefile.in Mon Dec 6 21:47:33 2004
@@ -348,7 +348,7 @@ LIBPNG_CFLAGS = @LIBPNG_CFLAGS@
LIBPNG_LIBS = @LIBPNG_LIBS@
LIBRFB_CFLAGS = @LIBRFB_CFLAGS@
LIBRFB_LIBS = @LIBRFB_LIBS@
-LIBS = @LIBS@
+LIBS = @LIBS@ -lossaudio
LIBTOOL = @LIBTOOL@
LIBVISUAL_CFLAGS = @LIBVISUAL_CFLAGS@
LIBVISUAL_LIBS = @LIBVISUAL_LIBS@

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-sys_oss_gstosselement_c,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- sys/oss/gstosselement.c.orig Tue Jun 22 04:35:13 2004
+++ sys/oss/gstosselement.c Tue Jul 13 20:53:32 2004
@@ -262,7 +262,7 @@ gst_osselement_class_probe_devices (GstO
if (!init && !check) {
#define MIXER 0
#define DSP 1
- gchar *dev_base[][2] = { {"/dev/mixer", "/dev/dsp"}
+ gchar *dev_base[][2] = { {"/dev/mixer", "/dev/sound"}
,
{"/dev/sound/mixer", "/dev/sound/dsp"}
,
@@ -423,7 +423,7 @@ gst_ossprobe_interface_init (GstProperty
static void
gst_osselement_init (GstOssElement * oss)
{
- oss->device = g_strdup ("/dev/dsp");
+ oss->device = g_strdup ("/dev/sound");
oss->mixer_dev = g_strdup ("/dev/mixer");
oss->fd = -1;
oss->mixer_fd = -1;

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-sys_oss_oss_probe_c,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- sys/oss/oss_probe.c.orig Tue Jun 22 04:35:13 2004
+++ sys/oss/oss_probe.c Tue Jul 13 20:53:32 2004
@@ -55,9 +55,9 @@ main (int argc, char *argv[])
int i;
Probe *probe;
- fd = open ("/dev/dsp", O_RDWR);
+ fd = open ("/dev/sound", O_RDWR);
if (fd < 0) {
- perror ("/dev/dsp");
+ perror ("/dev/sound");
exit (1);
}

View File

@ -0,0 +1,57 @@
$OpenBSD: patch-sys_sunaudio_gstsunaudio_c,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- sys/sunaudio/gstsunaudio.c.orig Tue Oct 26 17:08:45 2004
+++ sys/sunaudio/gstsunaudio.c Mon Dec 6 21:47:33 2004
@@ -28,7 +28,10 @@
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>
+#include <sys/types.h>
+#include <sys/ioctl.h>
#include <sys/audioio.h>
+#include <string.h>
#include "gstsunelement.h"
#include "gstsunmixer.h"
@@ -183,8 +186,8 @@ gst_sunaudiosink_class_init (GstSunAudio
gstelement_class->change_state = gst_sunaudiosink_change_state;
g_object_class_install_property (gobject_class, ARG_DEVICE,
- g_param_spec_string ("device", "Device", "Audio Device (/dev/audio)",
- "/dev/audio", G_PARAM_READWRITE));
+ g_param_spec_string ("device", "Device", "Audio Device (/dev/sound)",
+ "/dev/sound", G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, ARG_BUFFER_SIZE,
g_param_spec_int ("buffer_size", "Buffer Size", "Buffer Size",
1, G_MAXINT, 64, G_PARAM_READWRITE));
@@ -209,7 +212,7 @@ gst_sunaudiosink_init (GstSunAudioSink *
audiodev = g_getenv ("AUDIODEV");
if (audiodev == NULL)
- audiodev = "/dev/audio";
+ audiodev = "/dev/sound";
sunaudiosink->device = g_strdup (audiodev);
}
@@ -295,10 +298,9 @@ gst_sunaudiosink_setparams (GstSunAudioS
ainfo.play.sample_rate = sunaudiosink->rate;
ainfo.play.channels = sunaudiosink->channels;
ainfo.play.precision = sunaudiosink->width;
- ainfo.play.encoding = AUDIO_ENCODING_LINEAR;
+ ainfo.play.encoding = AUDIO_ENCODING_SLINEAR;
ainfo.play.port = ports;
ainfo.play.buffer_size = sunaudiosink->buffer_size;
- ainfo.output_muted = 0;
ret = ioctl (sunaudiosink->fd, AUDIO_SETINFO, &ainfo);
if (ret == -1) {
@@ -342,10 +344,6 @@ gst_sunaudiosink_open (GstSunAudioSink *
}
GST_INFO ("monitor_gain %d", sunaudiosink->info.monitor_gain);
- GST_INFO ("output_muted %d", sunaudiosink->info.output_muted);
- GST_INFO ("hw_features %08x", sunaudiosink->info.hw_features);
- GST_INFO ("sw_features %08x", sunaudiosink->info.sw_features);
- GST_INFO ("sw_features_enabled %08x", sunaudiosink->info.sw_features_enabled);
return TRUE;
}

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-sys_sunaudio_gstsunaudiosrc_c,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- sys/sunaudio/gstsunaudiosrc.c.orig Sun Sep 12 22:57:24 2004
+++ sys/sunaudio/gstsunaudiosrc.c Sun Sep 12 22:57:53 2004
@@ -28,6 +28,7 @@
#include <unistd.h>
#include <string.h>
#include <sys/audioio.h>
+#include <sys/ioctl.h>
#include <gstsunaudiosrc.h>
#include <gstsunelement.h>

View File

@ -0,0 +1,16 @@
$OpenBSD: patch-sys_sunaudio_gstsunmixer_c,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
--- sys/sunaudio/gstsunmixer.c.orig Fri Oct 1 04:44:22 2004
+++ sys/sunaudio/gstsunmixer.c Mon Oct 11 16:59:31 2004
@@ -279,12 +279,6 @@ gst_sunaudiomixer_set_mute (GstMixer * m
AUDIO_INITINFO (&audioinfo);
- if (mute) {
- audioinfo.output_muted = 1;
- } else {
- audioinfo.output_muted = 0;
- }
-
if (ioctl (sunaudio->mixer_fd, AUDIO_SETINFO, &audioinfo) < 0) {
g_warning ("Error setting volume device");
return;

View File

@ -0,0 +1,4 @@
Plugin support and plugins for the GStreamer streaming-media framework.
This package provides a basic set of plugins to use with
GStreamer-based applications.

View File

@ -0,0 +1 @@
An AC-3 or A/52 decoding plugin for the GStreamer streaming-media framework.

View File

@ -0,0 +1,2 @@
A plugin for the GStreamer streaming-media framework that utilizes the
Audio File Library.

View File

@ -0,0 +1,2 @@
A plugin for the GStreamer streaming-media framework that utilizes
cdparanoia to read CDDA CDs.

View File

@ -0,0 +1 @@
A plugin for the GStreamer streaming-media framework for reading DVDs.

View File

@ -0,0 +1 @@
An esd plugin for GStreamer Streaming-media framework.

View File

@ -0,0 +1,2 @@
A FLAC plugin for the GStreamer Streaming-media framework. FLAC stands for
Free Lossless Audio Codec

View File

@ -0,0 +1 @@
Gnome VFS plugis for GStreamer Streaming-media framework.

View File

@ -0,0 +1 @@
A JPEG plugin for the GStreamer Streaming-media framework.

View File

@ -0,0 +1,2 @@
A MP3 encoding plugin for the GStreamer Streaming-media framework using
LAME. Please note that there are certain patent issues with this plugin.

View File

@ -0,0 +1,2 @@
A MP3 decoding plugin for the GStreamer Streaming-media framework using
the MAD MPEG audio decoder

View File

@ -0,0 +1,2 @@
A plugin for the GStreamer Streaming-media framework that uses the
MikMod sound library.

View File

@ -0,0 +1,2 @@
A plugin for the GStreamer Streaming-media framework for decoding
mpeg-2 and mpeg-1 video streams.

View File

@ -0,0 +1 @@
An ogg demuxer plugin for the GStreamer Streaming-media framework.

View File

@ -0,0 +1,2 @@
A SDL video plugin for the GStreamer Streaming-media framework. SDL
stands for Simple DirectMedia Layer.

View File

@ -0,0 +1 @@
A Vorbis audio plugin for GStreamer Streaming-media framework.

View File

@ -0,0 +1,102 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstac3parse.so
lib/gstreamer-0.8/libgstadder.so
lib/gstreamer-0.8/libgstalaw.so
lib/gstreamer-0.8/libgstalpha.so
lib/gstreamer-0.8/libgstalphacolor.so
lib/gstreamer-0.8/libgstasf.so
lib/gstreamer-0.8/libgstaudio.so
lib/gstreamer-0.8/libgstaudioconvert.so
lib/gstreamer-0.8/libgstaudiofilter.so
lib/gstreamer-0.8/libgstaudiorate.so
lib/gstreamer-0.8/libgstaudioscale.so
lib/gstreamer-0.8/libgstauparse.so
lib/gstreamer-0.8/libgstavi.so
lib/gstreamer-0.8/libgstcdplayer.so
lib/gstreamer-0.8/libgstcdxaparse.so
lib/gstreamer-0.8/libgstchart.so
lib/gstreamer-0.8/libgstcolorspace.so
lib/gstreamer-0.8/libgstcutter.so
lib/gstreamer-0.8/libgstdebug.so
lib/gstreamer-0.8/libgstdecodebin.so
lib/gstreamer-0.8/libgstdeinterlace.so
lib/gstreamer-0.8/libgstefence.so
lib/gstreamer-0.8/libgsteffectv.so
lib/gstreamer-0.8/libgstequalizer.so
lib/gstreamer-0.8/libgstfestival.so
lib/gstreamer-0.8/libgstffmpegcolorspace.so
lib/gstreamer-0.8/libgstfilter.so
lib/gstreamer-0.8/libgstflxdec.so
lib/gstreamer-0.8/libgstgamma.so
lib/gstreamer-0.8/libgstgdkpixbuf.so
lib/gstreamer-0.8/libgstglimagesink.so
lib/gstreamer-0.8/libgstgoom.so
lib/gstreamer-0.8/libgstidct.so
lib/gstreamer-0.8/libgstinterleave.so
lib/gstreamer-0.8/libgstlevel.so
lib/gstreamer-0.8/libgstmatroska.so
lib/gstreamer-0.8/libgstmedian.so
lib/gstreamer-0.8/libgstmixmatrix.so
lib/gstreamer-0.8/libgstmonoscope.so
lib/gstreamer-0.8/libgstmp1videoparse.so
lib/gstreamer-0.8/libgstmpeg1systemencode.so
lib/gstreamer-0.8/libgstmpeg2subt.so
lib/gstreamer-0.8/libgstmpegaudio.so
lib/gstreamer-0.8/libgstmpegaudioparse.so
lib/gstreamer-0.8/libgstmpegstream.so
lib/gstreamer-0.8/libgstmulaw.so
lib/gstreamer-0.8/libgstmultifilesink.so
lib/gstreamer-0.8/libgstmultipart.so
lib/gstreamer-0.8/libgstnavigationtest.so
lib/gstreamer-0.8/libgstossaudio.so
lib/gstreamer-0.8/libgstoverlay.so
lib/gstreamer-0.8/libgstpassthrough.so
lib/gstreamer-0.8/libgstplaybin.so
lib/gstreamer-0.8/libgstplayondemand.so
lib/gstreamer-0.8/libgstqtdemux.so
lib/gstreamer-0.8/libgstresample.so
lib/gstreamer-0.8/libgstriff.so
lib/gstreamer-0.8/libgstrmdemux.so
lib/gstreamer-0.8/libgstrtjpeg.so
lib/gstreamer-0.8/libgstrtp.so
lib/gstreamer-0.8/libgstsilence.so
lib/gstreamer-0.8/libgstsinesrc.so
lib/gstreamer-0.8/libgstsmooth.so
lib/gstreamer-0.8/libgstsmoothwave.so
lib/gstreamer-0.8/libgstsmpte.so
lib/gstreamer-0.8/libgstspectrum.so
lib/gstreamer-0.8/libgstspeed.so
lib/gstreamer-0.8/libgststereo.so
lib/gstreamer-0.8/libgstsunaudio.so
lib/gstreamer-0.8/libgstswitch.so
lib/gstreamer-0.8/libgstsynaesthesia.so
lib/gstreamer-0.8/libgsttagedit.so
lib/gstreamer-0.8/libgsttcp.so
lib/gstreamer-0.8/libgsttextoverlay.so
lib/gstreamer-0.8/libgsttimeoverlay.so
lib/gstreamer-0.8/libgsttypefindfunctions.so
lib/gstreamer-0.8/libgstudp.so
lib/gstreamer-0.8/libgstvbidec.so
lib/gstreamer-0.8/libgstvideo.so
lib/gstreamer-0.8/libgstvideobalance.so
lib/gstreamer-0.8/libgstvideobox.so
lib/gstreamer-0.8/libgstvideocrop.so
lib/gstreamer-0.8/libgstvideodrop.so
lib/gstreamer-0.8/libgstvideofilter.so
lib/gstreamer-0.8/libgstvideoflip.so
lib/gstreamer-0.8/libgstvideomixer.so
lib/gstreamer-0.8/libgstvideorate.so
lib/gstreamer-0.8/libgstvideoscale.so
lib/gstreamer-0.8/libgstvideotestsrc.so
lib/gstreamer-0.8/libgstvolenv.so
lib/gstreamer-0.8/libgstvolume.so
lib/gstreamer-0.8/libgstwavenc.so
lib/gstreamer-0.8/libgstwavparse.so
lib/gstreamer-0.8/libgstximagesink.so
lib/gstreamer-0.8/libgstxvimagesink.so
lib/gstreamer-0.8/libgstxwindowlistener.so
lib/gstreamer-0.8/libgsty4menc.so
@lib lib/libgstgconf-0.8.so.1.0
@lib lib/libgstinterfaces-0.8.so.1.0
@lib lib/libgstmedia-info-0.8.so.1.0
@lib lib/libgstplay-0.8.so.1.0

View File

@ -0,0 +1,213 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
bin/gst-launch-ext-0.8
bin/gst-visualise-0.8
include/gstreamer-0.8/
include/gstreamer-0.8/gst/
include/gstreamer-0.8/gst/audio/
include/gstreamer-0.8/gst/audio/audio.h
include/gstreamer-0.8/gst/audio/audioclock.h
include/gstreamer-0.8/gst/audio/gstaudiofilter.h
include/gstreamer-0.8/gst/colorbalance/
include/gstreamer-0.8/gst/colorbalance/colorbalance-enumtypes.h
include/gstreamer-0.8/gst/colorbalance/colorbalance.h
include/gstreamer-0.8/gst/colorbalance/colorbalancechannel.h
include/gstreamer-0.8/gst/floatcast/
include/gstreamer-0.8/gst/floatcast/floatcast.h
include/gstreamer-0.8/gst/gconf/
include/gstreamer-0.8/gst/gconf/gconf.h
include/gstreamer-0.8/gst/idct/
include/gstreamer-0.8/gst/idct/idct.h
include/gstreamer-0.8/gst/media-info/
include/gstreamer-0.8/gst/media-info/media-info.h
include/gstreamer-0.8/gst/mixer/
include/gstreamer-0.8/gst/mixer/mixer-enumtypes.h
include/gstreamer-0.8/gst/mixer/mixer.h
include/gstreamer-0.8/gst/mixer/mixeroptions.h
include/gstreamer-0.8/gst/mixer/mixertrack.h
include/gstreamer-0.8/gst/navigation/
include/gstreamer-0.8/gst/navigation/navigation.h
include/gstreamer-0.8/gst/play/
include/gstreamer-0.8/gst/play/play-enumtypes.h
include/gstreamer-0.8/gst/play/play.h
include/gstreamer-0.8/gst/propertyprobe/
include/gstreamer-0.8/gst/propertyprobe/propertyprobe.h
include/gstreamer-0.8/gst/resample/
include/gstreamer-0.8/gst/resample/resample.h
include/gstreamer-0.8/gst/riff/
include/gstreamer-0.8/gst/riff/riff-ids.h
include/gstreamer-0.8/gst/riff/riff-media.h
include/gstreamer-0.8/gst/riff/riff-read.h
include/gstreamer-0.8/gst/tag/
include/gstreamer-0.8/gst/tag/tag.h
include/gstreamer-0.8/gst/tuner/
include/gstreamer-0.8/gst/tuner/tuner-enumtypes.h
include/gstreamer-0.8/gst/tuner/tuner.h
include/gstreamer-0.8/gst/tuner/tunerchannel.h
include/gstreamer-0.8/gst/tuner/tunernorm.h
include/gstreamer-0.8/gst/video/
include/gstreamer-0.8/gst/video/video.h
include/gstreamer-0.8/gst/video/videosink.h
include/gstreamer-0.8/gst/xoverlay/
include/gstreamer-0.8/gst/xoverlay/xoverlay.h
include/gstreamer-0.8/gst/xwindowlistener/
include/gstreamer-0.8/gst/xwindowlistener/xwindowlistener.h
lib/gstreamer-0.8/
lib/gstreamer-0.8/libgstac3parse.la
lib/gstreamer-0.8/libgstadder.la
lib/gstreamer-0.8/libgstalaw.la
lib/gstreamer-0.8/libgstalpha.la
lib/gstreamer-0.8/libgstalphacolor.la
lib/gstreamer-0.8/libgstasf.la
lib/gstreamer-0.8/libgstaudio.la
lib/gstreamer-0.8/libgstaudioconvert.la
lib/gstreamer-0.8/libgstaudiofilter.la
lib/gstreamer-0.8/libgstaudiorate.la
lib/gstreamer-0.8/libgstaudioscale.la
lib/gstreamer-0.8/libgstauparse.la
lib/gstreamer-0.8/libgstavi.la
lib/gstreamer-0.8/libgstcdplayer.la
lib/gstreamer-0.8/libgstcdxaparse.la
lib/gstreamer-0.8/libgstchart.la
lib/gstreamer-0.8/libgstcolorspace.la
lib/gstreamer-0.8/libgstcutter.la
lib/gstreamer-0.8/libgstdebug.la
lib/gstreamer-0.8/libgstdecodebin.la
lib/gstreamer-0.8/libgstdeinterlace.la
lib/gstreamer-0.8/libgstefence.la
lib/gstreamer-0.8/libgsteffectv.la
lib/gstreamer-0.8/libgstequalizer.la
lib/gstreamer-0.8/libgstfestival.la
lib/gstreamer-0.8/libgstffmpegcolorspace.la
lib/gstreamer-0.8/libgstfilter.la
lib/gstreamer-0.8/libgstflxdec.la
lib/gstreamer-0.8/libgstgamma.la
lib/gstreamer-0.8/libgstgdkpixbuf.la
lib/gstreamer-0.8/libgstglimagesink.la
lib/gstreamer-0.8/libgstgoom.la
lib/gstreamer-0.8/libgstidct.la
lib/gstreamer-0.8/libgstinterleave.la
lib/gstreamer-0.8/libgstlevel.la
lib/gstreamer-0.8/libgstmatroska.la
lib/gstreamer-0.8/libgstmedian.la
lib/gstreamer-0.8/libgstmixmatrix.la
lib/gstreamer-0.8/libgstmodplug.a
lib/gstreamer-0.8/libgstmodplug.la
lib/gstreamer-0.8/libgstmonoscope.la
lib/gstreamer-0.8/libgstmp1videoparse.la
lib/gstreamer-0.8/libgstmpeg1systemencode.la
lib/gstreamer-0.8/libgstmpeg2subt.la
lib/gstreamer-0.8/libgstmpegaudio.la
lib/gstreamer-0.8/libgstmpegaudioparse.la
lib/gstreamer-0.8/libgstmpegstream.la
lib/gstreamer-0.8/libgstmulaw.la
lib/gstreamer-0.8/libgstmultifilesink.la
lib/gstreamer-0.8/libgstmultipart.la
lib/gstreamer-0.8/libgstnavigationtest.la
lib/gstreamer-0.8/libgstossaudio.la
lib/gstreamer-0.8/libgstoverlay.la
lib/gstreamer-0.8/libgstpassthrough.la
lib/gstreamer-0.8/libgstplaybin.la
lib/gstreamer-0.8/libgstplayondemand.la
lib/gstreamer-0.8/libgstqtdemux.la
lib/gstreamer-0.8/libgstresample.la
lib/gstreamer-0.8/libgstriff.la
lib/gstreamer-0.8/libgstrmdemux.la
lib/gstreamer-0.8/libgstrtjpeg.la
lib/gstreamer-0.8/libgstrtp.la
lib/gstreamer-0.8/libgstsilence.la
lib/gstreamer-0.8/libgstsinesrc.la
lib/gstreamer-0.8/libgstsmooth.la
lib/gstreamer-0.8/libgstsmoothwave.la
lib/gstreamer-0.8/libgstsmpte.la
lib/gstreamer-0.8/libgstspectrum.la
lib/gstreamer-0.8/libgstspeed.la
lib/gstreamer-0.8/libgststereo.la
lib/gstreamer-0.8/libgstsunaudio.la
lib/gstreamer-0.8/libgstswitch.la
lib/gstreamer-0.8/libgstsynaesthesia.la
lib/gstreamer-0.8/libgsttagedit.la
lib/gstreamer-0.8/libgsttcp.la
lib/gstreamer-0.8/libgsttextoverlay.la
lib/gstreamer-0.8/libgsttimeoverlay.la
lib/gstreamer-0.8/libgsttypefindfunctions.la
lib/gstreamer-0.8/libgstudp.la
lib/gstreamer-0.8/libgstvbidec.la
lib/gstreamer-0.8/libgstvideo.la
lib/gstreamer-0.8/libgstvideobalance.la
lib/gstreamer-0.8/libgstvideobox.la
lib/gstreamer-0.8/libgstvideocrop.la
lib/gstreamer-0.8/libgstvideodrop.la
lib/gstreamer-0.8/libgstvideofilter.la
lib/gstreamer-0.8/libgstvideoflip.la
lib/gstreamer-0.8/libgstvideomixer.la
lib/gstreamer-0.8/libgstvideorate.la
lib/gstreamer-0.8/libgstvideoscale.la
lib/gstreamer-0.8/libgstvideotestsrc.la
lib/gstreamer-0.8/libgstvolenv.la
lib/gstreamer-0.8/libgstvolume.la
lib/gstreamer-0.8/libgstwavenc.la
lib/gstreamer-0.8/libgstwavparse.la
lib/gstreamer-0.8/libgstximagesink.la
lib/gstreamer-0.8/libgstxvimagesink.la
lib/gstreamer-0.8/libgstxwindowlistener.la
lib/gstreamer-0.8/libgsty4menc.la
lib/libgstgconf-0.8.la
lib/libgstinterfaces-0.8.la
lib/libgstmedia-info-0.8.la
lib/libgstplay-0.8.la
lib/pkgconfig/
lib/pkgconfig/gstreamer-gconf-0.8.pc
lib/pkgconfig/gstreamer-interfaces-0.8.pc
lib/pkgconfig/gstreamer-libs-0.8.pc
lib/pkgconfig/gstreamer-media-info-0.8.pc
lib/pkgconfig/gstreamer-play-0.8.pc
lib/pkgconfig/gstreamer-plugins-0.8.pc
@man man/man1/gst-launch-ext-0.8.1
@man man/man1/gst-visualise-0.8.1
share/locale/
share/locale/af/
share/locale/af/LC_MESSAGES/
share/locale/af/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/az/
share/locale/az/LC_MESSAGES/
share/locale/az/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/cs/
share/locale/cs/LC_MESSAGES/
share/locale/cs/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/en_GB/
share/locale/en_GB/LC_MESSAGES/
share/locale/en_GB/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/hu/
share/locale/hu/LC_MESSAGES/
share/locale/hu/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/it/
share/locale/it/LC_MESSAGES/
share/locale/it/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/nb/
share/locale/nb/LC_MESSAGES/
share/locale/nb/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/nl/
share/locale/nl/LC_MESSAGES/
share/locale/nl/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/or/
share/locale/or/LC_MESSAGES/
share/locale/or/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/sq/
share/locale/sq/LC_MESSAGES/
share/locale/sq/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/sr/
share/locale/sr/LC_MESSAGES/
share/locale/sr/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/sv/
share/locale/sv/LC_MESSAGES/
share/locale/sv/LC_MESSAGES/gst-plugins-0.8.mo
share/locale/uk/
share/locale/uk/LC_MESSAGES/
share/locale/uk/LC_MESSAGES/gst-plugins-0.8.mo
share/schemas/
share/schemas/gst-plugins/
share/schemas/gst-plugins/gstreamer-0.8.schemas
@exec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-install-rule %D/share/schemas/gst-plugins/*.schemas > /dev/null
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1
%%SHARED%%

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-a52,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgsta52dec.la
lib/gstreamer-0.8/libgsta52dec.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-audiofile,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstaudiofile.la
lib/gstreamer-0.8/libgstaudiofile.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-cdda,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstcdparanoia.la
lib/gstreamer-0.8/libgstcdparanoia.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-dvdread,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstdvdreadsrc.la
lib/gstreamer-0.8/libgstdvdreadsrc.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-esd,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstesd.la
lib/gstreamer-0.8/libgstesd.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-flac,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstflac.la
lib/gstreamer-0.8/libgstflac.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-gnome,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstgnomevfs.la
lib/gstreamer-0.8/libgstgnomevfs.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-jpeg,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstjpeg.la
lib/gstreamer-0.8/libgstjpeg.so
@exec %D/bin/gst-register
@unexec %D/bin/gst-register

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-lame,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstlame.la
lib/gstreamer-0.8/libgstlame.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-mad,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstmad.la
lib/gstreamer-0.8/libgstmad.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-mikmod,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstmikmod.la
lib/gstreamer-0.8/libgstmikmod.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-mpeg2,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstmpeg2dec.la
lib/gstreamer-0.8/libgstmpeg2dec.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-ogg,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstogg.la
lib/gstreamer-0.8/libgstogg.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-sdl,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstsdlvideosink.la
lib/gstreamer-0.8/libgstsdlvideosink.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PLIST-vorbis,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
lib/gstreamer-0.8/libgstvorbis.la
lib/gstreamer-0.8/libgstvorbis.so
@exec %D/bin/gst-register > /dev/null 2>&1
@unexec %D/bin/gst-register > /dev/null 2>&1