From d86447ef54a6278b8e2020d4fbdd38d008cc56fb Mon Sep 17 00:00:00 2001 From: Wesley Shields Date: Mon, 17 Dec 2012 19:24:44 +0000 Subject: [PATCH] Conver to new options. PR: ports/173777 Submitted by: Chris Petrik Approved by: swhetzel@gmail.com (maintainer) --- audio/akode/Makefile | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/audio/akode/Makefile b/audio/akode/Makefile index 027faef5f7f5..42584945005c 100644 --- a/audio/akode/Makefile +++ b/audio/akode/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: mpeglib_artsplug -# Date created: July 09 2004 -# Whom: Michael Nottebrock -# +# Created by: Michael Nottebrock # $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 +.include -.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 +.include