diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-05-29 15:12:39 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-05-29 15:12:39 +0000 |
commit | aae22bea014bf1b7048a77a9944937b4d0e96dc3 (patch) | |
tree | 2031daf074317f41397566cb7dbbc1c341676861 | |
parent | 7e64a460f5fbc350dfefef2f66ccee257c11b0ed (diff) | |
download | ports-aae22bea014bf1b7048a77a9944937b4d0e96dc3.tar.gz ports-aae22bea014bf1b7048a77a9944937b4d0e96dc3.zip |
Notes
-rw-r--r-- | Mk/bsd.options.desc.mk | 6 | ||||
-rw-r--r-- | audio/abcde/Makefile | 35 |
2 files changed, 21 insertions, 20 deletions
diff --git a/Mk/bsd.options.desc.mk b/Mk/bsd.options.desc.mk index 87939b2e9dc4..cf24ac4bcc8f 100644 --- a/Mk/bsd.options.desc.mk +++ b/Mk/bsd.options.desc.mk @@ -5,21 +5,27 @@ Options_Desc_MAINTAINER= ports@FreeBSD.org +AAC_DESC?= Enable support for aac +CDDA2WAV_DESC?= Enable cdda2was CD ripper CURL_DESC?= Enable CURL support +DAGRAB_DESC?= Enable dagrab CD ripper DBUS_DESC?= Enable D-Bus support DOCS_DESC?= Build and install the documentation FLAC_DESC?= Enable support for flac +GOGO_DESC?= Enable gogo mp3 encoder ID3_DESC?= Enable support for id3 tags LDAP_DESC?= Enable LDAP support MAGICK_DESC?= Enable ImageMagick Library MMKEYS_DESC?= Enable multimedia keys support MP4_DESC?= Enable support for mp4 +MPP_DESC?= Enable support for musepack MULTIBYTE_DESC?= Enable multibyte character support MYSQL_DESC?= Enable MySQL backend NLS_DESC?= Build and install the localisation data PCRE_DESC?= Enable regular expressions using libpcre PGSQL_DESC?= Enable PostgreSQL backend PNG_DESC?= Enable PNG support +SPEEX_DESC?= Enable support for speex audio format SSL_DESC?= Enable SSL support STATIC_DESC?= Build static executable/libraries SQLITE_DESC?= Enable SQLite backend diff --git a/audio/abcde/Makefile b/audio/abcde/Makefile index f64489880134..1d38a2fe15ed 100644 --- a/audio/abcde/Makefile +++ b/audio/abcde/Makefile @@ -28,56 +28,51 @@ MAN1= abcde.1 cddb-tool.1 PLIST_FILES= bin/abcde bin/cddb-tool etc/abcde.conf.sample -OPTIONS= CDDA2WAV "support cdda2wav to rip CD" Off \ - DAGRAB "support dagrab to rip IDE CD" Off \ - EJECT "enable auto-eject support" Off \ - GOGO "support gogo MP3 encoder" Off \ - FLAC "support FLAC format" Off \ - AAC "support AAC format" Off \ - MPP "support Musepack format" Off \ - NORMALIZE "enable normalize support" Off \ - REPLAYGAIN "support (vorbis|mp3)gain" Off \ - SPEEX "enable Speex support" Off +OPTIONS_DEFINE= CDDA2WAV DAGRAB EJECT GOGO FLAC MPP NORMALIZE REPLAYGAIN SPEEX + +EJECT_DESC?= Enable auto-eject support +NORMALIZE_DESC?= Enable normalize support +REPLAYGAIN_DESC?= Enable (vorbis|mp3)gain support .include <bsd.port.options.mk> -.if defined(WITH_CDDA2WAV) +.if ${PORT_OPTIONS:MCDDA2WAV} USE_CDRTOOLS= yes .endif -.if defined(WITH_DAGRAB) +.if ${PORT_OPTIONS:MDAGRAB} RUN_DEPENDS+= dagrab:${PORTSDIR}/audio/dagrab .endif -.if defined(WITH_EJECT) +.if ${PORT_OPTIONS:MEJECT} RUN_DEPENDS+= eject:${PORTSDIR}/sysutils/eject .endif -.if defined(WITH_FLAC) +.if ${PORT_OPTIONS:MFLAC} RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac .endif -.if defined(WITH_NORMALIZE) +.if ${PORT_OPTIONS:MNORMALIZE} RUN_DEPENDS+= normalize:${PORTSDIR}/audio/normalize .endif -.if defined(WITH_SPEEX) +.if ${PORT_OPTIONS:MSPEEX} RUN_DEPENDS+= speexenc:${PORTSDIR}/audio/speex .endif -.if defined(WITH_GOGO) +.if ${PORT_OPTIONS:MGOGO} RUN_DEPENDS+= gogo:${PORTSDIR}/audio/gogo .endif -.if defined(WITH_AAC) +.if ${PORT_OPTIONS:MAAC} RUN_DEPENDS+= faac:${PORTSDIR}/audio/faac .endif -.if defined(WITH_MPP) +.if ${PORT_OPTIONS:MMPP} RUN_DEPENDS+= mpcenc:${PORTSDIR}/audio/musepack .endif -.if defined(WITH_REPLAYGAIN) +.if ${PORT_OPTIONS:MREPLAYGAIN} RUN_DEPENDS+= mp3gain:${PORTSDIR}/audio/mp3gain \ vorbisgain:${PORTSDIR}/audio/vorbisgain .endif |