From owner-svn-ports-head@FreeBSD.ORG Thu Jun 6 22:10:16 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8AB3EF99; Thu, 6 Jun 2013 22:10:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7D7ED183B; Thu, 6 Jun 2013 22:10:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r56MAGfO022296; Thu, 6 Jun 2013 22:10:16 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r56MAGcQ022294; Thu, 6 Jun 2013 22:10:16 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201306062210.r56MAGcQ022294@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 6 Jun 2013 22:10:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320137 - head/x11-themes/rezlooks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Thu, 06 Jun 2013 22:10:16 -0000 Author: bapt Date: Thu Jun 6 22:10:16 2013 New Revision: 320137 URL: http://svnweb.freebsd.org/changeset/ports/320137 Log: Convert to new options framework Modified: head/x11-themes/rezlooks/Makefile Modified: head/x11-themes/rezlooks/Makefile ============================================================================== --- head/x11-themes/rezlooks/Makefile Thu Jun 6 22:08:41 2013 (r320136) +++ head/x11-themes/rezlooks/Makefile Thu Jun 6 22:10:16 2013 (r320137) @@ -1,9 +1,5 @@ -# New ports collection makefile for: rezlooks -# Date created: 2006-07-02 -# Whom: brandoncash@gmail.com -# +# Created by: brandoncash@gmail.com # $FreeBSD$ -# PORTNAME= rezlooks PORTVERSION= 0.6 @@ -20,9 +16,13 @@ WRKSRC= ${WRKDIR}/rezlooks-${PORTVERSIO GNU_CONFIGURE= yes USE_GNOME= gtk20 -OPTIONS+= ANIMATION "Animation support" On +OPTIONS_DEFINE= ANIMATION +OPTIONS_DEFAULT= ANIMATION +ANIMATION_DESC= Animation support -.if !defined(WITHOUT_ANIMATION) +.include + +.if ${PORT_OPTIONS:MANIMATION} CONFIGURE_ARGS+= --enable-animation .endif