0.8.6 -> 0.8.8. Seemingly minor update, but major port rewrite to
handle plugins a little better. (re)Added speex support too.
This commit is contained in:
parent
92139013e9
commit
026110581f
@ -1,23 +1,30 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2005/02/08 00:59:27 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2005/05/24 21:33:33 marcm Exp $
|
||||
|
||||
COMMENT= "GStreamer Streaming-media framework plug-ins."
|
||||
|
||||
VERSION= 0.8.6
|
||||
VERSION= 0.8.8
|
||||
PATCHLEVEL=
|
||||
DISTNAME= gst-plugins-${VERSION}
|
||||
PKGNAME= gstreamer-plugins-${VERSION}p0
|
||||
PKGNAME= gstreamer-plugins-${VERSION}${PATCHLEVEL}
|
||||
CATEGORIES= devel
|
||||
|
||||
HOMEPAGE= http://www.gstreamer.net/
|
||||
|
||||
MAINTAINER= Marc Matteo <marcm@openbsd.org>
|
||||
|
||||
HOMEPAGE= http://www.gstreamer.net/
|
||||
|
||||
# GPL
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
WANTLIB= xml2 z m gthread-2.0.0.0 gmodule-2.0.0.0 glib-2.0.0.0 \
|
||||
gobject-2.0.0.0
|
||||
WANTLIB= GL GLU ICE SM X11 Xext Xft Xrender Xv \
|
||||
fontconfig freetype m ossaudio xml2 z \
|
||||
glib-2.0.0.0 gmodule-2.0.0.0 gthread-2.0.0.0 \
|
||||
gobject-2.0.0.0 atk-1.0.0.0 \
|
||||
pango-1.0.0.0 pangoft2-1.0.0.0 pangox-1.0.0.0 \
|
||||
pangoxft-1.0.0.0 popt ORBit-2\
|
||||
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/}
|
||||
@ -26,23 +33,16 @@ EXTRACT_SUFX= .tar.bz2
|
||||
MODULES= devel/gettext
|
||||
|
||||
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
|
||||
LIB_DEPENDS= gstcontrol-0.8.5.0,gstreamer-0.8.5.0::devel/gstreamer
|
||||
LIB_DEPENDS= gconf-2::devel/gconf2 \
|
||||
gstcontrol-0.8.5.0,gstreamer-0.8.5.0::devel/gstreamer
|
||||
|
||||
USE_GMAKE= Yes
|
||||
USE_LIBTOOL= 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-mpeg2enc
|
||||
CONFIGURE_ARGS+= --disable-mplex
|
||||
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
|
||||
# Disable plugins might try to build that we shouldn't
|
||||
#CONFIGURE_ARGS+= --disable-mpeg2enc
|
||||
CONFIGURE_ARGS+= --disable-tests
|
||||
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
@ -51,38 +51,30 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
|
||||
# Flavor/Plugin setup below this point...
|
||||
# "You're off the edge of the map, mate. Here there be monsters"
|
||||
PSEUDO_FLAVORS= no_nuthin
|
||||
PSEUDO_FLAVORS= minimal
|
||||
FLAVOR?=
|
||||
MULTI_PACKAGES=
|
||||
SUBPACKAGE?=
|
||||
|
||||
.if empty(SUBPACKAGE)
|
||||
WANTLIB+= GL GLU ICE SM X11 Xcursor Xext Xft Xinerama Xrender Xv \
|
||||
fontconfig freetype m ossaudio glib-2.0.0.0 \gmodule-2.0.0.0 \
|
||||
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 atk-1.0.0.0
|
||||
.endif
|
||||
.if empty(SUBPACKAGE) || ${SUBPACKAGE} == "-gnome"
|
||||
LIB_DEPENDS+= gconf-2::devel/gconf2
|
||||
WANTLIB+= ORBit-2
|
||||
.endif
|
||||
PL_WANTLIB= glib-2.0.0.0 gmodule-2.0.0.0 gobject-2.0.0.0 \
|
||||
gthread-2.0.0.0 popt m xml2 z
|
||||
|
||||
# a52dec
|
||||
COMMENT-a52= "GStreamer plugin for decoding A/52 audio streams"
|
||||
PKGNAME-a52= gstreamer-a52-${VERSION}p0
|
||||
PKGNAME-a52= gstreamer-a52-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_a52
|
||||
# a52 doesn't build properly on sparc64
|
||||
.if !${FLAVOR:L:Mno_a52} && !${FLAVOR:L:Mno_nuthin} && ${MACHINE_ARCH} != "sparc64"
|
||||
.if !${FLAVOR:L:Mno_a52} && !${FLAVOR:L:Mminimal} && ${MACHINE_ARCH} != "sparc64"
|
||||
MULTI_PACKAGES+= -a52
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-a52"
|
||||
LIB_DEPENDS+= a52::audio/liba52
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
a52::audio/liba52
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-a52}
|
||||
LIB_DEPENDS+= a52::audio/liba52
|
||||
BUILD_DEPENDS+= ::audio/liba52
|
||||
CONFIGURE_ARGS+= --enable-a52dec
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-a52dec
|
||||
@ -91,19 +83,20 @@ CONFIGURE_ARGS+= --disable-a52dec
|
||||
|
||||
# audiofile
|
||||
COMMENT-audiofile= "GStreamer plugin for using the Audiofile library"
|
||||
PKGNAME-audiofile= gstreamer-audiofile-${VERSION}p0
|
||||
PKGNAME-audiofile= gstreamer-audiofile-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_audiofile
|
||||
.if !${FLAVOR:L:Mno_audiofile} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_audiofile} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -audiofile
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-audiofile"
|
||||
LIB_DEPENDS+= audiofile::devel/libaudiofile
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
audiofile::devel/libaudiofile
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-audiofile}
|
||||
LIB_DEPENDS+= audiofile::devel/libaudiofile
|
||||
BUILD_DEPENDS+= ::devel/libaudiofile
|
||||
CONFIGURE_ARGS+= --enable-audiofile
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-audiofile
|
||||
@ -112,19 +105,20 @@ CONFIGURE_ARGS+= --disable-audiofile
|
||||
|
||||
# cdparanoia (cdda)
|
||||
COMMENT-cdda= "GStreamer plugin for reading audio from CDs"
|
||||
PKGNAME-cdda= gstreamer-cdda-${VERSION}p0
|
||||
PKGNAME-cdda= gstreamer-cdda-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_cdda
|
||||
.if !${FLAVOR:L:Mno_cdda} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_cdda} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -cdda
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-cdda"
|
||||
LIB_DEPENDS+= cdda_interface,cdda_paranoia::audio/cdparanoia
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
cdda_interface,cdda_paranoia::audio/cdparanoia
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-cdda}
|
||||
LIB_DEPENDS+= cdda_interface,cdda_paranoia::audio/cdparanoia
|
||||
BUILD_DEPENDS+= ::audio/cdparanoia
|
||||
CONFIGURE_ARGS+= --enable-cdparanoia
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-cdparanoia
|
||||
@ -133,19 +127,20 @@ CONFIGURE_ARGS+= --disable-cdparanoia
|
||||
|
||||
# dvdreadsrc
|
||||
COMMENT-dvdread= "GStreamer plugin for DVD playback"
|
||||
PKGNAME-dvdread= gstreamer-dvdread-${VERSION}p0
|
||||
PKGNAME-dvdread= gstreamer-dvdread-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_dvdread
|
||||
.if !${FLAVOR:L:Mno_dvdread} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_dvdread} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -dvdread
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-dvdread"
|
||||
LIB_DEPENDS+= dvdread::devel/libdvdread
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
dvdread::devel/libdvdread
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-dvdread}
|
||||
LIB_DEPENDS+= dvdread::devel/libdvdread
|
||||
BUILD_DEPENDS+= ::devel/libdvdread
|
||||
CONFIGURE_ARGS+= --enable-dvdread
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-dvdread
|
||||
@ -154,20 +149,20 @@ CONFIGURE_ARGS+= --disable-dvdread
|
||||
|
||||
# esd
|
||||
COMMENT-esd= "GStreamer plugin for outputting to esd"
|
||||
PKGNAME-esd= gstreamer-esd-${VERSION}p0
|
||||
PKGNAME-esd= gstreamer-esd-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_esd
|
||||
.if !${FLAVOR:L:Mno_esd} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_esd} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -esd
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-esd"
|
||||
WANTLIB+= audiofile
|
||||
LIB_DEPENDS+= esd.2::audio/esound
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB} audiofile
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
esd.2::audio/esound
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-esd}
|
||||
LIB_DEPENDS+= esd.2::audio/esound
|
||||
BUILD_DEPENDS+= ::audio/esound
|
||||
CONFIGURE_ARGS+= --enable-esd
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-esd
|
||||
@ -176,19 +171,20 @@ CONFIGURE_ARGS+= --disable-esd
|
||||
|
||||
# flac
|
||||
COMMENT-flac= "GStreamer plugin for encoding/decoding FLAC files"
|
||||
PKGNAME-flac= gstreamer-flac-${VERSION}p0
|
||||
PKGNAME-flac= gstreamer-flac-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_flac
|
||||
.if !${FLAVOR:L:Mno_flac} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_flac} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -flac
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-flac"
|
||||
LIB_DEPENDS+= FLAC::audio/flac
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
FLAC::audio/flac
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-flac}
|
||||
LIB_DEPENDS+= FLAC::audio/flac
|
||||
BUILD_DEPENDS+= ::audio/flac
|
||||
CONFIGURE_ARGS+= --enable-flac
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-flac
|
||||
@ -197,20 +193,21 @@ CONFIGURE_ARGS+= --disable-flac
|
||||
|
||||
# gnomevfs
|
||||
COMMENT-gnome= "GStreamer plugin supporting GNOME VFS"
|
||||
PKGNAME-gnome= gstreamer-gnome-${VERSION}p0
|
||||
PKGNAME-gnome= gstreamer-gnome-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_gnome
|
||||
.if !${FLAVOR:L:Mno_gnome} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_gnome} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -gnome
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-gnome"
|
||||
WANTLIB+= bonobo-activation bonobo-2
|
||||
LIB_DEPENDS+= gnomevfs-2::x11/gnome/vfs2
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB} crypto ssl gconf-2 \
|
||||
ORBit-2 ORBitCosNaming-2 bonobo-activation bonobo-2
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
gnomevfs-2::x11/gnome/vfs2
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-gnome}
|
||||
LIB_DEPENDS+= gnomevfs-2::x11/gnome/vfs2
|
||||
BUILD_DEPENDS+= ::x11/gnome/vfs2
|
||||
CONFIGURE_ARGS+= --enable-gnome_vfs
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-gnome_vfs
|
||||
@ -219,19 +216,20 @@ CONFIGURE_ARGS+= --disable-gnome_vfs
|
||||
|
||||
# jpeg
|
||||
COMMENT-jpeg= "GStreamer plugin for handling JPEG files"
|
||||
PKGNAME-jpeg= gstreamer-jpeg-${VERSION}p0
|
||||
PKGNAME-jpeg= gstreamer-jpeg-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_jpeg
|
||||
.if !${FLAVOR:L:Mno_jpeg} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_jpeg} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -jpeg
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-jpeg"
|
||||
LIB_DEPENDS+= jpeg::graphics/jpeg
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
jpeg::graphics/jpeg
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-jpeg}
|
||||
LIB_DEPENDS+= jpeg::graphics/jpeg
|
||||
BUILD_DEPENDS+= ::graphics/jpeg
|
||||
CONFIGURE_ARGS+= --enable-jpeg
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-jpeg
|
||||
@ -240,21 +238,22 @@ CONFIGURE_ARGS+= --disable-jpeg
|
||||
|
||||
# lame
|
||||
COMMENT-lame= "GStreamer plugin for encoding mp3 files using LAME"
|
||||
PKGNAME-lame= gstreamer-lame-${VERSION}p0
|
||||
PKGNAME-lame= gstreamer-lame-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_lame
|
||||
.if !${FLAVOR:L:Mno_lame} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_lame} && !${FLAVOR:L:Mminimal}
|
||||
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
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
mp3lame::audio/lame,no_x11
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-lame}
|
||||
LIB_DEPENDS+= mp3lame::audio/lame,no_x11
|
||||
BUILD_DEPENDS+= ::audio/lame,no_x11
|
||||
CONFIGURE_ARGS+= --enable-lame
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-lame
|
||||
@ -263,21 +262,22 @@ CONFIGURE_ARGS+= --disable-lame
|
||||
|
||||
# mad
|
||||
COMMENT-mad= "GStreamer plugin for decoding mp3 files using MAD"
|
||||
PKGNAME-mad= gstreamer-mad-${VERSION}p0
|
||||
PKGNAME-mad= gstreamer-mad-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_mad
|
||||
.if !${FLAVOR:L:Mno_mad} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_mad} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -mad
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-mad"
|
||||
LIB_DEPENDS+= id3tag::audio/libid3tag \
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
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
|
||||
BUILD_DEPENDS+= ::audio/libid3tag \
|
||||
::audio/libmad
|
||||
CONFIGURE_ARGS+= --enable-mad
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-mad
|
||||
@ -286,19 +286,20 @@ CONFIGURE_ARGS+= --disable-mad
|
||||
|
||||
# mikmod
|
||||
COMMENT-mikmod= "GStreamer plugin for using the Mikmod library"
|
||||
PKGNAME-mikmod= gstreamer-mikmod-${VERSION}p0
|
||||
PKGNAME-mikmod= gstreamer-mikmod-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_mikmod
|
||||
.if !${FLAVOR:L:Mno_mikmod} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_mikmod} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -mikmod
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-mikmod"
|
||||
LIB_DEPENDS+= mikmod::audio/libmikmod
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
mikmod::audio/libmikmod
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-mikmod}
|
||||
LIB_DEPENDS+= mikmod::audio/libmikmod
|
||||
BUILD_DEPENDS+= mikmod::audio/libmikmod
|
||||
CONFIGURE_ARGS+= --enable-mikmod
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-mikmod
|
||||
@ -307,19 +308,20 @@ CONFIGURE_ARGS+= --disable-mikmod
|
||||
|
||||
# mpeg2dec
|
||||
COMMENT-mpeg2= "GStreamer plugin for playing and encoding MPEG video files"
|
||||
PKGNAME-mpeg2= gstreamer-mpeg2-${VERSION}p0
|
||||
PKGNAME-mpeg2= gstreamer-mpeg2-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_mpeg2
|
||||
.if !${FLAVOR:L:Mno_mpeg2} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_mpeg2} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -mpeg2
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-mpeg2"
|
||||
LIB_DEPENDS+= mpeg2::graphics/libmpeg2
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB} X11 Xv Xext
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
mpeg2::graphics/libmpeg2
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-mpeg2}
|
||||
LIB_DEPENDS+= mpeg2::graphics/libmpeg2
|
||||
BUILD_DEPENDS+= ::graphics/libmpeg2
|
||||
CONFIGURE_ARGS+= --enable-mpeg2dec
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-mpeg2dec
|
||||
@ -328,19 +330,20 @@ CONFIGURE_ARGS+= --disable-mpeg2dec
|
||||
|
||||
# ogg
|
||||
COMMENT-ogg= "GStreamer plugin for demuxing Ogg streams"
|
||||
PKGNAME-ogg= gstreamer-ogg-${VERSION}p0
|
||||
PKGNAME-ogg= gstreamer-ogg-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_ogg
|
||||
.if !${FLAVOR:L:Mno_ogg} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_ogg} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -ogg
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-ogg"
|
||||
LIB_DEPENDS+= ogg::audio/libogg
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
ogg::audio/libogg
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-ogg}
|
||||
LIB_DEPENDS+= ogg::audio/libogg
|
||||
BUILD_DEPENDS+= ::audio/libogg
|
||||
CONFIGURE_ARGS+= --enable-ogg
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-ogg
|
||||
@ -349,42 +352,65 @@ CONFIGURE_ARGS+= --disable-ogg
|
||||
|
||||
# sdlvideosink
|
||||
COMMENT-sdl= "GStreamer plugin for using SDL to diplay video"
|
||||
PKGNAME-sdl= gstreamer-sdl-${VERSION}p1
|
||||
PKGNAME-sdl= gstreamer-sdl-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_sdl
|
||||
.if !${FLAVOR:L:Mno_sdl} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_sdl} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -sdl
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-sdl"
|
||||
LIB_DEPENDS+= SDL::devel/sdl \
|
||||
WANTLIB= ${PL_WANTLIB} Xext usbhid X11
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
SDL::devel/sdl \
|
||||
gstinterfaces-0.8.1.0::devel/gstreamer-plugins
|
||||
WANTLIB+= X11 usbhid Xext
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-sdl}
|
||||
LIB_DEPENDS+= SDL::devel/sdl
|
||||
BUILD_DEPENDS+= ::devel/sdl
|
||||
CONFIGURE_ARGS+= --enable-sdl
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-sdl
|
||||
. endif
|
||||
.endif
|
||||
|
||||
# speex
|
||||
COMMENT-speex= "GStreamer plugin for speex"
|
||||
PKGNAME-speex= gstreamer-speex-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_speex
|
||||
.if !${FLAVOR:L:Mno_speex} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -speex
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-speex"
|
||||
WANTLIB= ${PL_WANTLIB}
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
speex.4::audio/speex
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-speex}
|
||||
BUILD_DEPENDS+= :speex->=1.0.5:audio/speex
|
||||
CONFIGURE_ARGS+= --enable-speex
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-speex
|
||||
. endif
|
||||
.endif
|
||||
|
||||
# vorbis
|
||||
COMMENT-vorbis= "GStreamer plugin for Vorbis audio files"
|
||||
PKGNAME-vorbis= gstreamer-vorbis-${VERSION}p0
|
||||
PKGNAME-vorbis= gstreamer-vorbis-${VERSION}${PATCHLEVEL}
|
||||
PSEUDO_FLAVORS+= no_vorbis
|
||||
.if !${FLAVOR:L:Mno_vorbis} && !${FLAVOR:L:Mno_nuthin}
|
||||
.if !${FLAVOR:L:Mno_vorbis} && !${FLAVOR:L:Mminimal}
|
||||
MULTI_PACKAGES+= -vorbis
|
||||
.endif
|
||||
.if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-vorbis"
|
||||
WANTLIB+= ogg
|
||||
LIB_DEPENDS+= vorbis,vorbisenc::audio/libvorbis
|
||||
RUN_DEPENDS= ::devel/gstreamer-plugins
|
||||
WANTLIB= ${PL_WANTLIB} ogg
|
||||
LIB_DEPENDS= gstreamer-0.8.0.0::devel/gstreamer \
|
||||
vorbis,vorbisenc::audio/libvorbis
|
||||
. endif
|
||||
.else
|
||||
. if ${MULTI_PACKAGES:M-vorbis}
|
||||
LIB_DEPENDS+= vorbis,vorbisenc,vorbisfile::audio/libvorbis
|
||||
BUILD_DEPENDS+= ::audio/libvorbis
|
||||
CONFIGURE_ARGS+= --enable-vorbis
|
||||
. else
|
||||
CONFIGURE_ARGS+= --disable-vorbis
|
||||
|
@ -1,4 +1,4 @@
|
||||
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
|
||||
SIZE (gst-plugins-0.8.6.tar.bz2) = 2033762
|
||||
MD5 (gst-plugins-0.8.8.tar.bz2) = 4f6e7e730fa674ecd6ec713f937b8acb
|
||||
RMD160 (gst-plugins-0.8.8.tar.bz2) = e141c576b668109d41f32541a96da5c79016e55c
|
||||
SHA1 (gst-plugins-0.8.8.tar.bz2) = 5ba9908c3a09c1b7554ed0194a85ba63c2cc1ced
|
||||
SIZE (gst-plugins-0.8.8.tar.bz2) = 2214274
|
||||
|
@ -1,7 +1,7 @@
|
||||
$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: patch-configure,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
--- configure.orig Mon Mar 7 08:41:29 2005
|
||||
+++ configure Tue Apr 12 20:38:20 2005
|
||||
@@ -8302,7 +8302,7 @@ nto-qnx*)
|
||||
openbsd*)
|
||||
version_type=sunos
|
||||
need_lib_prefix=no
|
||||
@ -10,7 +10,16 @@ $OpenBSD: patch-configure,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
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
|
||||
@@ -27626,7 +27626,7 @@ DEFAULT_AUDIOSRC="osssrc"
|
||||
DEFAULT_VIDEOSRC="v4lsrc"
|
||||
DEFAULT_VISUALIZER="goom"
|
||||
case "$host" in
|
||||
- *-sun-* | *pc-solaris* )
|
||||
+ *-sun-* | *pc-solaris* | *-*-openbsd* )
|
||||
DEFAULT_AUDIOSINK="sunaudiosink"
|
||||
DEFAULT_VIDEOSINK="ximagesink"
|
||||
DEFAULT_AUDIOSRC="sunaudiosrc"
|
||||
@@ -35332,7 +35332,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
|
||||
|
@ -1,7 +1,7 @@
|
||||
$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
|
||||
$OpenBSD: patch-gconf_Makefile_in,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
--- gconf/Makefile.in.orig Mon Mar 7 08:42:51 2005
|
||||
+++ gconf/Makefile.in Mon Apr 11 15:06:16 2005
|
||||
@@ -867,13 +867,7 @@ gstreamer-@GST_MAJORMINOR@.schemas: gstr
|
||||
cp gstreamer.schemas gstreamer-@GST_MAJORMINOR@.schemas
|
||||
|
||||
install-data-local:
|
||||
|
@ -1,12 +0,0 @@
|
||||
$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>
|
@ -1,11 +0,0 @@
|
||||
$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 */
|
||||
|
@ -1,70 +0,0 @@
|
||||
$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
|
||||
;;
|
||||
|
@ -1,7 +1,7 @@
|
||||
$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@
|
||||
$OpenBSD: patch-sys_oss_Makefile_in,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
--- sys/oss/Makefile.in.orig Mon Mar 7 08:44:53 2005
|
||||
+++ sys/oss/Makefile.in Mon Apr 11 15:06:16 2005
|
||||
@@ -387,7 +387,7 @@ LIBPNG_CFLAGS = @LIBPNG_CFLAGS@
|
||||
LIBPNG_LIBS = @LIBPNG_LIBS@
|
||||
LIBRFB_CFLAGS = @LIBRFB_CFLAGS@
|
||||
LIBRFB_LIBS = @LIBRFB_LIBS@
|
||||
|
@ -1,7 +1,7 @@
|
||||
$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
|
||||
$OpenBSD: patch-sys_oss_gstosselement_c,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
--- sys/oss/gstosselement.c.orig Tue Feb 22 07:23:05 2005
|
||||
+++ sys/oss/gstosselement.c Mon Apr 11 15:06:16 2005
|
||||
@@ -263,7 +263,7 @@ gst_osselement_class_probe_devices (GstO
|
||||
if (!init && !check) {
|
||||
#define MIXER 0
|
||||
#define DSP 1
|
||||
@ -10,7 +10,7 @@ $OpenBSD: patch-sys_oss_gstosselement_c,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp
|
||||
,
|
||||
{"/dev/sound/mixer", "/dev/sound/dsp"}
|
||||
,
|
||||
@@ -423,7 +423,7 @@ gst_ossprobe_interface_init (GstProperty
|
||||
@@ -424,7 +424,7 @@ gst_ossprobe_interface_init (GstProperty
|
||||
static void
|
||||
gst_osselement_init (GstOssElement * oss)
|
||||
{
|
||||
|
@ -1,9 +1,9 @@
|
||||
$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;
|
||||
$OpenBSD: patch-sys_oss_oss_probe_c,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
--- sys/oss/oss_probe.c.orig Thu Dec 16 03:34:54 2004
|
||||
+++ sys/oss/oss_probe.c Mon Apr 11 15:06:16 2005
|
||||
@@ -79,9 +79,9 @@ main (int argc, char *argv[])
|
||||
gboolean mono_supported = FALSE;
|
||||
gboolean stereo_supported = FALSE;
|
||||
|
||||
- fd = open ("/dev/dsp", O_RDWR);
|
||||
+ fd = open ("/dev/sound", O_RDWR);
|
||||
|
@ -1,6 +1,6 @@
|
||||
$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
|
||||
$OpenBSD: patch-sys_sunaudio_gstsunaudio_c,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
--- sys/sunaudio/gstsunaudio.c.orig Wed Dec 15 10:23:31 2004
|
||||
+++ sys/sunaudio/gstsunaudio.c Mon Apr 11 15:06:16 2005
|
||||
@@ -28,7 +28,10 @@
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
@ -11,8 +11,8 @@ $OpenBSD: patch-sys_sunaudio_gstsunaudio_c,v 1.1.1.1 2004/12/22 06:09:18 marcm E
|
||||
+#include <string.h>
|
||||
#include "gstsunelement.h"
|
||||
#include "gstsunmixer.h"
|
||||
|
||||
@@ -183,8 +186,8 @@ gst_sunaudiosink_class_init (GstSunAudio
|
||||
#include "gstsunaudiosrc.h"
|
||||
@@ -184,8 +187,8 @@ gst_sunaudiosink_class_init (GstSunAudio
|
||||
gstelement_class->change_state = gst_sunaudiosink_change_state;
|
||||
|
||||
g_object_class_install_property (gobject_class, ARG_DEVICE,
|
||||
@ -23,7 +23,7 @@ $OpenBSD: patch-sys_sunaudio_gstsunaudio_c,v 1.1.1.1 2004/12/22 06:09:18 marcm E
|
||||
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 *
|
||||
@@ -210,7 +213,7 @@ gst_sunaudiosink_init (GstSunAudioSink *
|
||||
|
||||
audiodev = g_getenv ("AUDIODEV");
|
||||
if (audiodev == NULL)
|
||||
@ -32,7 +32,7 @@ $OpenBSD: patch-sys_sunaudio_gstsunaudio_c,v 1.1.1.1 2004/12/22 06:09:18 marcm E
|
||||
sunaudiosink->device = g_strdup (audiodev);
|
||||
}
|
||||
|
||||
@@ -295,10 +298,9 @@ gst_sunaudiosink_setparams (GstSunAudioS
|
||||
@@ -296,10 +299,9 @@ gst_sunaudiosink_setparams (GstSunAudioS
|
||||
ainfo.play.sample_rate = sunaudiosink->rate;
|
||||
ainfo.play.channels = sunaudiosink->channels;
|
||||
ainfo.play.precision = sunaudiosink->width;
|
||||
@ -44,7 +44,7 @@ $OpenBSD: patch-sys_sunaudio_gstsunaudio_c,v 1.1.1.1 2004/12/22 06:09:18 marcm E
|
||||
|
||||
ret = ioctl (sunaudiosink->fd, AUDIO_SETINFO, &ainfo);
|
||||
if (ret == -1) {
|
||||
@@ -342,10 +344,6 @@ gst_sunaudiosink_open (GstSunAudioSink *
|
||||
@@ -343,10 +345,6 @@ gst_sunaudiosink_open (GstSunAudioSink *
|
||||
}
|
||||
|
||||
GST_INFO ("monitor_gain %d", sunaudiosink->info.monitor_gain);
|
||||
|
@ -1,7 +1,7 @@
|
||||
$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
|
||||
$OpenBSD: patch-sys_sunaudio_gstsunmixer_c,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
--- sys/sunaudio/gstsunmixer.c.orig Wed Dec 22 06:49:06 2004
|
||||
+++ sys/sunaudio/gstsunmixer.c Mon Apr 11 15:06:16 2005
|
||||
@@ -284,12 +284,6 @@ gst_sunaudiomixer_set_mute (GstMixer * m
|
||||
|
||||
AUDIO_INITINFO (&audioinfo);
|
||||
|
||||
|
1
devel/gstreamer-plugins/pkg/DESCR-speex
Normal file
1
devel/gstreamer-plugins/pkg/DESCR-speex
Normal file
@ -0,0 +1 @@
|
||||
A speex plugin for the GStreamer Streaming-media framework.
|
@ -1,9 +1,10 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.2 2005/05/24 21:33:33 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/libgstapetag.so
|
||||
lib/gstreamer-0.8/libgstasf.so
|
||||
lib/gstreamer-0.8/libgstaudio.so
|
||||
lib/gstreamer-0.8/libgstaudioconvert.so
|
||||
@ -11,6 +12,7 @@ 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/libgstautodetect.so
|
||||
lib/gstreamer-0.8/libgstavi.so
|
||||
lib/gstreamer-0.8/libgstcdplayer.so
|
||||
lib/gstreamer-0.8/libgstcdxaparse.so
|
||||
@ -20,6 +22,7 @@ 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/libgstdvdlpcmdec.so
|
||||
lib/gstreamer-0.8/libgstefence.so
|
||||
lib/gstreamer-0.8/libgsteffectv.so
|
||||
lib/gstreamer-0.8/libgstequalizer.so
|
||||
@ -28,6 +31,7 @@ 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/libgstgconfelements.so
|
||||
lib/gstreamer-0.8/libgstgdkpixbuf.so
|
||||
lib/gstreamer-0.8/libgstglimagesink.so
|
||||
lib/gstreamer-0.8/libgstgoom.so
|
||||
@ -37,6 +41,7 @@ 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/libgstmodplug.so
|
||||
lib/gstreamer-0.8/libgstmonoscope.so
|
||||
lib/gstreamer-0.8/libgstmp1videoparse.so
|
||||
lib/gstreamer-0.8/libgstmpeg1systemencode.so
|
||||
@ -53,8 +58,10 @@ 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/libgstpuzzle.so
|
||||
lib/gstreamer-0.8/libgstqtdemux.so
|
||||
lib/gstreamer-0.8/libgstresample.so
|
||||
lib/gstreamer-0.8/libgstrfbsrc.so
|
||||
lib/gstreamer-0.8/libgstriff.so
|
||||
lib/gstreamer-0.8/libgstrmdemux.so
|
||||
lib/gstreamer-0.8/libgstrtjpeg.so
|
||||
@ -67,6 +74,7 @@ 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/libgstsubparse.so
|
||||
lib/gstreamer-0.8/libgstsunaudio.so
|
||||
lib/gstreamer-0.8/libgstswitch.so
|
||||
lib/gstreamer-0.8/libgstsynaesthesia.so
|
||||
@ -74,6 +82,7 @@ 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/libgsttta.so
|
||||
lib/gstreamer-0.8/libgsttypefindfunctions.so
|
||||
lib/gstreamer-0.8/libgstudp.so
|
||||
lib/gstreamer-0.8/libgstvbidec.so
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
bin/gst-launch-ext-0.8
|
||||
bin/gst-visualise-0.8
|
||||
include/gstreamer-0.8/
|
||||
@ -7,6 +7,8 @@ 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/audio/multichannel-enumtypes.h
|
||||
include/gstreamer-0.8/gst/audio/multichannel.h
|
||||
include/gstreamer-0.8/gst/colorbalance/
|
||||
include/gstreamer-0.8/gst/colorbalance/colorbalance-enumtypes.h
|
||||
include/gstreamer-0.8/gst/colorbalance/colorbalance.h
|
||||
@ -52,108 +54,225 @@ 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.a
|
||||
lib/gstreamer-0.8/libgstac3parse.la
|
||||
lib/gstreamer-0.8/libgstadder.a
|
||||
lib/gstreamer-0.8/libgstadder.la
|
||||
lib/gstreamer-0.8/libgstalaw.a
|
||||
lib/gstreamer-0.8/libgstalaw.la
|
||||
lib/gstreamer-0.8/libgstalpha.a
|
||||
lib/gstreamer-0.8/libgstalpha.la
|
||||
lib/gstreamer-0.8/libgstalphacolor.a
|
||||
lib/gstreamer-0.8/libgstalphacolor.la
|
||||
lib/gstreamer-0.8/libgstapetag.a
|
||||
lib/gstreamer-0.8/libgstapetag.la
|
||||
lib/gstreamer-0.8/libgstasf.a
|
||||
lib/gstreamer-0.8/libgstasf.la
|
||||
lib/gstreamer-0.8/libgstaudio.a
|
||||
lib/gstreamer-0.8/libgstaudio.la
|
||||
lib/gstreamer-0.8/libgstaudioconvert.a
|
||||
lib/gstreamer-0.8/libgstaudioconvert.la
|
||||
lib/gstreamer-0.8/libgstaudiofilter.a
|
||||
lib/gstreamer-0.8/libgstaudiofilter.la
|
||||
lib/gstreamer-0.8/libgstaudiorate.a
|
||||
lib/gstreamer-0.8/libgstaudiorate.la
|
||||
lib/gstreamer-0.8/libgstaudioscale.a
|
||||
lib/gstreamer-0.8/libgstaudioscale.la
|
||||
lib/gstreamer-0.8/libgstauparse.a
|
||||
lib/gstreamer-0.8/libgstauparse.la
|
||||
lib/gstreamer-0.8/libgstautodetect.a
|
||||
lib/gstreamer-0.8/libgstautodetect.la
|
||||
lib/gstreamer-0.8/libgstavi.a
|
||||
lib/gstreamer-0.8/libgstavi.la
|
||||
lib/gstreamer-0.8/libgstcdplayer.a
|
||||
lib/gstreamer-0.8/libgstcdplayer.la
|
||||
lib/gstreamer-0.8/libgstcdxaparse.a
|
||||
lib/gstreamer-0.8/libgstcdxaparse.la
|
||||
lib/gstreamer-0.8/libgstchart.a
|
||||
lib/gstreamer-0.8/libgstchart.la
|
||||
lib/gstreamer-0.8/libgstcolorspace.a
|
||||
lib/gstreamer-0.8/libgstcolorspace.la
|
||||
lib/gstreamer-0.8/libgstcutter.a
|
||||
lib/gstreamer-0.8/libgstcutter.la
|
||||
lib/gstreamer-0.8/libgstdebug.a
|
||||
lib/gstreamer-0.8/libgstdebug.la
|
||||
lib/gstreamer-0.8/libgstdecodebin.a
|
||||
lib/gstreamer-0.8/libgstdecodebin.la
|
||||
lib/gstreamer-0.8/libgstdeinterlace.a
|
||||
lib/gstreamer-0.8/libgstdeinterlace.la
|
||||
lib/gstreamer-0.8/libgstdvdlpcmdec.a
|
||||
lib/gstreamer-0.8/libgstdvdlpcmdec.la
|
||||
lib/gstreamer-0.8/libgstefence.a
|
||||
lib/gstreamer-0.8/libgstefence.la
|
||||
lib/gstreamer-0.8/libgsteffectv.a
|
||||
lib/gstreamer-0.8/libgsteffectv.la
|
||||
lib/gstreamer-0.8/libgstequalizer.a
|
||||
lib/gstreamer-0.8/libgstequalizer.la
|
||||
lib/gstreamer-0.8/libgstfestival.a
|
||||
lib/gstreamer-0.8/libgstfestival.la
|
||||
lib/gstreamer-0.8/libgstffmpegcolorspace.a
|
||||
lib/gstreamer-0.8/libgstffmpegcolorspace.la
|
||||
lib/gstreamer-0.8/libgstfilter.a
|
||||
lib/gstreamer-0.8/libgstfilter.la
|
||||
lib/gstreamer-0.8/libgstflxdec.a
|
||||
lib/gstreamer-0.8/libgstflxdec.la
|
||||
lib/gstreamer-0.8/libgstgamma.a
|
||||
lib/gstreamer-0.8/libgstgamma.la
|
||||
lib/gstreamer-0.8/libgstgconfelements.a
|
||||
lib/gstreamer-0.8/libgstgconfelements.la
|
||||
lib/gstreamer-0.8/libgstgdkpixbuf.a
|
||||
lib/gstreamer-0.8/libgstgdkpixbuf.la
|
||||
lib/gstreamer-0.8/libgstglimagesink.a
|
||||
lib/gstreamer-0.8/libgstglimagesink.la
|
||||
lib/gstreamer-0.8/libgstgoom.a
|
||||
lib/gstreamer-0.8/libgstgoom.la
|
||||
lib/gstreamer-0.8/libgstidct.a
|
||||
lib/gstreamer-0.8/libgstidct.la
|
||||
lib/gstreamer-0.8/libgstinterleave.a
|
||||
lib/gstreamer-0.8/libgstinterleave.la
|
||||
lib/gstreamer-0.8/libgstlevel.a
|
||||
lib/gstreamer-0.8/libgstlevel.la
|
||||
lib/gstreamer-0.8/libgstmatroska.a
|
||||
lib/gstreamer-0.8/libgstmatroska.la
|
||||
lib/gstreamer-0.8/libgstmedian.a
|
||||
lib/gstreamer-0.8/libgstmedian.la
|
||||
lib/gstreamer-0.8/libgstmixmatrix.a
|
||||
lib/gstreamer-0.8/libgstmixmatrix.la
|
||||
lib/gstreamer-0.8/libgstmodplug.a
|
||||
lib/gstreamer-0.8/libgstmodplug.la
|
||||
lib/gstreamer-0.8/libgstmonoscope.a
|
||||
lib/gstreamer-0.8/libgstmonoscope.la
|
||||
lib/gstreamer-0.8/libgstmp1videoparse.a
|
||||
lib/gstreamer-0.8/libgstmp1videoparse.la
|
||||
lib/gstreamer-0.8/libgstmpeg1systemencode.a
|
||||
lib/gstreamer-0.8/libgstmpeg1systemencode.la
|
||||
lib/gstreamer-0.8/libgstmpeg2subt.a
|
||||
lib/gstreamer-0.8/libgstmpeg2subt.la
|
||||
lib/gstreamer-0.8/libgstmpegaudio.a
|
||||
lib/gstreamer-0.8/libgstmpegaudio.la
|
||||
lib/gstreamer-0.8/libgstmpegaudioparse.a
|
||||
lib/gstreamer-0.8/libgstmpegaudioparse.la
|
||||
lib/gstreamer-0.8/libgstmpegstream.a
|
||||
lib/gstreamer-0.8/libgstmpegstream.la
|
||||
lib/gstreamer-0.8/libgstmulaw.a
|
||||
lib/gstreamer-0.8/libgstmulaw.la
|
||||
lib/gstreamer-0.8/libgstmultifilesink.a
|
||||
lib/gstreamer-0.8/libgstmultifilesink.la
|
||||
lib/gstreamer-0.8/libgstmultipart.a
|
||||
lib/gstreamer-0.8/libgstmultipart.la
|
||||
lib/gstreamer-0.8/libgstnavigationtest.a
|
||||
lib/gstreamer-0.8/libgstnavigationtest.la
|
||||
lib/gstreamer-0.8/libgstossaudio.a
|
||||
lib/gstreamer-0.8/libgstossaudio.la
|
||||
lib/gstreamer-0.8/libgstoverlay.a
|
||||
lib/gstreamer-0.8/libgstoverlay.la
|
||||
lib/gstreamer-0.8/libgstpassthrough.a
|
||||
lib/gstreamer-0.8/libgstpassthrough.la
|
||||
lib/gstreamer-0.8/libgstplaybin.a
|
||||
lib/gstreamer-0.8/libgstplaybin.la
|
||||
lib/gstreamer-0.8/libgstplayondemand.a
|
||||
lib/gstreamer-0.8/libgstplayondemand.la
|
||||
lib/gstreamer-0.8/libgstpuzzle.a
|
||||
lib/gstreamer-0.8/libgstpuzzle.la
|
||||
lib/gstreamer-0.8/libgstqtdemux.a
|
||||
lib/gstreamer-0.8/libgstqtdemux.la
|
||||
lib/gstreamer-0.8/libgstresample.a
|
||||
lib/gstreamer-0.8/libgstresample.la
|
||||
lib/gstreamer-0.8/libgstrfbsrc.a
|
||||
lib/gstreamer-0.8/libgstrfbsrc.la
|
||||
lib/gstreamer-0.8/libgstriff.a
|
||||
lib/gstreamer-0.8/libgstriff.la
|
||||
lib/gstreamer-0.8/libgstrmdemux.a
|
||||
lib/gstreamer-0.8/libgstrmdemux.la
|
||||
lib/gstreamer-0.8/libgstrtjpeg.a
|
||||
lib/gstreamer-0.8/libgstrtjpeg.la
|
||||
lib/gstreamer-0.8/libgstrtp.a
|
||||
lib/gstreamer-0.8/libgstrtp.la
|
||||
lib/gstreamer-0.8/libgstsilence.a
|
||||
lib/gstreamer-0.8/libgstsilence.la
|
||||
lib/gstreamer-0.8/libgstsinesrc.a
|
||||
lib/gstreamer-0.8/libgstsinesrc.la
|
||||
lib/gstreamer-0.8/libgstsmooth.a
|
||||
lib/gstreamer-0.8/libgstsmooth.la
|
||||
lib/gstreamer-0.8/libgstsmoothwave.a
|
||||
lib/gstreamer-0.8/libgstsmoothwave.la
|
||||
lib/gstreamer-0.8/libgstsmpte.a
|
||||
lib/gstreamer-0.8/libgstsmpte.la
|
||||
lib/gstreamer-0.8/libgstspectrum.a
|
||||
lib/gstreamer-0.8/libgstspectrum.la
|
||||
lib/gstreamer-0.8/libgstspeed.a
|
||||
lib/gstreamer-0.8/libgstspeed.la
|
||||
lib/gstreamer-0.8/libgststereo.a
|
||||
lib/gstreamer-0.8/libgststereo.la
|
||||
lib/gstreamer-0.8/libgstsubparse.a
|
||||
lib/gstreamer-0.8/libgstsubparse.la
|
||||
lib/gstreamer-0.8/libgstsunaudio.a
|
||||
lib/gstreamer-0.8/libgstsunaudio.la
|
||||
lib/gstreamer-0.8/libgstswitch.a
|
||||
lib/gstreamer-0.8/libgstswitch.la
|
||||
lib/gstreamer-0.8/libgstsynaesthesia.a
|
||||
lib/gstreamer-0.8/libgstsynaesthesia.la
|
||||
lib/gstreamer-0.8/libgsttagedit.a
|
||||
lib/gstreamer-0.8/libgsttagedit.la
|
||||
lib/gstreamer-0.8/libgsttcp.a
|
||||
lib/gstreamer-0.8/libgsttcp.la
|
||||
lib/gstreamer-0.8/libgsttextoverlay.a
|
||||
lib/gstreamer-0.8/libgsttextoverlay.la
|
||||
lib/gstreamer-0.8/libgsttimeoverlay.a
|
||||
lib/gstreamer-0.8/libgsttimeoverlay.la
|
||||
lib/gstreamer-0.8/libgsttta.a
|
||||
lib/gstreamer-0.8/libgsttta.la
|
||||
lib/gstreamer-0.8/libgsttypefindfunctions.a
|
||||
lib/gstreamer-0.8/libgsttypefindfunctions.la
|
||||
lib/gstreamer-0.8/libgstudp.a
|
||||
lib/gstreamer-0.8/libgstudp.la
|
||||
lib/gstreamer-0.8/libgstvbidec.a
|
||||
lib/gstreamer-0.8/libgstvbidec.la
|
||||
lib/gstreamer-0.8/libgstvideo.a
|
||||
lib/gstreamer-0.8/libgstvideo.la
|
||||
lib/gstreamer-0.8/libgstvideobalance.a
|
||||
lib/gstreamer-0.8/libgstvideobalance.la
|
||||
lib/gstreamer-0.8/libgstvideobox.a
|
||||
lib/gstreamer-0.8/libgstvideobox.la
|
||||
lib/gstreamer-0.8/libgstvideocrop.a
|
||||
lib/gstreamer-0.8/libgstvideocrop.la
|
||||
lib/gstreamer-0.8/libgstvideodrop.a
|
||||
lib/gstreamer-0.8/libgstvideodrop.la
|
||||
lib/gstreamer-0.8/libgstvideofilter.a
|
||||
lib/gstreamer-0.8/libgstvideofilter.la
|
||||
lib/gstreamer-0.8/libgstvideoflip.a
|
||||
lib/gstreamer-0.8/libgstvideoflip.la
|
||||
lib/gstreamer-0.8/libgstvideomixer.a
|
||||
lib/gstreamer-0.8/libgstvideomixer.la
|
||||
lib/gstreamer-0.8/libgstvideorate.a
|
||||
lib/gstreamer-0.8/libgstvideorate.la
|
||||
lib/gstreamer-0.8/libgstvideoscale.a
|
||||
lib/gstreamer-0.8/libgstvideoscale.la
|
||||
lib/gstreamer-0.8/libgstvideotestsrc.a
|
||||
lib/gstreamer-0.8/libgstvideotestsrc.la
|
||||
lib/gstreamer-0.8/libgstvolenv.a
|
||||
lib/gstreamer-0.8/libgstvolenv.la
|
||||
lib/gstreamer-0.8/libgstvolume.a
|
||||
lib/gstreamer-0.8/libgstvolume.la
|
||||
lib/gstreamer-0.8/libgstwavenc.a
|
||||
lib/gstreamer-0.8/libgstwavenc.la
|
||||
lib/gstreamer-0.8/libgstwavparse.a
|
||||
lib/gstreamer-0.8/libgstwavparse.la
|
||||
lib/gstreamer-0.8/libgstximagesink.a
|
||||
lib/gstreamer-0.8/libgstximagesink.la
|
||||
lib/gstreamer-0.8/libgstxvimagesink.a
|
||||
lib/gstreamer-0.8/libgstxvimagesink.la
|
||||
lib/gstreamer-0.8/libgstxwindowlistener.a
|
||||
lib/gstreamer-0.8/libgstxwindowlistener.la
|
||||
lib/gstreamer-0.8/libgsty4menc.a
|
||||
lib/gstreamer-0.8/libgsty4menc.la
|
||||
lib/libgstgconf-0.8.a
|
||||
lib/libgstgconf-0.8.la
|
||||
lib/libgstinterfaces-0.8.a
|
||||
lib/libgstinterfaces-0.8.la
|
||||
lib/libgstmedia-info-0.8.a
|
||||
lib/libgstmedia-info-0.8.la
|
||||
lib/libgstplay-0.8.a
|
||||
lib/libgstplay-0.8.la
|
||||
lib/pkgconfig/
|
||||
lib/pkgconfig/gstreamer-gconf-0.8.pc
|
||||
@ -164,30 +283,19 @@ 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/
|
||||
@ -198,16 +306,15 @@ 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/locale/vi/
|
||||
share/locale/vi/LC_MESSAGES/
|
||||
share/locale/vi/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
|
||||
@exec %D/bin/gst-register --gst-registry=/var/db/gstreamer/registry.xml >/dev/null 2>&1
|
||||
@unexec %D/bin/gst-register --gst-registry=/var/db/gstreamer/registry.xml > /dev/null 2>&1
|
||||
%%SHARED%%
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-a52,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-a52,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgsta52dec.a
|
||||
lib/gstreamer-0.8/libgsta52dec.la
|
||||
lib/gstreamer-0.8/libgsta52dec.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-audiofile,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-audiofile,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstaudiofile.a
|
||||
lib/gstreamer-0.8/libgstaudiofile.la
|
||||
lib/gstreamer-0.8/libgstaudiofile.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-cdda,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-cdda,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstcdparanoia.a
|
||||
lib/gstreamer-0.8/libgstcdparanoia.la
|
||||
lib/gstreamer-0.8/libgstcdparanoia.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-dvdread,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-dvdread,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstdvdreadsrc.a
|
||||
lib/gstreamer-0.8/libgstdvdreadsrc.la
|
||||
lib/gstreamer-0.8/libgstdvdreadsrc.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-esd,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-esd,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstesd.a
|
||||
lib/gstreamer-0.8/libgstesd.la
|
||||
lib/gstreamer-0.8/libgstesd.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-flac,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-flac,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstflac.a
|
||||
lib/gstreamer-0.8/libgstflac.la
|
||||
lib/gstreamer-0.8/libgstflac.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-gnome,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-gnome,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstgnomevfs.a
|
||||
lib/gstreamer-0.8/libgstgnomevfs.la
|
||||
lib/gstreamer-0.8/libgstgnomevfs.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-jpeg,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-jpeg,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstjpeg.a
|
||||
lib/gstreamer-0.8/libgstjpeg.la
|
||||
lib/gstreamer-0.8/libgstjpeg.so
|
||||
@exec %D/bin/gst-register
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-lame,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-lame,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstlame.a
|
||||
lib/gstreamer-0.8/libgstlame.la
|
||||
lib/gstreamer-0.8/libgstlame.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-mad,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-mad,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstmad.a
|
||||
lib/gstreamer-0.8/libgstmad.la
|
||||
lib/gstreamer-0.8/libgstmad.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-mikmod,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-mikmod,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstmikmod.a
|
||||
lib/gstreamer-0.8/libgstmikmod.la
|
||||
lib/gstreamer-0.8/libgstmikmod.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-mpeg2,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-mpeg2,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstmpeg2dec.a
|
||||
lib/gstreamer-0.8/libgstmpeg2dec.la
|
||||
lib/gstreamer-0.8/libgstmpeg2dec.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-ogg,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-ogg,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstogg.a
|
||||
lib/gstreamer-0.8/libgstogg.la
|
||||
lib/gstreamer-0.8/libgstogg.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-sdl,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-sdl,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstsdlvideosink.a
|
||||
lib/gstreamer-0.8/libgstsdlvideosink.la
|
||||
lib/gstreamer-0.8/libgstsdlvideosink.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
6
devel/gstreamer-plugins/pkg/PLIST-speex
Normal file
6
devel/gstreamer-plugins/pkg/PLIST-speex
Normal file
@ -0,0 +1,6 @@
|
||||
@comment $OpenBSD: PLIST-speex,v 1.1 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstspeex.a
|
||||
lib/gstreamer-0.8/libgstspeex.la
|
||||
lib/gstreamer-0.8/libgstspeex.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
@unexec %D/bin/gst-register > /dev/null 2>&1
|
@ -1,4 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-vorbis,v 1.1.1.1 2004/12/22 06:09:18 marcm Exp $
|
||||
@comment $OpenBSD: PLIST-vorbis,v 1.2 2005/05/24 21:33:33 marcm Exp $
|
||||
lib/gstreamer-0.8/libgstvorbis.a
|
||||
lib/gstreamer-0.8/libgstvorbis.la
|
||||
lib/gstreamer-0.8/libgstvorbis.so
|
||||
@exec %D/bin/gst-register > /dev/null 2>&1
|
||||
|
Loading…
Reference in New Issue
Block a user