mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
b1a1d38bf9
From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540
27 lines
592 B
Makefile
27 lines
592 B
Makefile
# Created by: Serguei Okladnikov <oklaspec@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qjsonrpc
|
|
PORTVERSION= 1.0.2
|
|
CATEGORIES= net www devel
|
|
MASTER_SITES= http://bitbucket.org/devonit/qjsonrpc/get/
|
|
DISTNAME= v${PORTVERSION}
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= oklaspec@gmail.com
|
|
COMMENT= C++ Qt based JSON RPC2 library
|
|
|
|
LICENSE= LGPL21
|
|
|
|
USES= qmake qt:4
|
|
USE_QT= moc_build network qtestlib_build rcc_build
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/devonit-qjsonrpc-adefe89b0c6f
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} 's|lib/pkgconfig|libdata/pkgconfig|g' \
|
|
${WRKSRC}/src/Makefile
|
|
|
|
.include <bsd.port.mk>
|