diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2012-07-27 11:03:38 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2012-07-27 11:03:38 +0000 |
commit | 52e8b487f6dc73b0d0baafc955c59e83ab33c41a (patch) | |
tree | 167ee4bd8c4cd737246cf4e2c40f36e42042084e /math/speedcrunch | |
parent | dbe27c5fd4471209e8b77eecbae08f3a2ad57040 (diff) | |
download | ports-52e8b487f6dc73b0d0baafc955c59e83ab33c41a.tar.gz ports-52e8b487f6dc73b0d0baafc955c59e83ab33c41a.zip |
Notes
Diffstat (limited to 'math/speedcrunch')
-rw-r--r-- | math/speedcrunch/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/math/speedcrunch/Makefile b/math/speedcrunch/Makefile index 1f6e21966282..b6eee279f036 100644 --- a/math/speedcrunch/Makefile +++ b/math/speedcrunch/Makefile @@ -23,7 +23,9 @@ MAKE_JOBS_SAFE= yes LRELEASE_CMD= ${LOCALBASE}/bin/lrelease-qt4 LRELEASE_ARGS= -compress -silent -.if !defined(WITHOUT_NLS) +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} USE_QT4+= linguist PLIST_SUB+= NLS="" .else @@ -31,7 +33,7 @@ PLIST_SUB+= NLS="@comment " .endif pre-configure: -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} cd ${WRKSRC}/src/i18n && ${LRELEASE_CMD} ${LRELEASE_ARGS} *.ts .else ${REINPLACE_CMD} -e '/speedcrunch_TRANSLATIONS/d' ${WRKSRC}/src/CMakeLists.txt |