Date: Wed, 30 May 2018 06:33:30 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471119 - head/audio/abgate-lv2 Message-ID: <201805300633.w4U6XUMV051491@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Wed May 30 06:33:30 2018 New Revision: 471119 URL: https://svnweb.freebsd.org/changeset/ports/471119 Log: audio/abgate-lv2: Switch to Qt5 The project has officially switched to Qt5 in the last revision, but old qmake was still accidentally used. Now this is fixed. Modified: head/audio/abgate-lv2/Makefile Modified: head/audio/abgate-lv2/Makefile ============================================================================== --- head/audio/abgate-lv2/Makefile Wed May 30 06:14:06 2018 (r471118) +++ head/audio/abgate-lv2/Makefile Wed May 30 06:33:30 2018 (r471119) @@ -3,6 +3,7 @@ PORTNAME= abGate DISTVERSIONPREFIX= v DISTVERSION= 1.1.9 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -lv2 @@ -18,7 +19,8 @@ USES= gmake pkgconfig USE_GITHUB= yes GH_ACCOUNT= antanasbruzas USE_CXXSTD= c++11 -USE_QT4= corelib gui moc_build rcc_build qmake_build uic_build +USE_QT5= core gui widgets buildtools_build qmake_build +USE_GL= gl USE_GNOME= atkmm gtk20 gtkmm24 libsigc++20 USE_LDCONFIG= yes @@ -28,7 +30,7 @@ post-patch: s|g++|$$(CXX)|; \ s|CPPFLAGS|CXXFLAGS|; \ s| -g -O3||; \ - s|cd abGateQt; qmake; make|cd abGateQt; qmake \&\& $$(MAKE)|' \ + s|cd abGateQt; qmake; make|cd abGateQt; $(QMAKE) \&\& $$(MAKE)|' \ ${WRKSRC}/Makefile @${REINPLACE_CMD} -E ' \ s|^QMAKE_CXXFLAGS (.*)|QMAKE_CXXFLAGS = ${CXXFLAGS}|; \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805300633.w4U6XUMV051491>