aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authormakc <makc@FreeBSD.org>2012-07-31 21:25:26 +0800
committermakc <makc@FreeBSD.org>2012-07-31 21:25:26 +0800
commitfc03d91cfdc9e528840e144597dd51c73bd75eac (patch)
tree7168669dad481efe0134b1493910c362b8b2793b /devel
parent7ab7033c1457e604dea3c04c07d25e542c7577d4 (diff)
downloadfreebsd-ports-graphics-fc03d91cfdc9e528840e144597dd51c73bd75eac.tar.gz
freebsd-ports-graphics-fc03d91cfdc9e528840e144597dd51c73bd75eac.tar.zst
freebsd-ports-graphics-fc03d91cfdc9e528840e144597dd51c73bd75eac.zip
Fix typo/logic after conversion to new option framework
Reported by: erwin/pointyhat for textproc/qstardict
Diffstat (limited to 'devel')
-rw-r--r--devel/qdevelop/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/qdevelop/Makefile b/devel/qdevelop/Makefile
index 6c7f00159d4..ced7ad88764 100644
--- a/devel/qdevelop/Makefile
+++ b/devel/qdevelop/Makefile
@@ -70,7 +70,7 @@ post-patch:
${WRKSRC}/plugins/formatting-astyle/astyleplugin.cpp
do-configure:
-.if !${PORT_OPTIONS:MNLS}
+.if ${PORT_OPTIONS:MNLS}
cd ${WRKSRC} && ${QT_LRELEASE} ${QMAKE_PRO}
.endif
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${QMAKE} ${QMAKEFLAGS} ${QMAKE_ARGS}
@@ -78,11 +78,11 @@ do-configure:
post-install:
${STRIP_CMD} ${STRIP_FILES:S,^,${PREFIX}/,}
${INSTALL_DATA} ${WRKSRC}/resources/images/logo.png ${PREFIX}/share/pixmaps/qdevelop.png
-.if !${PORT_OPTIONS:MNLS}
+.if ${PORT_OPTIONS:MNLS}
${MKDIR} ${DATADIR}
cd ${WRKSRC}/resources/translations/ && ${COPYTREE_SHARE} '*.qm' ${DATADIR}/translations
.endif
-.if !${PORT_OPTIONS:MDOCS}
+.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
.for doc in ChangeLog.txt README.txt
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}