svn commit: r320137 - head/x11-themes/rezlooks

Baptiste Daroussin bapt at FreeBSD.org
Thu Jun 6 22:10:16 UTC 2013


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 at gmail.com
-#
+# Created by: brandoncash at 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 <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MANIMATION}
 CONFIGURE_ARGS+=	--enable-animation
 .endif
 


More information about the svn-ports-all mailing list