7887c684ad
are the latest stable releases. * Update vala to the newest stable release 0.18.1, also update a few ports in the gtk/gnome stack. * The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles. * Remove pkg-config run depends from glib20 and freetype2. This doesn't eliminate pkg-config run dependency completely, a second phase is needed and is planned. * Support for .:run. and .:build. for USE_GNOME components was added. Currently only libxml2 and libxslt support this mechanism. * Updates of the telepathy stack and empathy. * Trim makefile headers, convert ports to new options, trim off library versions for some ports. * Fix other ports so they build with the new glib version. Thanks to miwi and crees for helping out with some exp-runs. Approved by: portmgr (miwi & bapt) Obtained from: gnome team repo
66 lines
2 KiB
Makefile
66 lines
2 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/x11-fonts/fontconfig/Makefile,v 1.29 2011/04/30 20:43:31 mezz Exp $
|
|
|
|
PORTNAME= fontconfig
|
|
PORTVERSION= 2.9.0
|
|
PORTREVISION?= 0
|
|
PORTEPOCH?= 1
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://www.freedesktop.org/software/fontconfig/release/
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= An XML-based font configuration API for X Windows
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \
|
|
expat:${PORTSDIR}/textproc/expat2
|
|
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GNOME= gnomehack ltverhack
|
|
CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc/fonts \
|
|
--with-expat-includes=${LOCALBASE}/include \
|
|
--with-expat-lib=${LOCALBASE}/lib \
|
|
--with-default-fonts=${PREFIX}/share/fonts \
|
|
--with-add-fonts=${LOCALBASE}/lib/X11/fonts \
|
|
--with-cache-dir=/var/db/fontconfig \
|
|
--disable-docs
|
|
MAKE_ENV= LC_ALL=C
|
|
MAKE_JOBS_SAFE= yes
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
|
|
MAN1= fc-cache.1 fc-cat.1 fc-list.1 fc-match.1 fc-query.1 fc-scan.1
|
|
MAN5= fonts-conf.5
|
|
PORTDOCS= fontconfig-user.html fontconfig-user.pdf fontconfig-user.txt
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${DOCSDIR}
|
|
.endif
|
|
${INSTALL_MAN} ${MAN5:S|^|${WRKSRC}/doc/|} ${PREFIX}/man/man5
|
|
.for manpage in ${MAN1}
|
|
${INSTALL_MAN} ${FILESDIR}/${manpage} ${PREFIX}/man/man1
|
|
.endfor
|
|
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|%%LOCALBASE%%|${LOCALBASE}|' < ${FILESDIR}/pkg-install.in \
|
|
> ${PKGINSTALL}
|
|
.if !defined(PACKAGE_BUILDING)
|
|
-@${LDCONFIG} -m ${PREFIX}/lib
|
|
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|
|
|
|
.endif
|