svn commit: r336909 - in branches/2014Q1: Keywords Mk x11-fonts/encodings x11-fonts/font-adobe-100dpi x11-fonts/font-adobe-75dpi x11-fonts/font-adobe-utopia-100dpi x11-fonts/font-adobe-utopia-75dpi...

Baptiste Daroussin bapt at FreeBSD.org
Thu Dec 19 14:03:32 UTC 2013


Author: bapt
Date: Thu Dec 19 14:03:22 2013
New Revision: 336909
URL: http://svnweb.freebsd.org/changeset/ports/336909

Log:
  MFH: r336886
  
  Try to fix font handling for xorg fonts when using staging and pkgng.
  This should silence all QAT messages about leftover font files.
  
  Bump portrevision for all affected ports.
  
  Original idea:		bapt

Added:
  branches/2014Q1/Keywords/fc.yaml
     - copied unchanged from r336886, head/Keywords/fc.yaml
  branches/2014Q1/Keywords/fcfontsdir.yaml
     - copied unchanged from r336886, head/Keywords/fcfontsdir.yaml
  branches/2014Q1/Keywords/fontsdir.yaml
     - copied unchanged from r336886, head/Keywords/fontsdir.yaml
Modified:
  branches/2014Q1/Mk/bsd.xorg.mk
  branches/2014Q1/x11-fonts/encodings/Makefile
  branches/2014Q1/x11-fonts/font-adobe-100dpi/Makefile
  branches/2014Q1/x11-fonts/font-adobe-75dpi/Makefile
  branches/2014Q1/x11-fonts/font-adobe-utopia-100dpi/Makefile
  branches/2014Q1/x11-fonts/font-adobe-utopia-75dpi/Makefile
  branches/2014Q1/x11-fonts/font-adobe-utopia-type1/Makefile
  branches/2014Q1/x11-fonts/font-alias/Makefile
  branches/2014Q1/x11-fonts/font-arabic-misc/Makefile
  branches/2014Q1/x11-fonts/font-bh-100dpi/Makefile
  branches/2014Q1/x11-fonts/font-bh-75dpi/Makefile
  branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile
  branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile
  branches/2014Q1/x11-fonts/font-bh-ttf/Makefile
  branches/2014Q1/x11-fonts/font-bh-type1/Makefile
  branches/2014Q1/x11-fonts/font-bitstream-100dpi/Makefile
  branches/2014Q1/x11-fonts/font-bitstream-75dpi/Makefile
  branches/2014Q1/x11-fonts/font-bitstream-speedo/Makefile
  branches/2014Q1/x11-fonts/font-bitstream-type1/Makefile
  branches/2014Q1/x11-fonts/font-cronyx-cyrillic/Makefile
  branches/2014Q1/x11-fonts/font-cursor-misc/Makefile
  branches/2014Q1/x11-fonts/font-daewoo-misc/Makefile
  branches/2014Q1/x11-fonts/font-dec-misc/Makefile
  branches/2014Q1/x11-fonts/font-ibm-type1/Makefile
  branches/2014Q1/x11-fonts/font-isas-misc/Makefile
  branches/2014Q1/x11-fonts/font-jis-misc/Makefile
  branches/2014Q1/x11-fonts/font-micro-misc/Makefile
  branches/2014Q1/x11-fonts/font-misc-cyrillic/Makefile
  branches/2014Q1/x11-fonts/font-misc-ethiopic/Makefile
  branches/2014Q1/x11-fonts/font-misc-meltho/Makefile
  branches/2014Q1/x11-fonts/font-misc-misc/Makefile
  branches/2014Q1/x11-fonts/font-mutt-misc/Makefile
  branches/2014Q1/x11-fonts/font-schumacher-misc/Makefile
  branches/2014Q1/x11-fonts/font-screen-cyrillic/Makefile
  branches/2014Q1/x11-fonts/font-sony-misc/Makefile
  branches/2014Q1/x11-fonts/font-sun-misc/Makefile
  branches/2014Q1/x11-fonts/font-util/Makefile
  branches/2014Q1/x11-fonts/font-winitzki-cyrillic/Makefile
  branches/2014Q1/x11-fonts/font-xfree86-type1/Makefile
Directory Properties:
  branches/2014Q1/   (props changed)

