summaryrefslogtreecommitdiffstats
path: root/x11-fonts/fontconfig/Makefile
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2011-03-21 04:24:56 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2011-03-21 04:24:56 +0800
commitada049fc6447f22cf6869a3e1a23655eb5b94f77 (patch)
tree96958cbe4878dafad4451e422aa07047af1d8a64 /x11-fonts/fontconfig/Makefile
parent98db670de6c39f7b5ba236849545ef4688efc024 (diff)
downloadmarcuscom-ports-ada049fc6447f22cf6869a3e1a23655eb5b94f77.tar
marcuscom-ports-ada049fc6447f22cf6869a3e1a23655eb5b94f77.tar.gz
marcuscom-ports-ada049fc6447f22cf6869a3e1a23655eb5b94f77.tar.bz2
marcuscom-ports-ada049fc6447f22cf6869a3e1a23655eb5b94f77.tar.lz
marcuscom-ports-ada049fc6447f22cf6869a3e1a23655eb5b94f77.tar.xz
marcuscom-ports-ada049fc6447f22cf6869a3e1a23655eb5b94f77.tar.zst
marcuscom-ports-ada049fc6447f22cf6869a3e1a23655eb5b94f77.zip
Add */share/fonts as default path and change */lib/X11/fonts to add directory,
now it's same as what Linux has and fontconfig's default configuration. There are a few of ports have fonts installed in share/fonts/ and they don't realized about that those fonts don't work at all. Also, reduce add hack in each font ports if they want to install in share/fonts/ by default. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15514 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-fonts/fontconfig/Makefile')
-rw-r--r--x11-fonts/fontconfig/Makefile71
1 files changed, 71 insertions, 0 deletions
diff --git a/x11-fonts/fontconfig/Makefile b/x11-fonts/fontconfig/Makefile
new file mode 100644
index 000000000..540a85f93
--- /dev/null
+++ b/x11-fonts/fontconfig/Makefile
@@ -0,0 +1,71 @@
+# New ports collection makefile for: fontconfig
+# Date created: 06 October 2002
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/x11-fonts/fontconfig/Makefile,v 1.77 2011/01/14 16:59:28 kwm Exp $
+# $MCom: ports/x11-fonts/fontconfig/Makefile,v 1.25 2009/11/22 04:17:16 marcus Exp $
+#
+
+PORTNAME= fontconfig
+PORTVERSION= 2.8.0
+PORTREVISION?= 1
+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.9:${PORTSDIR}/print/freetype2 \
+ expat.6:${PORTSDIR}/textproc/expat2
+
+USE_GMAKE= yes
+USE_LDCONFIG= yes
+USE_AUTOTOOLS= libtool
+USE_GNOME= gnomehack pkgconfig ltverhack
+CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc/fonts \
+ --with-expat-includes=${LOCALBASE}/include \
+ --with-expat-lib=${LOCALBASE}/lib \
+ --with-default-fonts=${LOCALBASE}/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