Date: Wed, 21 Nov 2012 21:44:17 GMT From: Chris Petrik <c.petrik.sosa@gmail.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/173777: [PATCH] audio/akode optionsng Message-ID: <201211212144.qALLiHcb013337@red.freebsd.org> Resent-Message-ID: <201211212150.qALLo15G036948@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 173777 >Category: ports >Synopsis: [PATCH] audio/akode optionsng >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 21 21:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Chris Petrik >Release: >Organization: na >Environment: >Description: OptionsNg changes >How-To-Repeat: >Fix: Patch attached with submission follows: Index: akode/Makefile =================================================================== --- akode/Makefile (revision 305743) +++ akode/Makefile (working copy) @@ -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,19 +13,19 @@ 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 USE_GCC= any @@ -41,33 +37,33 @@ --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 @@ $$(all_libraries) ${PTHREAD_LIBS}|g' \ ${WRKSRC}/akode/akodeplay/Makefile.in -.include <bsd.port.post.mk> +.include <bsd.port.mk> >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211212144.qALLiHcb013337>