From owner-svn-ports-all@FreeBSD.ORG Sat Oct 6 22:52:19 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18791106564A; Sat, 6 Oct 2012 22:52:19 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 030FA8FC14; Sat, 6 Oct 2012 22:52:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q96MqI6w058069; Sat, 6 Oct 2012 22:52:18 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q96MqIBK058067; Sat, 6 Oct 2012 22:52:18 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210062252.q96MqIBK058067@svn.freebsd.org> From: Eitan Adler Date: Sat, 6 Oct 2012 22:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305417 - head/multimedia/xfce4-xmms-plugin X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 22:52:19 -0000 Author: eadler Date: Sat Oct 6 22:52:18 2012 New Revision: 305417 URL: http://svn.freebsd.org/changeset/ports/305417 Log: Convert to OptionsNG Modified: head/multimedia/xfce4-xmms-plugin/Makefile Modified: head/multimedia/xfce4-xmms-plugin/Makefile ============================================================================== --- head/multimedia/xfce4-xmms-plugin/Makefile Sat Oct 6 22:51:32 2012 (r305416) +++ head/multimedia/xfce4-xmms-plugin/Makefile Sat Oct 6 22:52:18 2012 (r305417) @@ -1,9 +1,5 @@ -# New ports collection makefile for: xfce4-xmms-plugin -# Date created: 2004/05/10 -# Whom: Zahemszky, Gábor -# +# Created by: Zahemszky, Gábor # $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 -.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