diff options
author | wiz <wiz@pkgsrc.org> | 2017-10-04 20:37:40 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2017-10-04 20:37:40 +0000 |
commit | f8bb0ec804b47c6d77b04694ff325e02c71374a3 (patch) | |
tree | 53b4fef10b3bcf181dd0623f44d17e89be58f17f /chat | |
parent | d24c9aff8c7543c8b91a269ecaca471bbc3cf7ba (diff) | |
download | pkgsrc-f8bb0ec804b47c6d77b04694ff325e02c71374a3.tar.gz |
swift: switch to building using its own scons
scons-3.x is too new for this and needs too many fixes.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/swift/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chat/swift/Makefile b/chat/swift/Makefile index 2ba8f3ceb04..d7988ccd641 100644 --- a/chat/swift/Makefile +++ b/chat/swift/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2017/09/18 09:53:12 maya Exp $ +# $NetBSD: Makefile,v 1.30 2017/10/04 20:37:40 wiz Exp $ DISTNAME= swift-3.0 PKGREVISION= 16 @@ -10,7 +10,9 @@ HOMEPAGE= http://swift.im/ COMMENT= Swift XMPP Client LICENSE= gnu-gpl-v3 -DEPENDS+= scons>=1.3:../../devel/scons +# would be nicer to build with pkgsrc version, but +# swift-3.0 does not build with scons>=3 +#DEPENDS+= scons>=1.3:../../devel/scons USE_LANGUAGES= c c++11 USE_TOOLS+= pkg-config @@ -34,11 +36,11 @@ do-configure: ${ECHO} "allow_warnings=\"true\"" >> config.py ; do-build: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/scons Swift + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./scons Swift do-install: cd ${WRKSRC} && \ - ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/scons \ + ${SETENV} ${MAKE_ENV} ./scons \ SWIFT_INSTALLDIR=${DESTDIR}/${PREFIX} ${DESTDIR}/${PREFIX} ${INSTALL_DATA} ${WRKSRC}/Swift/Packaging/Debian/debian/swift-im.1 \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 |