diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-06-29 12:42:04 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-06-29 12:42:04 +0000 |
commit | 222461c302e52a3848555e999ecc7a10f98b278e (patch) | |
tree | 4fad0f8d9c328a570a49371daf5f0078d7075272 /math/pgcalc | |
parent | b6155c63444b79580e9bd13727472581d1ed66f1 (diff) |
Convert to new option framework
Notes
Notes:
svn path=/head/; revision=300215
Diffstat (limited to 'math/pgcalc')
-rw-r--r-- | math/pgcalc/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/math/pgcalc/Makefile b/math/pgcalc/Makefile index 232eb595af60..e6b3a0ad8efd 100644 --- a/math/pgcalc/Makefile +++ b/math/pgcalc/Makefile @@ -22,11 +22,12 @@ INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS= ARTS "Build with aRts support" on +OPTIONS_DEFINE= ARTS +OPTIONS_DEFAULT= ARTS -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if !defined(WITH_ARTS) +.if ${PORT_OPTIONS:MARTS} CONFIGURE_ARGS+= --without-arts .endif @@ -43,4 +44,4 @@ post-extract: @${REINPLACE_CMD} -e 's,SkinPath =,& QString("${PREFIX}/share/apps/${PORTNAME}/skins/"); //,' \ ${WRKSRC}/src/pgcalc.cpp -.include <bsd.port.post.mk> +.include <bsd.port.mk> |