Copied: branches/2014Q1/Keywords/fc.yaml (from r336886, head/Keywords/fc.yaml)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2014Q1/Keywords/fc.yaml	Thu Dec 19 14:03:22 2013	(r336909, copy of r336886, head/Keywords/fc.yaml)
@@ -0,0 +1,9 @@
+# $FreeBSD$
+#
+# MAINTAINER: x11 at FreeBSD.org
+
+actions: [dirrmtry]
+post-install: |
+  fc-cache -s %D/%@ 2>/dev/null || true
+post-deinstall: |
+  fc-cache -s %D/%@ 2>/dev/null || true

Copied: branches/2014Q1/Keywords/fcfontsdir.yaml (from r336886, head/Keywords/fcfontsdir.yaml)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2014Q1/Keywords/fcfontsdir.yaml	Thu Dec 19 14:03:22 2013	(r336909, copy of r336886, head/Keywords/fcfontsdir.yaml)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+#
+# MAINTAINER: x11 at FreeBSD.org
+
+actions: [dirrmtry]
+post-install: |
+  fc-cache -s %D/%@ 2>/dev/null || true
+  mkfontscale %D/%@ 2>/dev/null || true
+  mkfontdir %D/%@ 2>/dev/null || true
+post-deinstall: |
+  fc-cache -s %D/%@ 2>/dev/null || true
+  mkfontscale %D/%@ 2>/dev/null || true
+  if [ -e %D/%@/fonts.scale -a "`stat -f '%%z' %D/%@/fonts.scale 2>/dev/null`" = '2' ]; then
+    rm %D/%@/fonts.scale
+  fi
+  mkfontdir %D/%@ 2>/dev/null || true
+  if [ -e %D/%@/fonts.dir -a "`stat -f '%%z' %D/%@/fonts.dir 2>/dev/null`" = '2' ]; then
+    rm %D/%@/fonts.dir
+  fi

Copied: branches/2014Q1/Keywords/fontsdir.yaml (from r336886, head/Keywords/fontsdir.yaml)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2014Q1/Keywords/fontsdir.yaml	Thu Dec 19 14:03:22 2013	(r336909, copy of r336886, head/Keywords/fontsdir.yaml)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+#
+# MAINTAINER: x11 at FreeBSD.org
+
+actions: [dirrmtry]
+post-install: |
+  mkfontscale %D/%@ 2>/dev/null || true
+  mkfontsdir %D/%@ 2>/dev/null || true
+post-deinstall: |
+  mkfontscale %@ 2>/dev/null || true
+  if [ -e %D/%@/fonts.scale -a "`stat -f '%%z' %D/%@/fonts.scale 2>/dev/null`" = '2' ]; then
+    rm %D/%@/fonts.scale
+  fi
+  mkfontdir %@ 2>/dev/null || true
+  if [ -e %D/%@/fonts.dir -a "`stat -f '%%z' %D/%@§fonts.dir 2>/dev/null`" = '2' ]; then
+    rm %D/%@/fonts.dir
+  fi

Modified: branches/2014Q1/Mk/bsd.xorg.mk
==============================================================================
--- branches/2014Q1/Mk/bsd.xorg.mk	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/Mk/bsd.xorg.mk	Thu Dec 19 14:03:22 2013	(r336909)
@@ -110,6 +110,19 @@ RUN_DEPENDS+=	${LOCALBASE}/bin/mkfontdir
 .  endif
 
 post-install:
+.if defined(WITH_PKGNG)
+.  for _fontdir in ${FONTDIR}
+.    if ${INSTALLS_TTF} == yes && ${NEED_MKFONTFOO} == yes
+		@${ECHO_CMD} "@fcfontsdir lib/X11/fonts/${_fontdir}" >> ${TMPPLIST}
+.    elif ${INSTALLS_TTF} == yes && ${NEED_MKFONTFOO} == no
+		@${ECHO_CMD} "@fc lib/X11/fonts/${_fontdir}" >> ${TMPPLIST}
+.    elif ${NEED_MKFONTFOO} == yes
+		@${ECHO_CMD} "@fontsdir lib/X11/fonts/${_fontdir}" >> ${TMPPLIST}
+.    else
+		@${ECHO_CMD} "@dirrmtry lib/X11/fonts/${_fontdir}" >> ${TMPPLIST}
+.    endif
+.  endfor
+.else
 .  if ${INSTALLS_TTF} == "yes"
 .   for _fontdir in ${FONTDIR}
 	@${ECHO_CMD} "@exec fc-cache -s %D/lib/X11/fonts/${_fontdir} 2>/dev/null || true" >> ${TMPPLIST}
@@ -129,6 +142,7 @@ post-install:
 	@${ECHO_CMD} "@unexec rmdir %D/lib/X11/fonts/${_fontdir} 2>/dev/null || true" >> ${TMPPLIST}
 .  endfor
 . endif
