diff options
author | kwm <kwm@FreeBSD.org> | 2011-07-30 02:17:28 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2011-07-30 02:17:28 +0800 |
commit | 0be7a0a11e0ef02d83b3b8acc81066c72efd9896 (patch) | |
tree | f6d8ecc0f2b66fec6b8da2c9423b41ca622f34c6 /x11-fonts | |
parent | 055683e55eb062d5b285dd7e751b14096ceb5afe (diff) | |
download | freebsd-ports-gnome-0be7a0a11e0ef02d83b3b8acc81066c72efd9896.tar.gz freebsd-ports-gnome-0be7a0a11e0ef02d83b3b8acc81066c72efd9896.tar.zst freebsd-ports-gnome-0be7a0a11e0ef02d83b3b8acc81066c72efd9896.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.
Diffstat (limited to 'x11-fonts')
-rw-r--r-- | x11-fonts/fontconfig/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11-fonts/fontconfig/Makefile b/x11-fonts/fontconfig/Makefile index 96863db95b4d..41aad3726b29 100644 --- a/x11-fonts/fontconfig/Makefile +++ b/x11-fonts/fontconfig/Makefile @@ -3,12 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/x11-fonts/fontconfig/Makefile,v 1.25 2009/11/22 04:17:16 marcus Exp $ +# $MCom: ports/x11-fonts/fontconfig/Makefile,v 1.29 2011/04/30 20:43:31 mezz Exp $ # PORTNAME= fontconfig PORTVERSION= 2.8.0 -PORTREVISION?= 0 +PORTREVISION?= 1 PORTEPOCH?= 1 CATEGORIES= x11-fonts MASTER_SITES= http://www.freedesktop.org/software/fontconfig/release/ @@ -28,9 +28,9 @@ 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}/lib/X11/fonts \ + --with-default-fonts=${PREFIX}/share/fonts \ + --with-add-fonts=${LOCALBASE}/lib/X11/fonts \ --with-cache-dir=/var/db/fontconfig \ - --without-add-fonts \ --disable-docs MAKE_ENV= LC_ALL=C MAKE_JOBS_SAFE= yes |