60 lines
1.5 KiB
Makefile
Raw Normal View History

2019-05-08 01:08:23 +00:00
# $OpenBSD: Makefile,v 1.96 2019/05/08 01:08:23 jasper Exp $
2011-09-26 14:31:33 +00:00
COMMENT= terminal emulation library
GNOME_PROJECT= vte
2019-05-08 01:08:23 +00:00
GNOME_VERSION= 0.56.3
API_V= 2.91
2011-09-26 14:31:33 +00:00
PKGNAME= vte3-${GNOME_VERSION}
2019-05-04 11:26:20 +00:00
SHARED_LIBS += vte-2.91 2.4 # 5400.3
2011-09-26 14:31:33 +00:00
2012-03-23 13:25:00 +00:00
CATEGORIES= devel
2011-09-26 14:31:33 +00:00
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>, \
Antoine Jacoutot <ajacoutot@openbsd.org>
# LGPLv2.1
2011-09-26 14:31:33 +00:00
PERMIT_PACKAGE_CDROM= Yes
2018-04-23 12:48:47 +00:00
WANTLIB += X11 Xcomposite Xcursor Xdamage Xext Xfixes Xi
2019-01-06 12:15:50 +00:00
WANTLIB += Xinerama Xrandr Xrender atk-1.0 atk-bridge-2.0
WANTLIB += c cairo cairo-gobject epoxy expat ffi fontconfig
WANTLIB += freetype gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0
WANTLIB += gmp gnutls gobject-2.0 graphite2 gthread-2.0 gtk-3
WANTLIB += harfbuzz hogweed m nettle p11-kit pango-1.0 pangocairo-1.0
2019-05-04 11:26:20 +00:00
WANTLIB += pangoft2-1.0 pcre pixman-1 png pthread
WANTLIB += tasn1 xcb xcb-render xcb-shm z iconv intl idn2 pcre2-8
2018-04-23 12:48:47 +00:00
WANTLIB += unistring fribidi
WANTLIB += ${COMPILER_LIBCXX}
2017-05-13 15:44:09 +00:00
MODULES= x11/gnome
2015-10-13 10:55:45 +00:00
COMPILER = base-clang ports-gcc
2011-09-26 14:31:33 +00:00
2017-04-18 04:38:15 +00:00
BUILD_DEPENDS= devel/gperf
2014-10-07 15:47:09 +00:00
# src/box_drawing_generate.sh
2017-04-18 04:38:15 +00:00
BUILD_DEPENDS+= shells/bash
2014-10-07 15:47:09 +00:00
2016-11-01 22:19:23 +00:00
LIB_DEPENDS= devel/pcre2>=10.22p0 \
2016-10-31 09:41:02 +00:00
security/gnutls \
2015-04-03 11:26:01 +00:00
x11/gtk+3
2011-09-26 14:31:33 +00:00
MODGNOME_TOOLS= gobject-introspection vala
2011-09-26 14:31:33 +00:00
2012-03-23 13:25:00 +00:00
CONFIGURE_STYLE= gnu
# error: -Bsymbolic-functions requested but not supported by ld
CONFIGURE_ARGS += --disable-Bsymbolic
TEST_DEPENDS= shells/bash
2013-05-14 09:06:39 +00:00
SUBST_VARS += API_V
2012-09-17 08:05:04 +00:00
# XXX: https://bugzilla.gnome.org/show_bug.cgi?id=675987
post-install:
rm -r ${WRKINST}${SYSCONFDIR}/profile.d
2011-09-26 14:31:33 +00:00
.include <bsd.port.mk>