a54fb366f8
Changelog: https://github.com/cppit/jucipp/releases/tag/v1.2.4 PR: 219931 Submitted by: Mohammad S. Babaei <info@babaei.net> (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11147
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# Created by: Mohammad S. Babaei <info@babaei.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jucipp
|
|
PORTVERSION= 1.2.4
|
|
DISTVERSIONPREFIX= v
|
|
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
|
|
|
|
LIB_DEPENDS= libaspell.so:textproc/aspell \
|
|
libboost_filesystem.so:devel/boost-libs \
|
|
libgit2.so:devel/libgit2 \
|
|
libclang.so:devel/llvm40
|
|
|
|
USE_GNOME= gdkpixbuf2 gtkmm30 gtksourceviewmm3
|
|
USES= cmake:outsource desktop-file-utils ninja pkgconfig
|
|
INSTALLS_ICONS= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= cppit
|
|
GH_TUPLE= cppit:libclangmm:1ef0424:libclangmm/libclangmm \
|
|
eidheim:tiny-process-library:8025c45:tiny_process_library/tiny-process-library
|
|
|
|
PLIST_FILES= bin/juci \
|
|
share/applications/juci.desktop \
|
|
share/icons/hicolor/scalable/apps/juci.svg
|
|
|
|
post-patch:
|
|
# Make sure that jucipp can find LLVM 4.0
|
|
@${REINPLACE_CMD} 's,[[:<:]]llvm39/\(.*\)[[:>:]],llvm40/\1,g' \
|
|
${WRKSRC}/cmake_modules/FindLibClang.cmake
|
|
|
|
.include <bsd.port.mk>
|