+.endif
 
 . if ${XORG_CAT} == "lib"
 USES+=	pathfix

Modified: branches/2014Q1/x11-fonts/encodings/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/encodings/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/encodings/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -2,6 +2,7 @@
 
 PORTNAME=	encodings
 PORTVERSION=	1.0.4
+PORTREVISION=	
 PORTEPOCH=	1
 CATEGORIES=	x11-fonts
 

Modified: branches/2014Q1/x11-fonts/font-adobe-100dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-adobe-100dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-adobe-100dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-adobe-100dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-adobe-75dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-adobe-75dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-adobe-75dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-adobe-75dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-adobe-utopia-100dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-adobe-utopia-100dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-adobe-utopia-100dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-adobe-utopia-100dpi
 PORTVERSION=	1.0.4
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-adobe-utopia-75dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-adobe-utopia-75dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-adobe-utopia-75dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-adobe-utopia-75dpi
 PORTVERSION=	1.0.4
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-adobe-utopia-type1/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-adobe-utopia-type1/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-adobe-utopia-type1/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-adobe-utopia-type1
 PORTVERSION=	1.0.4
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-alias/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-alias/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-alias/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-alias
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-arabic-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-arabic-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-arabic-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-arabic-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bh-100dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bh-100dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bh-100dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bh-100dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bh-75dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bh-75dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bh-75dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bh-75dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bh-lucidatypewriter-100dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bh-lucidatypewriter-75dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bh-ttf/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bh-ttf/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bh-ttf/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bh-ttf
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bh-type1/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bh-type1/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bh-type1/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bh-type1
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bitstream-100dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bitstream-100dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bitstream-100dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bitstream-100dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bitstream-75dpi/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bitstream-75dpi/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bitstream-75dpi/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bitstream-75dpi
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bitstream-speedo/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bitstream-speedo/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bitstream-speedo/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -2,6 +2,7 @@
 
 PORTNAME=	font-bitstream-speedo
 PORTVERSION=	1.0.2
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-bitstream-type1/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-bitstream-type1/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-bitstream-type1/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-bitstream-type1
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-cronyx-cyrillic/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-cronyx-cyrillic/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-cronyx-cyrillic/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-cronyx-cyrillic
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-cursor-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-cursor-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-cursor-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-cursor-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-daewoo-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-daewoo-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-daewoo-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-daewoo-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-dec-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-dec-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-dec-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-dec-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-ibm-type1/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-ibm-type1/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-ibm-type1/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-ibm-type1
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-isas-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-isas-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-isas-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-isas-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-jis-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-jis-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-jis-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-jis-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-micro-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-micro-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-micro-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-micro-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-misc-cyrillic/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-misc-cyrillic/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-misc-cyrillic/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-misc-cyrillic
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-misc-ethiopic/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-misc-ethiopic/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-misc-ethiopic/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -2,6 +2,7 @@
 
 PORTNAME=	font-misc-ethiopic
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-misc-meltho/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-misc-meltho/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-misc-meltho/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -2,6 +2,7 @@
 
 PORTNAME=	font-misc-meltho
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-misc-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-misc-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-misc-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-misc-misc
 PORTVERSION=	1.1.2
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-mutt-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-mutt-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-mutt-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-mutt-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-schumacher-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-schumacher-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-schumacher-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-schumacher-misc
 PORTVERSION=	1.1.2
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-screen-cyrillic/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-screen-cyrillic/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-screen-cyrillic/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-screen-cyrillic
 PORTVERSION=	1.0.4
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-sony-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-sony-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-sony-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-sony-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-sun-misc/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-sun-misc/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-sun-misc/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-sun-misc
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-util/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-util/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-util/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-util
 PORTVERSION=	1.3.0
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-winitzki-cyrillic/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-winitzki-cyrillic/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-winitzki-cyrillic/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-winitzki-cyrillic
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org

Modified: branches/2014Q1/x11-fonts/font-xfree86-type1/Makefile
==============================================================================
--- branches/2014Q1/x11-fonts/font-xfree86-type1/Makefile	Thu Dec 19 14:02:50 2013	(r336908)
+++ branches/2014Q1/x11-fonts/font-xfree86-type1/Makefile	Thu Dec 19 14:03:22 2013	(r336909)
@@ -3,6 +3,7 @@
 
 PORTNAME=	font-xfree86-type1
 PORTVERSION=	1.0.4
+PORTREVISION=	1
 CATEGORIES=	x11-fonts
 
 MAINTAINER=	x11 at FreeBSD.org


More information about the svn-ports-branches mailing list