blob: a2d8cba971eb95ec961493a448599a38b53d8c88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
PORTREVISION= 1
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_MULTI= MP3
OPTIONS_MULTI_MP3= MAD FLUENDO
OPTIONS_DEFAULT= MAD
FLUENDO_DESC= Use Fluendo Mp3 decoder
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMAD}
USE_GSTREAMER+= mad
.endif
.if ${PORT_OPTIONS:MFLUENDO}
USE_GSTREAMER+= fluendo-mp3
.endif
do-install:
.include <bsd.port.mk>
|