[Midnightbsd-cvs] mports: mports/audio: add mp3 support
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Wed Dec 5 23:41:31 EST 2007
Log Message:
-----------
add mp3 support
Modified Files:
--------------
mports/audio:
Makefile (r1.50 -> r1.51)
Added Files:
-----------
mports/audio/gstreamer-plugins-mp3:
Makefile (r1.1)
pkg-descr (r1.1)
-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/cvs/mports/audio/Makefile,v
retrieving revision 1.50
retrieving revision 1.51
diff -L audio/Makefile -L audio/Makefile -u -r1.50 -r1.51
--- audio/Makefile
+++ audio/Makefile
@@ -26,6 +26,7 @@
SUBDIR += gstreamer-plugins-cdparanoia
SUBDIR += gstreamer-plugins-esound
SUBDIR += gstreamer-plugins-mad
+ SUBDIR += gstreamer-plugins-mp3
SUBDIR += gstreamer-plugins-ogg
SUBDIR += gstreamer-plugins-vorbis
SUBDIR += jack
--- /dev/null
+++ audio/gstreamer-plugins-mp3/pkg-descr
@@ -0,0 +1 @@
+Gstreamer Plugins Mp3 decoder meta-port
--- /dev/null
+++ audio/gstreamer-plugins-mp3/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: gstreamer-plugins-mp3
+# Date created: 23 Nov 2007
+# Whom: Lucas Holt <luke at midnightbsd.org>
+#
+# $MidnightBSD: mports/audio/gstreamer-plugins-mp3/Makefile,v 1.1 2007/12/06 04:41:28 laffer1 Exp $
+#
+
+PORTNAME= gstreamer-plugins
+PORTVERSION= 0.10.0
+CATEGORIES= audio
+MASTER_SITES= # empty
+PKGNAMESUFFIX= -mp3
+DISTFILES= # empty
+EXTRACT_ONLY= # empty
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= Gstreamer Plugins Mp3 decoder meta-port
+LICENSE= restricted
+
+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>
More information about the Midnightbsd-cvs
mailing list