aboutsummaryrefslogtreecommitdiffstats
path: root/misc/qt5-examples/Makefile
blob: 8d0a088a13269fa14d327793d0267e8af6aaa058 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Created by: Marie Loise Nolden <nolden@kde.org>
# $FreeBSD$

PORTNAME=   examples
DISTVERSION=    ${QT5_VERSION}
PORTREVISION=   1
CATEGORIES= misc
MASTER_SITES=   QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/single
PKGNAMEPREFIX=  qt5-
DISTNAME=   qt-everywhere-opensource-src-${QT5_VERSION}
DIST_SUBDIR=    KDE/Qt/${QT5_VERSION}

MAINTAINER= kde@FreeBSD.org
COMMENT=    Qt 5 examples sourcecode

NO_ARCH=    yes
NO_BUILD=   yes

USES=       tar:xz
USE_QT5=    #

DESCR=      ${.CURDIR:H:H}/devel/qt5/pkg-descr
DISTINFO_FILE=  ${.CURDIR}/distinfo

EXAMPLESDIR=    ${PREFIX}/share/examples/qt5
# The destination location depends on the values given in
# share/doc/qt5/<module>/examples-manifest.xml. The exception is
# qtscript and qtserialbus where the examples are looked up in $EXAMPLESDIR/.
# This way, the examples show up in qtcreator on the examples front page.

EXAMPLES=   qt3d qtbase qtcanvas3d qtcharts qtconnectivity qtdeclarative \
        qtgamepad qtlocation qtmultimedia qtpurchasing qtquickcontrols \
        qtquickcontrols2 qtscript qtscxml qtsensors qtserialbus \
        qtserialport qtsvg qttools qtvirtualkeyboard qtwebchannel \
        qtwebsockets qtxmlpatterns

.for example in ${EXAMPLES}
EXTRACT_AFTER_ARGS+=    ${DISTNAME}/${example}/examples
.endfor

do-install:
.for example in ${EXAMPLES}
    cd ${WRKSRC}/${example}/examples && \
        ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}
.endfor

.include <bsd.port.mk>