blob: 7485023cc08018316c31f80a9225329901d368c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
PORTNAME= vte
PORTVERSION= 0.70.2
PORTREVISION= 3
CATEGORIES= x11-toolkits gnome
MASTER_SITES= GNOME
PKGNAMESUFFIX= 3
DIST_SUBDIR= gnome
PATCH_SITES= https://gitlab.gnome.org/GNOME/vte/-/commit/
PATCHFILES+= 9b41cd101429.patch:-p1 #https://gitlab.gnome.org/GNOME/vte/-/issues/2618
MAINTAINER= gnome@FreeBSD.org
COMMENT= Terminal widget with improved accessibility and I18N support
WWW= https://wiki.gnome.org/Apps/Terminal/VTE
LICENSE= LGPL21
BUILD_DEPENDS= bash:shells/bash
LIB_DEPENDS= libgnutls.so:security/gnutls \
libfribidi.so:converters/fribidi \
libpcre2-8.so:devel/pcre2 \
libicuuc.so:devel/icu
PORTSCOUT= limitw:1,even
USES= compiler:c++11-lang gettext gnome localbase meson \
pkgconfig python:3.6+ tar:xz vala:build
USE_LDCONFIG= yes
USE_GNOME= cairo gdkpixbuf2 gtk30 gtk40 introspection:build
MESON_ARGS= -Da11y=true \
-Dgir=true \
-Dfribidi=true \
-Dgtk3=true \
-Dgtk4=true \
-Dicu=true \
-D_systemd=false \
-Dvapi=true
# shlib version numbers comes from gtk3/4 meson options not from PYTHON_VER
PLIST_SUB= VERSION=2.91 VER3=3.91
BINARY_ALIAS= python3=${PYTHON_CMD}
.include <bsd.port.pre.mk>
.if ${CHOSEN_COMPILER_TYPE} == clang && ${OPSYS} == FreeBSD && ${OSVERSION} < 1300109
CPP= ${LOCALBASE}/bin/clang-cpp${_LLVM_VERSION}
CC= ${LOCALBASE}/bin/clang${_LLVM_VERSION}
CXX= ${LOCALBASE}/bin/clang++${_LLVM_VERSION}
BUILD_DEPENDS+= llvm${_LLVM_VERSION}>=0:devel/llvm${_LLVM_VERSION}
.if ${LLVM_DEFAULT} == 10
_LLVM_VERSION= 11
.else
_LLVM_VERSION= ${LLVM_DEFAULT}
.endif
.endif
.include <bsd.port.post.mk>
|