ddae4e92d8
Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
PORTNAME= liblastfm
|
|
DISTVERSION= 1.0.9-5
|
|
PORTREVISION= 2
|
|
DISTVERSIONSUFFIX= -g4433165
|
|
CATEGORIES= audio
|
|
PKGNAMESUFFIX= -qt5
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Qt C++ library for the Last.fm webservices
|
|
WWW= https://github.com/lastfm/liblastfm
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cmake compiler:c++11-lang pkgconfig qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= lastfm
|
|
USE_LDCONFIG= yes
|
|
USE_QT= core dbus network sql xml \
|
|
buildtools:build qmake:build
|
|
CMAKE_OFF= BUILD_WITH_QT4
|
|
QTVER_SUFFIX= 5
|
|
|
|
PLIST_SUB= QTVER_SUFFIX="${QTVER_SUFFIX}"
|
|
|
|
OPTIONS_DEFINE= FINGERPRINT TEST
|
|
OPTIONS_DEFAULT= FINGERPRINT
|
|
OPTIONS_SUB= yes
|
|
|
|
FINGERPRINT_DESC= Build the lastfm-fingerprint library
|
|
FINGERPRINT_LIB_DEPENDS=libsamplerate.so:audio/libsamplerate \
|
|
libfftw3f.so:math/fftw3-float
|
|
FINGERPRINT_CMAKE_BOOL= BUILD_FINGERPRINT
|
|
# We only need fftw3.h from math/fftw3; no need to install
|
|
FINGERPRINT_BUILD_DEPENDS= ${NONEXISTENT}:math/fftw3:patch
|
|
FINGERPRINT_CMAKE_ON= -DLIBFFTW3_INCLUDE_DIR:PATH=`${MAKE} -C ${PORTSDIR}/math/fftw3 -VWRKSRC`/api
|
|
|
|
TEST_USE= QT=testlib:build
|
|
TEST_CMAKE_BOOL= BUILD_TESTS
|
|
TEST_TEST_TARGET= test
|
|
|
|
.include <bsd.port.mk>
|