mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
Conver to new options.
PR: ports/173777 Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> Approved by: swhetzel@gmail.com (maintainer)
This commit is contained in:
parent
eed4d97c5f
commit
d86447ef54
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=309122
@ -1,9 +1,5 @@
|
||||
# New ports collection makefile for: mpeglib_artsplug
|
||||
# Date created: July 09 2004
|
||||
# Whom: Michael Nottebrock <lofi@FreeBSD.org>
|
||||
#
|
||||
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= akode
|
||||
PORTVERSION= 2.0.2
|
||||
@ -17,18 +13,18 @@ DISTNAME= 30375-${PORTNAME}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= swhetzel@gmail.com
|
||||
COMMENT= Default KDE audio backend
|
||||
|
||||
LICENSE= LGPL20
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
CONFLICTS= kdemultimedia-3.[1-3]*
|
||||
|
||||
OPTIONS= FFMPEG "FFMPEG decoder plugin" off \
|
||||
JACK "Jack output plugin" off \
|
||||
MPC "Monkey's Audio decoder plugin" on \
|
||||
MPEG "MPEG Audio (including mp3) plugin" on \
|
||||
OSS "OSS output plugin" on \
|
||||
RESAMPLER "Resampler processing plugin" on \
|
||||
XIPH "FLAC/Speex/Vorbis decoder plugin" on
|
||||
OPTIONS_DEFINE= FFMPEG JACK MPC MPEG OSS RESAMPLER XIPH
|
||||
OPTIONS_DEFAULT= MPC MPEG OSS RESAMPLER XIP
|
||||
|
||||
MPC_DESC= Monkey's Audio decoder plugin
|
||||
RESAMPLER_DESC= Resampler processing plugin
|
||||
XIPH_DESC= FLAC/Speex/Vorbis decoder plugin
|
||||
|
||||
USE_AUTOTOOLS= libltdl libtool
|
||||
USE_BZIP2= yes
|
||||
@ -41,33 +37,33 @@ CONFIGURE_ARGS+=--program-transform-name= \
|
||||
--with-extra-libs=${LOCALBASE}/lib \
|
||||
--with-extra-includes=${LOCALBASE}/include
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if defined(WITH_FFMPEG)
|
||||
.if ${PORT_OPTIONS:MFFMPEG}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_ffmpeg_decoder.so:${PORTSDIR}/audio/akode-plugins-ffmpeg
|
||||
.endif
|
||||
|
||||
.if defined(WITH_JACK)
|
||||
.if ${PORT_OPTIONS:MJACK}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_jack_sink.so:${PORTSDIR}/audio/akode-plugins-jack
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_MPC)
|
||||
.if ${PORT_OPTIONS:MMPC}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_mpc_decoder.so:${PORTSDIR}/audio/akode-plugins-mpc
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_MPEG)
|
||||
.if ${PORT_OPTIONS:MMPEG}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_mpeg_decoder.so:${PORTSDIR}/audio/akode-plugins-mpeg
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_OSS)
|
||||
.if ${PORT_OPTIONS:MOSS}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_oss_sink.so:${PORTSDIR}/audio/akode-plugins-oss
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_RESAMPLER)
|
||||
.if ${PORT_OPTIONS:MRESAMPLER}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_src_resampler.so:${PORTSDIR}/audio/akode-plugins-resampler
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_XIPH)
|
||||
.if ${PORT_OPTIONS:MXIPH}
|
||||
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_xiph_decoder.so:${PORTSDIR}/audio/akode-plugins-xiph
|
||||
.endif
|
||||
|
||||
@ -78,4 +74,4 @@ post-patch:
|
||||
$$(all_libraries) ${PTHREAD_LIBS}|g' \
|
||||
${WRKSRC}/akode/akodeplay/Makefile.in
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user