summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorKoop Mast <kwm@FreeBSD.org>2013-04-27 20:56:38 +0000
committerKoop Mast <kwm@FreeBSD.org>2013-04-27 20:56:38 +0000
commit05d2886d27cb71e18dd917003926e7a165f40fa1 (patch)
treef41470c54496d3f979b6727ed30042270de45c74 /audio
parentUpdate to Wine 1.5.29. This includes the following changes: (diff)
Add Gstreamer 1.0.7. This is the new stable version of the
Gstreamer multimedia framework. Use the USE_GSTREAMER1 macro to select Gstreamer 1.0 plugins. A new chapter for the porters handbook about gstreamer is a work in progress. X related plugins are now stand alone. The gio plugin is now part of the gstreamer1-plugins port and the oss plugins are now part of the gstreamer1-plugins-good port. Note that the pulseaudio plugin is missing because it needs a newer version of pulseaudio. Also there are still a number of plugins from -bad which haven't been ported to the 1.0 API yet.
Notes
Notes: svn path=/head/; revision=316693
Diffstat (limited to 'audio')
-rw-r--r--audio/Makefile26
-rw-r--r--audio/gstreamer1-plugins-a52dec/Makefile13
-rw-r--r--audio/gstreamer1-plugins-amrnb/Makefile13
-rw-r--r--audio/gstreamer1-plugins-amrwbdec/Makefile14
-rw-r--r--audio/gstreamer1-plugins-cdparanoia/Makefile13
-rw-r--r--audio/gstreamer1-plugins-celt/Makefile13
-rw-r--r--audio/gstreamer1-plugins-faac/Makefile13
-rw-r--r--audio/gstreamer1-plugins-faad/Makefile13
-rw-r--r--audio/gstreamer1-plugins-flac/Makefile13
-rw-r--r--audio/gstreamer1-plugins-flite/Makefile13
-rw-r--r--audio/gstreamer1-plugins-gme/Makefile13
-rw-r--r--audio/gstreamer1-plugins-gsm/Makefile13
-rw-r--r--audio/gstreamer1-plugins-jack/Makefile13
-rw-r--r--audio/gstreamer1-plugins-lame/Makefile13
-rw-r--r--audio/gstreamer1-plugins-mad/Makefile13
-rw-r--r--audio/gstreamer1-plugins-modplug/Makefile13
-rw-r--r--audio/gstreamer1-plugins-ogg/Makefile13
-rw-r--r--audio/gstreamer1-plugins-opus/Makefile13
-rw-r--r--audio/gstreamer1-plugins-shout2/Makefile13
-rw-r--r--audio/gstreamer1-plugins-sidplay/Makefile13
-rw-r--r--audio/gstreamer1-plugins-soundtouch/Makefile13
-rw-r--r--audio/gstreamer1-plugins-speex/Makefile13
-rw-r--r--audio/gstreamer1-plugins-taglib/Makefile13
-rw-r--r--audio/gstreamer1-plugins-twolame/Makefile13
-rw-r--r--audio/gstreamer1-plugins-vorbis/Makefile13
-rw-r--r--audio/gstreamer1-plugins-wavpack/Makefile13
26 files changed, 352 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile
index 067647bdcbef..39ebf4fe4f42 100644
--- a/audio/Makefile
+++ b/audio/Makefile
@@ -291,6 +291,32 @@
SUBDIR += gstreamer-plugins-twolame
SUBDIR += gstreamer-plugins-vorbis
SUBDIR += gstreamer-plugins-wavpack
+ SUBDIR += gstreamer1-plugins-a52dec
+ SUBDIR += gstreamer1-plugins-amrnb
+ SUBDIR += gstreamer1-plugins-amrwbdec
+ SUBDIR += gstreamer1-plugins-cdparanoia
+ SUBDIR += gstreamer1-plugins-celt
+ SUBDIR += gstreamer1-plugins-faac
+ SUBDIR += gstreamer1-plugins-faad
+ SUBDIR += gstreamer1-plugins-flac
+ SUBDIR += gstreamer1-plugins-flite
+ SUBDIR += gstreamer1-plugins-gme
+ SUBDIR += gstreamer1-plugins-gsm
+ SUBDIR += gstreamer1-plugins-jack
+ SUBDIR += gstreamer1-plugins-lame
+ SUBDIR += gstreamer1-plugins-mad
+ SUBDIR += gstreamer1-plugins-modplug
+ SUBDIR += gstreamer1-plugins-ogg
+ SUBDIR += gstreamer1-plugins-opus
+ SUBDIR += gstreamer1-plugins-pulse
+ SUBDIR += gstreamer1-plugins-shout2
+ SUBDIR += gstreamer1-plugins-sidplay
+ SUBDIR += gstreamer1-plugins-soundtouch
+ SUBDIR += gstreamer1-plugins-speex
+ SUBDIR += gstreamer1-plugins-taglib
+ SUBDIR += gstreamer1-plugins-twolame
+ SUBDIR += gstreamer1-plugins-vorbis
+ SUBDIR += gstreamer1-plugins-wavpack
SUBDIR += gtick
SUBDIR += gtkguitune
SUBDIR += gtkpod
diff --git a/audio/gstreamer1-plugins-a52dec/Makefile b/audio/gstreamer1-plugins-a52dec/Makefile
new file mode 100644
index 000000000000..a01e0f3298e6
--- /dev/null
+++ b/audio/gstreamer1-plugins-a52dec/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin
+
+GST_PLUGIN= a52dec
+DIST= ugly
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-amrnb/Makefile b/audio/gstreamer1-plugins-amrnb/Makefile
new file mode 100644
index 000000000000..299d979c00b0
--- /dev/null
+++ b/audio/gstreamer1-plugins-amrnb/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer OpenCore based Adaptive Multi-Rate Narrow-Band plugin
+
+GST_PLUGIN= amrnb
+DIST= ugly
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-amrwbdec/Makefile b/audio/gstreamer1-plugins-amrwbdec/Makefile
new file mode 100644
index 000000000000..16ca74769856
--- /dev/null
+++ b/audio/gstreamer1-plugins-amrwbdec/Makefile
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+PKGNAMESUFFIX= 1-plugins-amrwbdec
+
+COMMENT= Gstreamer OpenCore based Adaptive Multi-Rate Wide-Band Decoder plugin
+
+GST_PLUGIN= amrwb
+DIST= ugly
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-cdparanoia/Makefile b/audio/gstreamer1-plugins-cdparanoia/Makefile
new file mode 100644
index 000000000000..b6db5390dfc8
--- /dev/null
+++ b/audio/gstreamer1-plugins-cdparanoia/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer CDDA extraction (aka audio ripping) plugin
+
+GST_PLUGIN= cdparanoia
+DIST= base
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-celt/Makefile b/audio/gstreamer1-plugins-celt/Makefile
new file mode 100644
index 000000000000..86c4ca7ad921
--- /dev/null
+++ b/audio/gstreamer1-plugins-celt/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer celt plugin
+
+GST_PLUGIN= celt
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-faac/Makefile b/audio/gstreamer1-plugins-faac/Makefile
new file mode 100644
index 000000000000..02fb5733f92d
--- /dev/null
+++ b/audio/gstreamer1-plugins-faac/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer MPEG-2 and MPEG-4 AAC encoder plugin
+
+GST_PLUGIN= faac
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-faad/Makefile b/audio/gstreamer1-plugins-faad/Makefile
new file mode 100644
index 000000000000..8bc4a9be70a9
--- /dev/null
+++ b/audio/gstreamer1-plugins-faad/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer MPEG-2 and MPEG-4 AAC decoder plugin
+
+GST_PLUGIN= faad
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-flac/Makefile b/audio/gstreamer1-plugins-flac/Makefile
new file mode 100644
index 000000000000..32c266fdd22a
--- /dev/null
+++ b/audio/gstreamer1-plugins-flac/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer free lossless audio encoder/decoder plugin
+
+GST_PLUGIN= flac
+DIST= good
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-flite/Makefile b/audio/gstreamer1-plugins-flite/Makefile
new file mode 100644
index 000000000000..9668cf960a40
--- /dev/null
+++ b/audio/gstreamer1-plugins-flite/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer flite run-time speech synthesis engine plugin
+
+GST_PLUGIN= flite
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-gme/Makefile b/audio/gstreamer1-plugins-gme/Makefile
new file mode 100644
index 000000000000..538deb08fdae
--- /dev/null
+++ b/audio/gstreamer1-plugins-gme/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer gme plugin
+
+GST_PLUGIN= gme
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-gsm/Makefile b/audio/gstreamer1-plugins-gsm/Makefile
new file mode 100644
index 000000000000..bd12b0e89580
--- /dev/null
+++ b/audio/gstreamer1-plugins-gsm/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer gsm encoding/decoding plugin
+
+GST_PLUGIN= gsm
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-jack/Makefile b/audio/gstreamer1-plugins-jack/Makefile
new file mode 100644
index 000000000000..f83f8ca4b91b
--- /dev/null
+++ b/audio/gstreamer1-plugins-jack/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer low-latency audio server plugin
+
+GST_PLUGIN= jack
+DIST= good
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-lame/Makefile b/audio/gstreamer1-plugins-lame/Makefile
new file mode 100644
index 000000000000..2acfcc012a94
--- /dev/null
+++ b/audio/gstreamer1-plugins-lame/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer mp3 encode plugin
+
+GST_PLUGIN= lame
+DIST= ugly
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-mad/Makefile b/audio/gstreamer1-plugins-mad/Makefile
new file mode 100644
index 000000000000..b1d6ec73fa9b
--- /dev/null
+++ b/audio/gstreamer1-plugins-mad/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer mp3 decoder plugin
+
+GST_PLUGIN= mad
+DIST= ugly
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-modplug/Makefile b/audio/gstreamer1-plugins-modplug/Makefile
new file mode 100644
index 000000000000..77e06c33ab9a
--- /dev/null
+++ b/audio/gstreamer1-plugins-modplug/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer modplug plugin
+
+GST_PLUGIN= modplug
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-ogg/Makefile b/audio/gstreamer1-plugins-ogg/Makefile
new file mode 100644
index 000000000000..d072013cc22b
--- /dev/null
+++ b/audio/gstreamer1-plugins-ogg/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer Ogg bitstream plugin
+
+GST_PLUGIN= ogg
+DIST= base
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-opus/Makefile b/audio/gstreamer1-plugins-opus/Makefile
new file mode 100644
index 000000000000..f8080177e474
--- /dev/null
+++ b/audio/gstreamer1-plugins-opus/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer Opus audio encoder/decoder plugin
+
+GST_PLUGIN= opus
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-shout2/Makefile b/audio/gstreamer1-plugins-shout2/Makefile
new file mode 100644
index 000000000000..bbd80d4c11e3
--- /dev/null
+++ b/audio/gstreamer1-plugins-shout2/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer icecast plugin
+
+GST_PLUGIN= shout2
+DIST= good
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-sidplay/Makefile b/audio/gstreamer1-plugins-sidplay/Makefile
new file mode 100644
index 000000000000..34ceef01da44
--- /dev/null
+++ b/audio/gstreamer1-plugins-sidplay/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer Commodore SID decoder plugin
+
+GST_PLUGIN= sidplay
+DIST= ugly
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-soundtouch/Makefile b/audio/gstreamer1-plugins-soundtouch/Makefile
new file mode 100644
index 000000000000..e47e9b95084a
--- /dev/null
+++ b/audio/gstreamer1-plugins-soundtouch/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= GStreamer soundtouch plugin
+
+GST_PLUGIN= soundtouch
+DIST= bad
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-speex/Makefile b/audio/gstreamer1-plugins-speex/Makefile
new file mode 100644
index 000000000000..3645d07e676d
--- /dev/null
+++ b/audio/gstreamer1-plugins-speex/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer speex voice plugin
+
+GST_PLUGIN= speex
+DIST= good
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-taglib/Makefile b/audio/gstreamer1-plugins-taglib/Makefile
new file mode 100644
index 000000000000..affe2063feea
--- /dev/null
+++ b/audio/gstreamer1-plugins-taglib/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer taglib plugin
+
+GST_PLUGIN= taglib
+DIST= good
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-twolame/Makefile b/audio/gstreamer1-plugins-twolame/Makefile
new file mode 100644
index 000000000000..7703d2435d69
--- /dev/null
+++ b/audio/gstreamer1-plugins-twolame/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer High-quality free MP2 encoder plugin
+
+GST_PLUGIN= twolame
+DIST= ugly
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-vorbis/Makefile b/audio/gstreamer1-plugins-vorbis/Makefile
new file mode 100644
index 000000000000..d247bf880775
--- /dev/null
+++ b/audio/gstreamer1-plugins-vorbis/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer vorbis encoder/decoder plugin
+
+GST_PLUGIN= vorbis
+DIST= base
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"
diff --git a/audio/gstreamer1-plugins-wavpack/Makefile b/audio/gstreamer1-plugins-wavpack/Makefile
new file mode 100644
index 000000000000..34b2fe9212e6
--- /dev/null
+++ b/audio/gstreamer1-plugins-wavpack/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+PORTREVISION= 0
+CATEGORIES= audio
+
+COMMENT= Gstreamer wavpack plugin
+
+GST_PLUGIN= wavpack
+DIST= good
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins
+
+.include "${MASTERDIR}/Makefile"