mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
313c099ad9
From ChangeLog: https://gitlab.com/cppit/jucipp/-/releases/v1.6.0 New features: * Added Go To Method for file types supported by (Universal) ctags * Added Find Pattern that uses grep to find given patterns * Added markdown parsing for tooltips Cleanups, bugfixes and other improvements: * Replaced some deprecated gtkmm functions * Corrected bold markings for ctags results * Made improvements to finding C/C++ system header paths * Removed deprecated --harmony flag when running standalone JavaScript files * Prettier is now used to style format markdown and YAML files * Various fixes for FreeBSD * Structured bindings in C++ are now supported * Improved C/C++ tooltips, for instance showing correct const qualifier * Language client: fixed didChange notification when test document sync is full * Fixed crash on MacOS due to buggy boost::filesystem::canonical * Symbols and emojis no longer considered word characters when spellchecking PR: 246347 Submitted by: info@babaei.net (maintainer)
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# Created by: Mohammad S. Babaei <info@babaei.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jucipp
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.6.0
|
|
CATEGORIES= editors
|
|
|
|
MAINTAINER= info@babaei.net
|
|
COMMENT= Lightweight C++-IDE with support for C++11, C++14 and C++17
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT}
|
|
LIB_DEPENDS= libaspell.so:textproc/aspell \
|
|
libboost_filesystem.so:devel/boost-libs \
|
|
libgit2.so:devel/libgit2
|
|
RUN_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT}
|
|
|
|
USES= cmake compiler:c++14-lang desktop-file-utils gnome pkgconfig
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= cppit
|
|
GL_COMMIT= 22b7c68c9f740f5db1c93c699068568fc87b3a07
|
|
GL_TUPLE= cppit:libclangmm:a0316826f7f0c91949c6e11376fd4e92e39a008c:libclangmm/lib/libclangmm \
|
|
eidheim:tiny-process-library:a6773276efdbc322f1abb0159301f5502647eb52:tinyprocesslibrary/lib/tiny-process-library
|
|
USE_GNOME= gdkpixbuf2 gtkmm30 gtksourceviewmm3
|
|
INSTALLS_ICONS= yes
|
|
|
|
CMAKE_ARGS= -DCMAKE_INCLUDE_PATH=${LOCALBASE}/llvm${LLVM_DEFAULT}/include \
|
|
-DCMAKE_LIBRARY_PATH=${LOCALBASE}/llvm${LLVM_DEFAULT}/lib
|
|
|
|
PLIST_FILES= bin/juci \
|
|
share/applications/juci.desktop \
|
|
share/icons/hicolor/scalable/apps/juci.svg
|
|
|
|
.include <bsd.port.mk>
|