8ed49557f8
pulls in devel/xorg-macros. Convert all ports that depends on xorg-macros to use this USE_XORG. Split up the long XORG_MODULES= list in bsd.xorg.mk to have only one module on each line. Add xorg-macros dependency to xorg-server. Reviewed by: kwm, bapt Obtained from: xorg development repo (partly)
35 lines
856 B
Makefile
35 lines
856 B
Makefile
# Created by: Eric Anholt <anholt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libX11
|
|
PORTVERSION= 1.4.4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= X11 library
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xcb.pc:${PORTSDIR}/x11/libxcb
|
|
RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xcb.pc:${PORTSDIR}/x11/libxcb
|
|
|
|
XORG_CAT= lib
|
|
USE_XORG= bigreqsproto xau xcmiscproto xdmcp xextproto xtrans \
|
|
kbproto:both inputproto xf86bigfontproto xproto:both \
|
|
xorg-macros
|
|
|
|
CONFIGURE_ARGS+= --datadir=${PREFIX}/lib \
|
|
--without-xmlto \
|
|
--disable-specs
|
|
CONFIGURE_ENV+= ac_cv_path_PS2PDF=""
|
|
|
|
.include "${.CURDIR}/manpages"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/test.*-traditional.*;/true;/' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} '/^install-data-am:/,/^$$/ \
|
|
s/install-specDATA//' ${WRKSRC}/nls/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|