mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
8969fc1f64
may have booted the machine without having /usr/X11R6/lib. Thus ldconfig never cached it. This should fix the sprious Error 1 failures when running post-install. Reported by: anholt
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
# New ports collection makefile for: fontconfig
|
|
# Date created: 06 October 2002
|
|
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fontconfig
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://www.fontconfig.org/fontconfig/release/
|
|
DISTNAME= fcpackage.${PORTVERSION:S/./_/}
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= An XML-based font configuration API for X Windows
|
|
|
|
BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig
|
|
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
|
|
expat.4:${PORTSDIR}/textproc/expat2
|
|
RUN_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig
|
|
|
|
USE_GMAKE= yes
|
|
PREFIX?= ${X11BASE}
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_REINPLACE= yes
|
|
CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc/fonts \
|
|
--with-expat=${LOCALBASE} \
|
|
--with-default-fonts=${X11BASE}/lib/X11/fonts
|
|
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/fontconfig
|
|
MAKE_ENV= LC_ALL=C
|
|
|
|
MAN1= fc-cache.1 fc-list.1
|
|
MAN3= fontconfig.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${XFREE86_VERSION} == 3
|
|
MTREE_FILE= /etc/mtree/BSD.x11.dist
|
|
.else
|
|
MTREE_FILE= /etc/mtree/BSD.x11-4.dist
|
|
.endif
|
|
|
|
pre-patch:
|
|
@${REINPLACE_CMD} -e 's|[(]LIBDIR[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/src/fontconfig.man \
|
|
${PREFIX}/man/man3/fontconfig.3
|
|
@${INSTALL_DATA} ${WRKSRC}/fc-cache/fc-cache.man \
|
|
${PREFIX}/man/man1/fc-cache.1
|
|
@${INSTALL_DATA} ${WRKSRC}/fc-list/fc-list.man \
|
|
${PREFIX}/man/man1/fc-list.1
|
|
.if !defined(PACKAGE_BUILDING)
|
|
@${LDCONFIG} -m ${PREFIX}/lib
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|