ChangeLog: https://github.com/ruben2020/codequery/blob/master/NEWS.md#version-0230---apr-15-2020 Accumulated changes: * The CMake build directory is now moveable and renameable * Enhancement: Added build option for no GUI * Enhancement: Updated Scintilla to 3.11.2 * Enhancement: Performance improvement by using QString instead of STL String for search through GUI * Enhancement: Added ability to general call function and class inheritance graph through cqsearch CLI * Enhancement: Added ability to filter by path added to cqsearch CLI * Enhancement: Changing query type on the GUI dropbox will start a search immediately * Enhancement: Clicking on a line in the GUI file viewer, will now highlight the appropriate function in the function list * Enhancement: Now Qt5 becomes the default build option in CMakeLists.txt * Enhancement: Windows installer changed from InnoSetup to Wix Toolset, to generate MSI installer * Enhancement: Now Windows installer will be in two versions: Qt5, 64-bit or Qt4, 32-bit * Bugfix: Default font selection for GUI file viewer, instead of becoming empty * Bugfix: Improved annotation accuracy in GUI * Bugfix: Improved brace highlighting in GUI * Bugfix: Fixed the bug where function list next to GUI file viewer doesn't work properly for grep Reported by: portscout
31 lines
721 B
Makefile
31 lines
721 B
Makefile
# Created by: Pawel Pekala <pawel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= codequery
|
|
PORTVERSION= 0.23.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Code understanding, browsing and search tool
|
|
|
|
LICENSE= MPL20 MIT
|
|
LICENSE_COMB= multi
|
|
|
|
LICENSE_FILE_MPL20= ${WRKSRC}/LICENSE.md
|
|
LICENSE_FILE_MIT= ${WRKSRC}/querylib/README.txt
|
|
|
|
USES= cmake:insource compiler:c++11-lang ninja qt:5 sqlite
|
|
USE_QT= concurrent core gui widgets xml \
|
|
buildtools_build linguisttools_build qmake_build
|
|
CMAKE_ON= BUILD_QT5
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ruben2020
|
|
|
|
PLIST_FILES= bin/codequery \
|
|
bin/cqmakedb \
|
|
bin/cqsearch
|
|
DESKTOP_ENTRIES="CodeQuery" "" "" "${PORTNAME}" "Development;" ""
|
|
|
|
.include <bsd.port.mk>
|