From owner-svn-ports-head@FreeBSD.ORG Sat Oct 6 22:54:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 41E30106568B; Sat, 6 Oct 2012 22:54:39 +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 2C2598FC16; Sat, 6 Oct 2012 22:54:39 +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 q96Msd3A058675; Sat, 6 Oct 2012 22:54:39 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q96Mscnd058673; Sat, 6 Oct 2012 22:54:38 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210062254.q96Mscnd058673@svn.freebsd.org> From: Eitan Adler Date: Sat, 6 Oct 2012 22:54:38 +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: r305422 - head/x11/xfce4-verve-plugin X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 22:54:39 -0000 Author: eadler Date: Sat Oct 6 22:54:38 2012 New Revision: 305422 URL: http://svn.freebsd.org/changeset/ports/305422 Log: Convert to OptionsNG Modified: head/x11/xfce4-verve-plugin/Makefile Modified: head/x11/xfce4-verve-plugin/Makefile ============================================================================== --- head/x11/xfce4-verve-plugin/Makefile Sat Oct 6 22:54:03 2012 (r305421) +++ head/x11/xfce4-verve-plugin/Makefile Sat Oct 6 22:54:38 2012 (r305422) @@ -1,9 +1,5 @@ -# New ports collection makefile for: verve plugin for xfce4 -# Date created: 11 September 2007 -# Whom: Martin Wilke (miwi@FreeBSD.org) -# +# Created by: Martin Wilke (miwi@FreeBSD.org) # $FreeBSD$ -# PORTNAME= verve-plugin PORTVERSION= 1.0.0 @@ -29,12 +25,11 @@ USE_XFCE= configenv panel libexo libgui CONFIGURE_ARGS= --disable-debug -OPTIONS= NLS "Enable Native Language Support" on \ - DBUS "Enable D-BUS support" on +OPTIONS_DEFINE= NLS DBUS .include -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes CONFIGURE_ARGS+=--enable-nls PLIST_SUB+= NLS="" @@ -43,7 +38,7 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif -.if !defined(WITHOUT_DBUS) +.if ${PORT_OPTIONS:MDBUS} LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib CONFIGURE_ARGS+=--enable-dbus PLIST_SUB+= DBUS=""