7f86966102
Incorrect: (before) ================================ # cd /usr/ports/x11-toolkits/pango # make -V MTREE_FILE /etc/mtree/BSD.x11-4.dist # make PREFIX=/tmp/foo -V MTREE_FILE /etc/mtree/BSD.local.dist <-- Here... ================================ Correct: (after) ================================ # cd /usr/ports/x11-toolkits/pango # make -V MTREE_FILE /etc/mtree/BSD.x11-4.dist # make PREFIX=/tmp/foo -V MTREE_FILE /etc/mtree/BSD.x11-4.dist <-- Here... ================================
82 lines
2.3 KiB
Makefile
82 lines
2.3 KiB
Makefile
# New ports collection makefile for: fontconfig
|
|
# Date created: 06 October 2002
|
|
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/x11-fonts/fontconfig/Makefile,v 1.3 2005/08/26 04:03:55 marcus Exp $
|
|
#
|
|
|
|
PORTNAME= fontconfig
|
|
PORTVERSION= 2.3.2
|
|
PORTREVISION?= 5
|
|
PORTEPOCH?= 1
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://fontconfig.org/release/
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= An XML-based font configuration API for X Windows
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
|
|
expat.6:${PORTSDIR}/textproc/expat2
|
|
|
|
USE_GMAKE= yes
|
|
PREFIX?= ${X11BASE}
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gnomehack gnometarget pkgconfig
|
|
CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc/fonts \
|
|
--with-expat-includes=${LOCALBASE}/include \
|
|
--with-expat-lib=${LOCALBASE}/lib \
|
|
--with-default-fonts=${X11BASE}/lib/X11/fonts \
|
|
--without-add-fonts \
|
|
--disable-docs
|
|
CONFIGURE_ENV= HASDOCBOOK=no
|
|
MAKE_ENV= LC_ALL=C
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
PKGDEINSTALL= ${PKGINSTALL}
|
|
|
|
MAN1= fc-match.1
|
|
MAN5= fonts-conf.5
|
|
PORTDOCS= fontconfig-user.html fontconfig-user.pdf fontconfig-user.txt
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_CJK)
|
|
PATCH_SITES+= http://lwj-hinet.myweb.hinet.net/ \
|
|
ftp://local-distfiles.freebsd.org.cn/pub/china-ports/hamigua/ \
|
|
http://bsdchat.com/dist/firefly-cjk-patchset/
|
|
PATCHFILES+= cjk-fontconfig-2.3.2-20051217.patch.gz
|
|
PATCH_DIST_STRIP+= -p1
|
|
.endif
|
|
|
|
.if ${X_WINDOW_SYSTEM:L} == xfree86-3
|
|
MTREE_FILE= /etc/mtree/BSD.x11.dist
|
|
.else
|
|
MTREE_FILE= /etc/mtree/BSD.x11-4.dist
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${DOCSDIR}
|
|
.endif
|
|
${INSTALL_MAN} ${MAN5:S|^|${WRKSRC}/doc/|} ${PREFIX}/man/man5
|
|
if [ ! -f ${PREFIX}/etc/fonts/fonts.conf ]; then \
|
|
${INSTALL_DATA} ${WRKSRC}/fonts.conf ${PREFIX}/etc/fonts/fonts.conf; \
|
|
${INSTALL_DATA} ${WRKSRC}/fonts.conf ${PREFIX}/etc/fonts/fonts.conf.default; \
|
|
else \
|
|
${INSTALL_DATA} ${WRKSRC}/fonts.conf ${PREFIX}/etc/fonts/fonts.conf.default; \
|
|
fi
|
|
@${SED} -e 's|%%PREFIX%%|${PREFIX}| ; \
|
|
s|%%X11BASE%%|${X11BASE}|' < ${FILESDIR}/pkg-install.in \
|
|
> ${PKGINSTALL}
|
|
.if !defined(PACKAGE_BUILDING)
|
|
@${LDCONFIG} -m ${PREFIX}/lib
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|
|
|
|
.endif
|