diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-07 06:10:16 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-07 06:10:16 +0800 |
commit | 078e16e0d5267769d3c2fdbb0b78f853fed2b0a6 (patch) | |
tree | 62fadd304c798aea88a9f772d027bedc766a0273 /x11-themes/rezlooks | |
parent | 2e9ae8abd9a6d7cf5ab8f051f45021174b099017 (diff) | |
download | freebsd-ports-gnome-078e16e0d5267769d3c2fdbb0b78f853fed2b0a6.tar.gz freebsd-ports-gnome-078e16e0d5267769d3c2fdbb0b78f853fed2b0a6.tar.zst freebsd-ports-gnome-078e16e0d5267769d3c2fdbb0b78f853fed2b0a6.zip |
Convert to new options framework
Diffstat (limited to 'x11-themes/rezlooks')
-rw-r--r-- | x11-themes/rezlooks/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/x11-themes/rezlooks/Makefile b/x11-themes/rezlooks/Makefile index e1a21cd0ed4e..215370d66e3b 100644 --- a/x11-themes/rezlooks/Makefile +++ b/x11-themes/rezlooks/Makefile @@ -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-${PORTVERSION} 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 |