aboutsummaryrefslogtreecommitdiffstats
path: root/x11-fonts
diff options
context:
space:
mode:
authorjbeich <jbeich@FreeBSD.org>2016-07-26 05:10:11 +0800
committerjbeich <jbeich@FreeBSD.org>2016-07-26 05:10:11 +0800
commit3be39aaad41cfdc693385cdfffa73c87c209aade (patch)
treea8182baa03df8a0ac9ff19815ab11fcb32a2a693 /x11-fonts
parent7f7e879228546341df2f63959e5c207a7ca6499b (diff)
downloadfreebsd-ports-gnome-3be39aaad41cfdc693385cdfffa73c87c209aade.tar.gz
freebsd-ports-gnome-3be39aaad41cfdc693385cdfffa73c87c209aade.tar.zst
freebsd-ports-gnome-3be39aaad41cfdc693385cdfffa73c87c209aade.zip
x11-fonts/fontconfig: don't touch user font cache on install
This matches USES=fonts (@fc, @fcfontsdir) behavior. PR: 207263 Submitted by: Tatsuki Makino <tatsuki_makino@hotmail.com> Approved by: maintainer timeout (5 months) MFH: 2016Q3
Diffstat (limited to 'x11-fonts')
-rw-r--r--x11-fonts/fontconfig/Makefile2
-rw-r--r--x11-fonts/fontconfig/files/pkg-install.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/x11-fonts/fontconfig/Makefile b/x11-fonts/fontconfig/Makefile
index 53a513e72c78..38796dce44cb 100644
--- a/x11-fonts/fontconfig/Makefile
+++ b/x11-fonts/fontconfig/Makefile
@@ -3,7 +3,7 @@
PORTNAME= fontconfig
PORTVERSION= 2.11.1
-PORTREVISION?= 2
+PORTREVISION?= 3
PORTEPOCH?= 1
CATEGORIES= x11-fonts
MASTER_SITES= http://www.freedesktop.org/software/fontconfig/release/
diff --git a/x11-fonts/fontconfig/files/pkg-install.in b/x11-fonts/fontconfig/files/pkg-install.in
index e82abb41da5b..4dc92cbbbe33 100644
--- a/x11-fonts/fontconfig/files/pkg-install.in
+++ b/x11-fonts/fontconfig/files/pkg-install.in
@@ -5,6 +5,6 @@ export PATH
if [ "$2" = "POST-INSTALL" ]; then
echo "Running fc-cache to build fontconfig cache..."
- fc-cache -f -v
+ fc-cache -f -s -v
exit 0
fi