1fc509c591
Update gccmakedep to 1.0.3. Update imake to 1.0.7. Update libpciaccess to 0.13.3. Update libdrm to 2.4.60. Update bitmap to 1.0.8. Update fstobdf to 1.0.6. Update iceauth to 1.0.7. Update libXdmcp to 1.1.2. Update libXp to 1.0.3. Update libXvMC to 1.0.9. Update libXxf86vm to 1.1.4. Update libxshmfence to 1.2. Update randrproto to 1.4.1. Update rgb to 1.0.6. Update sessreg to 1.1.0. Update xcb-util-cursor to 0.1.2. Update xedit to 1.2.2. Update xkbcomp to 1.3.0. Update xkeyboard-config to 2.14. Update xproto to 7.0.27. Update xf86-input-mouse to 1.9.1. Update xf86-input-synaptics to 1.8.2. Update xf86-video-i710 to 1.3.5. Update xf86-video-mga to 1.6.4. Update xf86-video-tdfx to 1.4.6. Update xf86-video-vmware to 13.1.0. Update bdftopcf to 1.0.5. Update font-util to 1.3.1. Update fslsfonts to 1.0.5. Update mkfontscale to 1.1.2. Update showfont to 1.0.5. Update xfs to 1.1.4. Update xfsinfo to 1.0.5. Remove :keepla from USES=libtool for X libraries in bsd.xorg.mk, and bump all affected ports. PR: 199400 Obtained from: Xorg-devel repo
46 lines
1.3 KiB
Makefile
46 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:2,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>
|