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
29 lines
596 B
Makefile
29 lines
596 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= qwt
|
|
PORTVERSION= 5.2.3
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= SF
|
|
PKGNAMESUFFIX= 5
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Qt Widgets for Technical Applications
|
|
|
|
USES= gmake qmake qt:4 tar:bzip2
|
|
USE_QT= gui svg moc_build
|
|
USE_LDCONFIG= yes
|
|
PORTSCOUT= limit:^5\.
|
|
|
|
PORTDOCS= *
|
|
PLIST_SUB= SHLIB_VER=${PORTVERSION} \
|
|
SHLIB_SHVER=${PORTVERSION:R}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/man/man3/Qwt* ${STAGEDIR}${PREFIX}/man/man3
|
|
|
|
post-install-DOCS-on:
|
|
(cd ${WRKSRC}/doc/html/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|