diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2007-06-07 14:00:05 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2007-06-07 14:00:05 +0000 |
commit | eb4975532fd8fe8d6af635097f3ece18fe8afc0f (patch) | |
tree | be2c973e27e2765dac0d3ed1b80be145dbd25722 /audio | |
parent | - Update to 2.3.17 (diff) |
- Add gstreamer-plugins-mp3
Gstreamer Plugins Mp3 decoder meta-port
Notes
Notes:
svn path=/head/; revision=193011
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/gstreamer-plugins-mp3/Makefile | 40 | ||||
-rw-r--r-- | audio/gstreamer-plugins-mp3/pkg-descr | 1 |
3 files changed, 42 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index e03b30e86b6a..e1774075a62d 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -229,6 +229,7 @@ SUBDIR += gstreamer-plugins-lame SUBDIR += gstreamer-plugins-mad SUBDIR += gstreamer-plugins-moodbar + SUBDIR += gstreamer-plugins-mp3 SUBDIR += gstreamer-plugins-musepack SUBDIR += gstreamer-plugins-musicbrainz SUBDIR += gstreamer-plugins-ogg diff --git a/audio/gstreamer-plugins-mp3/Makefile b/audio/gstreamer-plugins-mp3/Makefile new file mode 100644 index 000000000000..7202aec9fb14 --- /dev/null +++ b/audio/gstreamer-plugins-mp3/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: gstreamer-plugins-mp3 +# Date created: 2007-06-07 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gstreamer-plugins +PORTVERSION= 0.10.0 +CATEGORIES= audio +MASTER_SITES= # empty +PKGNAMESUFFIX= -mp3 +DISTFILES= # empty +EXTRACT_ONLY= # empty + +MAINTAINER= multimedia@FreeBSD.org +COMMENT= Gstreamer Plugins Mp3 decoder meta-port + +NO_BUILD= yes +WANT_GSTREAMER= yes +OPTIONS= MAD "Use MAD Mp3" On \ + FLUENDO "Use Fluendo Mp3" Off + +.include <bsd.port.pre.mk> + +.if !defined(WITH_MAD) && !defined(WITH_FLUENDO) +WITH_MAD= yes +.endif + +.if defined(WITH_MAD) +USE_GSTREAMER+= mad +.endif + +.if defined(WITH_FLUENDO) +USE_GSTREAMER+= fluendo-mp3 +.endif + +do-install: + +.include <bsd.port.post.mk> diff --git a/audio/gstreamer-plugins-mp3/pkg-descr b/audio/gstreamer-plugins-mp3/pkg-descr new file mode 100644 index 000000000000..08e9a3094575 --- /dev/null +++ b/audio/gstreamer-plugins-mp3/pkg-descr @@ -0,0 +1 @@ +Gstreamer Plugins Mp3 decoder meta-port |