47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# Created by: kwm@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
# NOTE
|
|
# Changes made by kwm to use kevent instead of epoll
|
|
# are still in place. However, since libinput depends
|
|
# on libepoll-shim the simplest to do was to have Wayland
|
|
# also use it. Currently build will fail if epoll-shim
|
|
# is not available but can be built without epoll-shim
|
|
# if EPOLLSHIM_LIBS is cleared (configure.ac)
|
|
#
|
|
# TODO: Add condition for this in configure
|
|
#
|
|
# If we want to build Wayland with kwm's kevent patches
|
|
# and use epoll-shim for libinput we have to change it
|
|
# so that Wayland ignore epoll headers installed by
|
|
# epoll-shim.
|
|
# Maybe best is to use epoll-shim if it is good enough
|
|
# and keep diff with upstream minimal.
|
|
|
|
PORTNAME= wayland
|
|
PORTVERSION= 1.12.0
|
|
CATEGORIES= graphics wayland
|
|
MASTER_SITES= http://wayland.freedesktop.org/releases/
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= Wayland composite "server"
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libexpat.so:textproc/expat2 \
|
|
libffi.so:devel/libffi \
|
|
libepoll-shim.so:devel/libepoll-shim
|
|
|
|
CFLAGS+= "-I${LOCALBASE}/include/libepoll-shim"
|
|
|
|
WITH_DEBUG= 1
|
|
|
|
USES= autoreconf gmake libtool localbase pathfix pkgconfig tar:xz
|
|
USE_GNOME= libxslt:build
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-documentation
|
|
INSTALL_TARGET= install-strip
|
|
|
|
.include <bsd.port.mk>
|