* Update Qt5 to 5.7.1 * Move Qt4 binaries to lib/qt4/bin * Move Qt5 libraries to lib/qt5/lib By moving the libraries we should finally be able to get rid of the inplace upgrade bug (see ports bugs 194088, 195105 and 198720): when Qt5's libraries were lying in /usr/local/lib, which would often get added by pkgconfig to the linker paths via dependencies, the already installed libraries were linked against, instead of the ones that were being built. This forced us to make sure, that -L${WRKSRC}/lib was always coming before -L/usr/local/lib in the linker flags. With this change this should no longer be the case. * Rename some ports to match the rest (foo-qtX -> qtX-foo) * Depend on new port misc/qtchooser [see UPDATING & CHANGES] There are several new Qt5 ports which all have been created by Marie Loise Nolden <nolden@kde.org>. Thanks again. PR: 216797 Exp-Run by: antoine Reviewed by: rakuco, mat, groot_kde.org Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D9213
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# Created by: Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lprof
|
|
PORTVERSION= 20080514
|
|
PORTREVISION= 13
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://mirror.amdmi3.ru/distfiles/ \
|
|
LOCAL/amdmi3
|
|
PKGNAMESUFFIX= -devel
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Open source color profiler
|
|
|
|
LIB_DEPENDS= liblcms.so:graphics/lcms \
|
|
libtiff.so:graphics/tiff \
|
|
libvigraimpex.so:graphics/vigra
|
|
|
|
USES= cmake desktop-file-utils jpeg tar:bzip2
|
|
USE_XORG= x11 xext sm ice xxf86vm
|
|
USE_QT4= corelib gui qt3support svg assistantclient \
|
|
linguisttools_build qmake_build moc_build uic_build rcc_build
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PORTDOCS= *
|
|
PORTDATA= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/asm\/types.h/ d' ${WRKSRC}/src/argyll/spectro/hidio.c
|
|
@${REINPLACE_CMD} -e '/DESTINATION/ s|data/|share/${PORTNAME}/data/|' \
|
|
${WRKSRC}/data/CMakeLists.txt ${WRKSRC}/src/CMakeLists.txt
|
|
# Patch in the correct prefix of the Qt binaries into the sources.
|
|
@${REINPLACE_CMD} -e 's|%%QT_ARCHDIR%%|${QT_ARCHDIR}|g' \
|
|
${WRKSRC}/src/lprofqt/config.cpp
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/data/icons/lprof.png ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
|
|
.include <bsd.port.mk>
|