diff options
author | Marius Strobl <marius@FreeBSD.org> | 2005-09-29 13:20:57 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2005-09-29 13:20:57 +0000 |
commit | d3486c0448995c8ac4e828d780e8b9216210cf3f (patch) | |
tree | 1d8147883a802261101f9618460d15364f320357 /x11-fonts/linux-fontconfig/Makefile | |
parent | - Fix build on 5.x (diff) |
Fix a dependency bug that crept in with rev. 1.7, even when using the
currently commented out pkg-install script linux-expat is only a
RUN_DEPENDS rather than a BUILD_DEPENDS so declare it as such instead
of a BUILD_DEPENDS and setting RUN_DEPENDS=${BUILD_DEPENDS}. The latter
caused archivers/rpm and devel/popt to be unnecessarily dragged in as
RUN_DEPENDS (via the included x11-toolkits/linux-gtk/Makefile).
Approved by: netchild
Notes
Notes:
svn path=/head/; revision=143778
Diffstat (limited to '')
-rw-r--r-- | x11-fonts/linux-fontconfig/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/x11-fonts/linux-fontconfig/Makefile b/x11-fonts/linux-fontconfig/Makefile index 99079159cf47..450b36c98971 100644 --- a/x11-fonts/linux-fontconfig/Makefile +++ b/x11-fonts/linux-fontconfig/Makefile @@ -7,15 +7,14 @@ PORTNAME= fontconfig PORTVERSION= 2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-fonts linux MAINTAINER= freebsd-emulation@FreeBSD.org COMMENT= Linux/i386 binary of Fontconfig EXTRACT_DEPENDS=rpm2cpio:${PORTSDIR}/archivers/rpm -BUILD_DEPENDS= ${LINUXBASE}/usr/lib/libexpat.so.0:${PORTSDIR}/textproc/linux-expat -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= ${LINUXBASE}/usr/lib/libexpat.so.0:${PORTSDIR}/textproc/linux-expat USE_REINPLACE= yes BASEVERSION= 9 |