summaryrefslogtreecommitdiffstats
path: root/x11-fonts/fontconfig/Makefile
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-03-24 13:30:51 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-03-24 13:30:51 +0800
commita6888a2a213b49d671bf658e58428d9a1d342f66 (patch)
tree73b4b8892d2a32df0f24d16b19046bc481baf971 /x11-fonts/fontconfig/Makefile
parenta740241125f843ca61310f787f0eea0d5b40784f (diff)
downloadmarcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.gz
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.bz2
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.lz
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.xz
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.zst
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.zip
Remove these ports now that they have been merged into the FreeBSD ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10818 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-fonts/fontconfig/Makefile')
-rw-r--r--x11-fonts/fontconfig/Makefile78
1 files changed, 0 insertions, 78 deletions
diff --git a/x11-fonts/fontconfig/Makefile b/x11-fonts/fontconfig/Makefile
deleted file mode 100644
index d3d33cf40..000000000
--- a/x11-fonts/fontconfig/Makefile
+++ /dev/null
@@ -1,78 +0,0 @@
-# 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.12 2007/02/02 19:49:43 mezz Exp $
-#
-
-PORTNAME= fontconfig
-PORTVERSION= 2.5.0
-PORTREVISION?= 0
-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}
-USE_LDCONFIG= yes
-USE_AUTOTOOLS= libtool:15
-USE_GNOME= gnomehack gnometarget pkgconfig ltverhack
-CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc/fonts \
- --with-expat-includes=${LOCALBASE}/include \
- --with-expat-lib=${LOCALBASE}/lib \
- --with-default-fonts=${X11BASE}/lib/X11/fonts \
- --with-cache-dir=/var/db/fontconfig \
- --without-add-fonts \
- --disable-docs
-MAKE_ENV= LC_ALL=C
-PKGINSTALL= ${WRKDIR}/pkg-install
-
-MAN1= fc-cache.1 fc-cat.1 fc-list.1 fc-match.1
-MAN5= fonts-conf.5
-PORTDOCS= fontconfig-user.html fontconfig-user.pdf fontconfig-user.txt
-
-.include <bsd.port.pre.mk>
-
-.if exists(${LOCALBASE}/bin/docbook2man)
-USE_DOCBOOK2MAN= yes
-BUILD_DEPENDS+= ${LOCALBASE}/share/sgml/docbook/4.1:${PORTSDIR}/textproc/docbook-410
-.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 !defined(USE_DOCBOOK2MAN)
-.for manpage in ${MAN1}
- ${INSTALL_MAN} ${FILESDIR}/${manpage} ${PREFIX}/man/man1
-.endfor
-.endif
- 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
- @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
-
-.endif
-
-.include <bsd.port.post.mk>
-
-.endif