diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-12-13 14:38:34 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-12-13 14:38:34 +0000 |
commit | 47bb54c1cb8adf6884408e35418ec1694d77a213 (patch) | |
tree | 22ed4dc4d0265bda68595da8898a2a89dacc6aa2 /x11/qt5-qtscript/Makefile | |
parent | cc9490e6be309d3a2e0936d4721d867b57b56819 (diff) | |
download | pkgsrc-47bb54c1cb8adf6884408e35418ec1694d77a213.tar.gz |
Import Qt5 5.2.0rc1 packages and qt5 input module from uim
Only tested on NetBSD/amd64 6.99.28.
ToDo:
* inputmethod/qt5-ibus from Qt5 should be created
Diffstat (limited to 'x11/qt5-qtscript/Makefile')
-rw-r--r-- | x11/qt5-qtscript/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/x11/qt5-qtscript/Makefile b/x11/qt5-qtscript/Makefile new file mode 100644 index 00000000000..bb849890ca2 --- /dev/null +++ b/x11/qt5-qtscript/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1 2013/12/13 14:38:36 ryoon Exp $ + +PKGNAME= qt5-qtscript-${QTVERSION} +COMMENT= Qt5 module for script + +.include "../../x11/qt5-qtbase/Makefile.common" + +USE_LIBTOOL= yes + +CONFIGURE_ARGS+= -I${QTDIR}/include -L${QTDIR}/lib + +BUILD_DIRS+= qtscript +MAKE_ENV+= QTDIR=${QTDIR} + +INSTALL_ENV+= INSTALL_ROOT=${DESTDIR} +INSTALLATION_DIRS+= lib/pkgconfig + +post-install: +.for i in Qt5Script.pc Qt5ScriptTools.pc + ${RM} -f ${DESTDIR}${PREFIX}/lib/pkgconfig/${i} && \ + cd ${DESTDIR}${PREFIX}/lib/pkgconfig && \ + ln -s ${QTPREFIX}/lib/pkgconfig/${i} ${i} +.endfor + +.include "../../x11/qt5-qtbase/buildlink3.mk" +.include "../../x11/qt5-qttools/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |