blob: c726ab48055be6561d9307f7cc67745a97b80ac4 (
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
|
PORTNAME= gtk-layer-shell
DISTVERSIONPREFIX= v
DISTVERSION= 0.9.2
CATEGORIES= x11-toolkits
MAINTAINER= jbeich@FreeBSD.org
COMMENT= GTK3 library for the Wayland layer-shell protocol
WWW= https://github.com/wmww/gtk-layer-shell
LICENSE= LGPL3+ MIT
LICENSE_COMB= multi
LICENSE_FILE_LGPL3+ = ${WRKSRC}/LICENSE_LGPL.txt
LICENSE_FILE_MIT= ${WRKSRC}/LICENSE_MIT.txt
BUILD_DEPENDS= wayland-protocols>=1.16:graphics/wayland-protocols
LIB_DEPENDS= libwayland-client.so:graphics/wayland
TEST_DEPENDS= evdev-proto>0:devel/evdev-proto
USES= compiler:c11 gnome meson pkgconfig vala:build
USE_GNOME= gtk30 introspection:build
USE_GITHUB= yes
USE_LDCONFIG= yes
GH_ACCOUNT= wmww
PLIST_SUB= VERSION=${PORTVERSION}
OPTIONS_DEFINE= DOCS EXAMPLES
DOCS_BUILD_DEPENDS= gtk-doc>0:textproc/gtk-doc
DOCS_MESON_TRUE= docs
EXAMPLES_MESON_TRUE= examples
pre-configure:
# .if !exists() evaluates too early before gtk3 has a chance to be installed
@if ! pkg-config --exists gdk-wayland-3.0; then \
${ECHO_MSG} "${PKGNAME}: Needs gtk3 with WAYLAND support enabled."; \
${FALSE}; \
fi
pre-test:
@if [ ! -e ${WRKDIR}/.meson_build_tests ]; then \
${RM} ${CONFIGURE_COOKIE} ${BUILD_COOKIE}; \
${MAKE} -C${.CURDIR} build MESON_ARGS="${MESON_ARGS} --reconfigure -Dtests=true"; \
${TOUCH} ${WRKDIR}/.meson_build_tests; \
fi
.include <bsd.port.mk>
|