mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
fe337af49c
This is a minor update. While doing the update, I tried to pull in fixes from PR 240548 -- those were submitted upstream years ago, landed upstream, then removed again upstream in favor of fdwalk(), which might end up in in FreeBSD eventually. The fdwalk() call applies FD_CLOEXEC to all the file descriptors -- the original patch from the PR called closefrom(), but doing **that** makes consumers of vte3 (e.g. roxterm) hang / close. So just updating, not dealing with the issue of the fallback fdwalk() implementation being clunky. PR: 240548
43 lines
902 B
Makefile
43 lines
902 B
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
|
|
PORTNAME= vte
|
|
PORTVERSION= 0.64.1
|
|
CATEGORIES= x11-toolkits gnome
|
|
MASTER_SITES= GNOME
|
|
PKGNAMESUFFIX= 3
|
|
DIST_SUBDIR= gnome
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Terminal widget with improved accessibility and I18N support
|
|
|
|
LICENSE= LGPL21
|
|
|
|
BUILD_DEPENDS= vapigen:lang/vala \
|
|
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
|
|
USE_LDCONFIG= yes
|
|
USE_GNOME= cairo gdkpixbuf2 gtk30 introspection:build
|
|
|
|
MESON_ARGS= -Da11y=true \
|
|
-Dgir=true \
|
|
-Dfribidi=true \
|
|
-Dgtk3=true \
|
|
-Dgtk4=false \
|
|
-Dicu=true \
|
|
-D_systemd=false \
|
|
-Dvapi=true
|
|
|
|
PLIST_SUB= VERSION=2.91
|
|
|
|
BINARY_ALIAS= python3=${PYTHON_CMD}
|
|
|
|
.include <bsd.port.mk>
|