c2dd4d2e2d
The area51 repository features commits by Alonso Schaich, avilla, fluffy, jhale, makc and rakuco. Common changes: - Trim Makefile header - Convert to new option framework - Add/improve desktop entries - Remove upstreamed patches Mk/bsd.qt.mk: - Set QMAKESPEC at late stage (to fix potential problem if USE_GCC is used) [1] devel/qmake: - Fix crash due to off-by one error [2] multimedia/qt4-phonon*: - Deprecate in favour of multimedia/phonon* www/qt4-webkit: - Make dependence on GStreamer optional [3] devel/qtcreator: - Enable qml-designer in devel/qtcreator (requires privite Qt headers) [4] Reported by: avg via irc [1] Submitted by: avg via maillist [2] PR: ports/175644 [3] Submitted by: danfe [3] PR: ports/169809 [4] Reported by: tcb <tcberner at gmail.com> [4]
25 lines
491 B
Makefile
25 lines
491 B
Makefile
# Created by: lofi@freebsd.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= doc
|
|
DISTVERSION= ${QT4_VERSION}
|
|
CATEGORIES?= misc
|
|
PKGNAMEPREFIX= qt4-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Multiplatform C++ application framework
|
|
|
|
USE_QT4= # empty
|
|
QT_DIST= yes
|
|
NO_BUILD= yes
|
|
|
|
EXTRACT_AFTER_ARGS=| ${TAR} -xf - '${DISTNAME}/doc'
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/qt4
|
|
|
|
do-install:
|
|
${MKDIR} ${DOCSDIR} && \
|
|
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${DOCSDIR} && \
|
|
${COPYTREE_SHARE} qch ${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|