1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/x11/libxcb/Makefile
Ruslan Makhmatkhanov 32d61e3e2b Allow build libxcb and xcb-proto with python3
Since version 1.11 libxcb successfully builds with pytnon3, so we don't
need to limit python version anymore.

PR:		194748 194749
Submitted by:	rm (myself)
Approved by:	maintainer timeout (6 months+)
2015-07-04 22:14:14 +00:00

47 lines
1.3 KiB
Makefile

# Created by: Ashish Shukla <wahjava@gmail.com>
# $FreeBSD$
PORTNAME= libxcb
PORTVERSION= 1.11
PORTREVISION= 1
CATEGORIES= x11 python
MASTER_SITES= http://xcb.freedesktop.org/dist/
MAINTAINER= x11@FreeBSD.org
COMMENT= The X protocol C-language Binding (XCB) library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= ${LOCALBASE}/lib/libcheck.a:${PORTSDIR}/devel/libcheck \
xcb-proto>=1.9:${PORTSDIR}/x11/xcb-proto \
${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:${PORTSDIR}/devel/libpthread-stubs
RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:${PORTSDIR}/devel/libpthread-stubs
CONFIGURE_ARGS+= --disable-build-docs --without-doxygen --enable-xinput
XORG_CAT= lib
USES= cpe gmake python:build
USE_GNOME= libxslt:build
USE_XORG= xau xdmcp
INSTALL_TARGET= install-strip
CPE_VENDOR= x
OPTIONS_DEFINE= DOCS
.for f in XPROTO_CFLAGS XPROTO_LIBS XDMCP_CFLAGS XDMCP_LIBS NEEDED_CFLAGS NEEDED_LIBS
CONFIGURE_ARGS+=${f}="${${f}}"
.endfor
CONFIGURE_ARGS+=--enable-xkb
NEEDED_CFLAGS= -I${LOCALBASE}/include
NEEDED_LIBS= -L${LOCALBASE}/lib -lXau `pkg-config --libs pthread-stubs`
XDMCP_CFLAGS= -I${LOCALBASE}/include
XDMCP_LIBS= -L${LOCALBASE}/lib -lXdmcp
XPROTO_CFLAGS= -I${LOCALBASE}/include
XPROTO_LIBS= -L${LOCALBASE}/lib
.include <bsd.port.mk>