1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00
freebsd-ports/x11/libxcb/Makefile
Ashish SHUKLA f04858bda6 - Exclude Python 3.x from USE_PYTHON_BUILD as it fails to build with Python 3.x
PR:		ports/154882
Submitted by:	sunpoet
Approved by:	pgj (mentor, implicit)
2011-02-22 05:25:57 +00:00

59 lines
1.6 KiB
Makefile

# New ports collection makefile for: libxcb
# Date Created: 2006-08-23
# Whom: Ashish Shukla <wahjava@gmail.com>
#
# $FreeBSD$
#
PORTNAME= libxcb
PORTVERSION= 1.7
CATEGORIES= x11 python
MASTER_SITES= http://xcb.freedesktop.org/dist/
MAINTAINER= ashish@FreeBSD.org
COMMENT= The X protocol C-language Binding (XCB) library
BUILD_DEPENDS= ${LOCALBASE}/lib/libcheck.a:${PORTSDIR}/devel/libcheck \
xsltproc:${PORTSDIR}/textproc/libxslt \
${LOCALBASE}/libdata/pkgconfig/xcb-proto.pc:${PORTSDIR}/x11/xcb-proto \
xcb-proto>=1.6:${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
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
USE_BZIP2= yes
USE_GNOME= gnomehack
USE_GMAKE= yes
USE_LDCONFIG= yes
USE_XORG= xau xdmcp
USE_PYTHON_BUILD= 2.5-2.7
GNU_CONFIGURE= yes
.for f in XPROTO_CFLAGS XPROTO_LIBS XDMCP_CFLAGS XDMCP_LIBS NEEDED_CFLAGS NEEDED_LIBS
CONFIGURE_ARGS+=${f}="${${f}}"
.endfor
CONFIGURE_ENV= LIBS="`pkg-config --libs pthread-stubs`"
NEEDED_CFLAGS= -I${LOCALBASE}/include
NEEDED_LIBS= -L${LOCALBASE}/lib -lXau ${PTHREAD_STUBS_LIBS}
XDMCP_CFLAGS= -I${LOCALBASE}/include
XDMCP_LIBS= -L${LOCALBASE}/lib -lXdmcp
XPROTO_CFLAGS= -I${LOCALBASE}/include
XPROTO_LIBS= -L${LOCALBASE}/lib
post-install:
.if !defined(NOPORTDOCS)
${MAKE} -C ${WRKSRC}/doc ${INSTALL_TARGET}
.endif
@${ECHO_MSG} ''
@${CAT} ${PKGMESSAGE}
@${ECHO_MSG} ''
.include <bsd.port.mk>