diff options
author | makc <makc@FreeBSD.org> | 2012-04-20 06:35:36 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2012-04-20 06:35:36 +0800 |
commit | 4d1463bfabcba92797dae098a78e6e23c8a775b7 (patch) | |
tree | 8f8675e32eb6ad523c91bab4a3af9130826580b9 /math/qwtplot3d-qt4 | |
parent | 2ad06735b7460613686b5cbc040e2fd842102d68 (diff) | |
download | freebsd-ports-gnome-4d1463bfabcba92797dae098a78e6e23c8a775b7.tar.gz freebsd-ports-gnome-4d1463bfabcba92797dae098a78e6e23c8a775b7.tar.zst freebsd-ports-gnome-4d1463bfabcba92797dae098a78e6e23c8a775b7.zip |
Don't install *.orig files to unbreak build on pointyhat [1]
Use INSTALL_LIB to install library
Reported by: pav [1]
Diffstat (limited to 'math/qwtplot3d-qt4')
-rw-r--r-- | math/qwtplot3d-qt4/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/math/qwtplot3d-qt4/Makefile b/math/qwtplot3d-qt4/Makefile index 5cef16ebdbf3..31c907668961 100644 --- a/math/qwtplot3d-qt4/Makefile +++ b/math/qwtplot3d-qt4/Makefile @@ -36,8 +36,10 @@ pre-build: s|^LINK .*|LINK=${CXX}|; \ s|^\(INCPATH .*=\)|\1 -Iinclude|;' Makefile do-install: - (cd ${WRKSRC}/include/ && ${COPYTREE_SHARE} \* ${PREFIX}/include/qwtplot3d-qt4) - ${INSTALL_PROGRAM} ${WRKSRC}/lib/libqwtplot3d-qt4.so.${PORTVERSION} ${PREFIX}/lib + ${MKDIR} ${PREFIX}/include/qwtplot3d-qt4 + ${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/include/qwtplot3d-qt4 + ${MKDIR} ${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/lib/libqwtplot3d-qt4.so.${PORTVERSION} ${PREFIX}/lib ${LN} -fs ${PREFIX}/lib/libqwtplot3d-qt4.so.${PORTVERSION} ${PREFIX}/lib/libqwtplot3d-qt4.so.0 ${LN} -fs ${PREFIX}/lib/libqwtplot3d-qt4.so.${PORTVERSION} ${PREFIX}/lib/libqwtplot3d-qt4.so |