diff options
author | anholt <anholt@FreeBSD.org> | 2004-05-08 07:43:07 +0000 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2004-05-08 07:43:07 +0000 |
commit | 9eeafb5a280f45be010cf9133dcce2f776a1af25 (patch) | |
tree | b46ea3314458934db88b1d3624541d6403931fc0 /x11/libICE | |
parent | 7b2b608a7433c91171eb89101454a22a640dca95 (diff) | |
download | FreeBSD-ports-9eeafb5a280f45be010cf9133dcce2f776a1af25.zip FreeBSD-ports-9eeafb5a280f45be010cf9133dcce2f776a1af25.tar.gz |
libICE doesn't link to libX11 directly, but one of its utility headers
does include Xlib.h, so put the x11 dependency back in.
Reported by: kris (bento)
Diffstat (limited to 'x11/libICE')
-rw-r--r-- | x11/libICE/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/x11/libICE/Makefile b/x11/libICE/Makefile index 9da9176..164ec53 100644 --- a/x11/libICE/Makefile +++ b/x11/libICE/Makefile @@ -14,7 +14,8 @@ MASTER_SITES= http://pdx.freedesktop.org/~xlibs/release/ MAINTAINER= x11@FreeBSD.org COMMENT= Inter Client Exchange library for X11 -LIB_PC_DEPENDS= ${X11BASE}/libdata/pkgconfig/xtrans.pc:${PORTSDIR}/x11/libXtrans +LIB_PC_DEPENDS= ${X11BASE}/libdata/pkgconfig/x11.pc:${PORTSDIR}/x11/libX11 \ + ${X11BASE}/libdata/pkgconfig/xtrans.pc:${PORTSDIR}/x11/libXtrans BUILD_DEPENDS= ${X11BASE}/libdata/pkgconfig/xproto.pc:${PORTSDIR}/x11/xproto \ ${LIB_PC_DEPENDS} RUN_DEPENDS= ${LIB_PC_DEPENDS} @@ -27,11 +28,7 @@ MTREE_FILE= /etc/mtree/BSD.x11-4.dist GNU_CONFIGURE= yes USE_GMAKE= yes USE_LIBTOOL_VER=13 -USE_REINPLACE= yes INSTALLS_SHLIB= yes USE_GNOME= gnomehack pkgconfig -post-patch: - ${REINPLACE_CMD} 's|xproto x11|xproto|g' ${WRKSRC}/configure - .include <bsd.port.mk> |