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
38 lines
1,006 B
Makefile
38 lines
1,006 B
Makefile
# $FreeBSD$
|
|
|
|
# While this port is part of the Qt distribution itself, we do not set
|
|
# QT_DIST=yes because it brings in several patches and targets that are not
|
|
# needed; this port only installs some static files.
|
|
|
|
PORTNAME= qdoc-data
|
|
DISTVERSION= ${QT5_VERSION}
|
|
CATEGORIES= devel textproc
|
|
MASTER_SITES= QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/submodules/
|
|
PKGNAMEPREFIX= qt5-
|
|
DISTNAME= qtbase-everywhere-src-${QT5_VERSION}
|
|
DIST_SUBDIR= KDE/Qt/${QT5_VERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= QDoc configuration files
|
|
|
|
LICENSE= GFDL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.FDL
|
|
|
|
USES= qt:5 tar:xz
|
|
USE_QT= # empty
|
|
|
|
EXTRACT_AFTER_ARGS= --include ${DISTNAME}/LICENSE.FDL \
|
|
--include ${DISTNAME}/doc
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
DESCR= ${.CURDIR:H:H}/devel/qt5/pkg-descr
|
|
DISTINFO_FILE= ${.CURDIR:H:H}/devel/qt5/distinfo
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${QT_DOCDIR} && \
|
|
cd ${WRKSRC}/doc/global && \
|
|
${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/${QT_DOCDIR_REL}/global
|
|
|
|
.include <bsd.port.mk>
|