mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
37 lines
857 B
Makefile
37 lines
857 B
Makefile
# Created by: Pawel Pekala <pawel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= codequery
|
|
PORTVERSION= 0.21.1
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Code understanding, browsing and search tool
|
|
|
|
LICENSE= MPL20 MIT
|
|
LICENSE_COMB= multi
|
|
|
|
DEPRECATED= Qt4 has been EOL since december 2015
|
|
EXPIRATION_DATE= 2019-03-15
|
|
LICENSE_FILE_MPL20= ${WRKSRC}/LICENSE.md
|
|
LICENSE_FILE_MIT= ${WRKSRC}/querylib/README.txt
|
|
|
|
USES= cmake compiler:c++11-lang ninja qt:4 sqlite
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ruben2020
|
|
|
|
USE_QT= linguisttools_build moc_build rcc_build uic_build \
|
|
corelib gui qmake xml
|
|
|
|
PLIST_FILES= bin/codequery \
|
|
bin/cqmakedb \
|
|
bin/cqsearch
|
|
DESKTOP_ENTRIES="CodeQuery" "" "" "${PORTNAME}" "Development;" ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's,../build/gui/,,' ${WRKSRC}/gui/codequery.qrc
|
|
|
|
.include <bsd.port.mk>
|