diff options
author | bapt <bapt@FreeBSD.org> | 2013-03-22 01:32:34 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-03-22 01:32:34 +0800 |
commit | b79f053a9a198175366f97533f6c47236fa506c7 (patch) | |
tree | f16cf02a99cfd14adff3dd81db12a4115df6fe18 /audio/normalize | |
parent | c58f2a61cc77c8ad12e2259fbabfac71bc279c0a (diff) | |
download | freebsd-ports-gnome-b79f053a9a198175366f97533f6c47236fa506c7.tar.gz freebsd-ports-gnome-b79f053a9a198175366f97533f6c47236fa506c7.tar.zst freebsd-ports-gnome-b79f053a9a198175366f97533f6c47236fa506c7.zip |
Convert to new options framework left un converted ports in a* categories
While here trim headers
Convert some gnomehack to pathfix
Convert some pkgconfig to USE_PKGCONFIG=build
Diffstat (limited to 'audio/normalize')
-rw-r--r-- | audio/normalize/Makefile | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/audio/normalize/Makefile b/audio/normalize/Makefile index 7450b75cc615..2cf36c2480c1 100644 --- a/audio/normalize/Makefile +++ b/audio/normalize/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: normalize -# Date created: 31 January 2001 -# Whom: George Reid <greid@ukug.uk.freebsd.org> -# +# Created by: George Reid <greid@ukug.uk.freebsd.org> # $FreeBSD$ -# PORTNAME= normalize PORTVERSION= 0.7.7 @@ -24,14 +20,13 @@ LDFLAGS+= -L${LOCALBASE}/lib MAN1= normalize.1 normalize-mp3.1 -OPTIONS= XMMS "Build XMMS plugin" off \ - MP3 "MP3 support" on \ - OGG "OGG support" off \ - FLAG "FLAC support" off +OPTIONS_DEFINE= XMMS MP3 OGG FLAC NLS +OPTIONS_DEFAULT= MP3 +XMMS_DESC= XMMS plugin -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_XMMS) +.if ${PORT_OPTIONS:MXMMS} LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms PLIST_SUB+= XMMS="" .else @@ -39,20 +34,20 @@ CONFIGURE_ARGS+=--disable-xmms PLIST_SUB+= XMMS="@comment " .endif -.if defined(WITH_MP3) +.if ${PORT_OPTIONS:MMP3} RUN_DEPENDS+= madplay:${PORTSDIR}/audio/madplay \ lame:${PORTSDIR}/audio/lame .endif -.if defined(WITH_OGG) +.if ${PORT_OPTIONS:MOGG} RUN_DEPENDS+= oggdec:${PORTSDIR}/audio/vorbis-tools .endif -.if defined(WITH_FLAC) +.if ${PORT_OPTIONS:MFLAC} RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac .endif -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" .else @@ -60,4 +55,4 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |