diff options
author | eadler <eadler@FreeBSD.org> | 2012-10-07 06:52:18 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-10-07 06:52:18 +0800 |
commit | bcbd78e2e3ab61c13c71955dbba335cfabc2bd38 (patch) | |
tree | 9b7899d1281c3b4a349b297e803a96370377ae8b /multimedia/xfce4-xmms-plugin | |
parent | 353bc4bba698595c06632592e598c0314c09faa4 (diff) | |
download | freebsd-ports-gnome-bcbd78e2e3ab61c13c71955dbba335cfabc2bd38.tar.gz freebsd-ports-gnome-bcbd78e2e3ab61c13c71955dbba335cfabc2bd38.tar.zst freebsd-ports-gnome-bcbd78e2e3ab61c13c71955dbba335cfabc2bd38.zip |
Convert to OptionsNG
Diffstat (limited to 'multimedia/xfce4-xmms-plugin')
-rw-r--r-- | multimedia/xfce4-xmms-plugin/Makefile | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/multimedia/xfce4-xmms-plugin/Makefile b/multimedia/xfce4-xmms-plugin/Makefile index f985e7cef004..4896624fcbbe 100644 --- a/multimedia/xfce4-xmms-plugin/Makefile +++ b/multimedia/xfce4-xmms-plugin/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: xfce4-xmms-plugin -# Date created: 2004/05/10 -# Whom: Zahemszky, Gábor <Gabor@Zahemszky.HU> -# +# Created by: Zahemszky, Gábor <Gabor@Zahemszky.HU> # $FreeBSD$ -# PORTNAME= xfce4-xmms-plugin PORTVERSION= 0.5.3 @@ -23,21 +19,23 @@ USE_GMAKE= yes USE_GNOME= gtk20 intltool intlhack pango pkgconfig USE_XFCE= configenv libgui libutil panel -OPTIONS= XMMS "Enable xmms support" on \ - BEEP "Enable beep-media-player support" off \ - AUDACIOUS "Enable audacious support" off +OPTIONS_DEFINE= XMMS BEEP AUDACIOUS +OPTIONS_DEFAULT= XMMS +XMMS_DESC= xmms support +BEEP_DESC= beep-media-player support +AUDACIOUS_DESC= audacious support .include <bsd.port.pre.mk> -.if defined(WITH_BEEP) +.if ${PORT_OPTIONS:MBEEP} RUN_DEPENDS+= beep-media-player:${PORTSDIR}/multimedia/beep-media-player .endif -.if defined(WITH_XMMS) +.if ${PORT_OPTIONS:MXMSS} RUN_DEPENDS+= xmms:${PORTSDIR}/multimedia/xmms .endif -.if defined(WITH_AUDACIOUS) +.if ${PORT_OPTIONS:MAUDACIOUS} RUN_DEPENDS+= audacious2:${PORTSDIR}/multimedia/audacious .endif |