* 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
45 lines
950 B
Makefile
45 lines
950 B
Makefile
# Created by: uyamba@gmail.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qmpdclient
|
|
PORTVERSION= 1.2.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://dump.bitcheese.net/files/
|
|
|
|
MAINTAINER= uyamba@gmail.com
|
|
COMMENT= Easy to use musicpd client written in Qt4
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= qmake tar:bzip2
|
|
USE_QT4= moc_build rcc_build uic_build \
|
|
corelib gui network xml xmlpatterns
|
|
INSTALLS_ICONS= yes
|
|
|
|
OPTIONS_DEFINE= DBUS NLS DEBUG
|
|
|
|
DATADIR= ${PREFIX}/share/QMPDClient
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
OPTIONS_SUB= NLS
|
|
|
|
NLS_USE= QT4=linguisttools_build
|
|
|
|
DBUS_QMAKE_ON= CONFIG+=qdbus
|
|
DBUS_USE= QT4=dbus
|
|
|
|
DEBUG_QMAKE_ON= CONFIG+=debug
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' \
|
|
${WRKSRC}/${PORTNAME}.pro
|
|
@${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' \
|
|
${WRKSRC}/src/notifications_dbus.cpp
|
|
|
|
post-patch-NLS-off:
|
|
@${REINPLACE_CMD} -e '/INSTALLS += translations/d' \
|
|
${WRKSRC}/${PORTNAME}.pro
|
|
|
|
.include <bsd.port.mk>
|