Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Feb 2017 13:19:46 +0000 (UTC)
From:      Joseph Mingrone <jrm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r434162 - in head/x11-fonts/font-manager: . files
Message-ID:  <201702151319.v1FDJk1w043535@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jrm
Date: Wed Feb 15 13:19:45 2017
New Revision: 434162
URL: https://svnweb.freebsd.org/changeset/ports/434162

Log:
  x11-fonts/font-manager: Switch from using Google Code to GitHub
  
  Also
   - New MAINTAINER, portmaster@bsdforge.com
   - Update LIB_DEPENDS
   - Redo patches to silence portlint warnings
   - Add NLS_USES_OFF=gettext-runtime, because even when configured using
     --disable-nls, fontutils.so is still linked to lib/libintl.so.x.
  
  PR:		216988
  Submitted by:	portmaster@bsdforge.com (new maintainer)
  Approved by:	swills (mentor, implicit)

Modified:
  head/x11-fonts/font-manager/Makefile
  head/x11-fonts/font-manager/distinfo
  head/x11-fonts/font-manager/files/patch-Makefile.in
  head/x11-fonts/font-manager/files/patch-src-constants.py.in
  head/x11-fonts/font-manager/files/patch-src_lib_fm-fontutils.c
  head/x11-fonts/font-manager/pkg-descr

Modified: head/x11-fonts/font-manager/Makefile
==============================================================================
--- head/x11-fonts/font-manager/Makefile	Wed Feb 15 12:52:20 2017	(r434161)
+++ head/x11-fonts/font-manager/Makefile	Wed Feb 15 13:19:45 2017	(r434162)
@@ -5,20 +5,23 @@ PORTNAME=	font-manager
 PORTVERSION=	0.5.7
 PORTREVISION=	6
 CATEGORIES=	x11-fonts gnome
-MASTER_SITES=	GOOGLE_CODE
 
-MAINTAINER=	lichray@gmail.com
+MAINTAINER=	portmaster@bsdforge.com
 COMMENT=	Font management application for the GNOME desktop
 
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN=		Unfetchable (google code has gone away)
-
-LIB_DEPENDS=	libsqlite3.so:databases/sqlite3
+LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
+		libfreetype.so:print/freetype2 \
+		libsqlite3.so:databases/sqlite3
 RUN_DEPENDS=	${PYTHON_SITELIBDIR}/libxml2.py:textproc/py-libxml2 \
 		${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3
 
+USE_GITHUB=	yes
+GH_ACCOUNT=	FontManager
+GH_PROJECT=	master
+
 USE_GNOME=	pygtk2
 GNU_CONFIGURE=	yes
 USES=		gmake pkgconfig python:2 tar:bzip2
@@ -27,9 +30,13 @@ PORTDATA=	*
 
 OPTIONS_DEFINE=	NLS
 
-OPTIONS_SUB=		yes
+OPTIONS_SUB=	yes
 
-NLS_USES=		gettext
 NLS_CONFIGURE_ENABLE=	nls
+NLS_USES=	gettext
+NLS_USES_OFF=	gettext-runtime
+
+pre-configure:
+	@${CHMOD} 0544 ${WRKSRC}/configure ${WRKSRC}/po/pogen.sh
 
 .include <bsd.port.mk>

Modified: head/x11-fonts/font-manager/distinfo
==============================================================================
--- head/x11-fonts/font-manager/distinfo	Wed Feb 15 12:52:20 2017	(r434161)
+++ head/x11-fonts/font-manager/distinfo	Wed Feb 15 13:19:45 2017	(r434162)
@@ -1,2 +1,3 @@
-SHA256 (font-manager-0.5.7.tar.bz2) = 794a3d98e50ab7e515d8216ad42300c13b0ec13ab972bdf71c3657de4b306228
-SIZE (font-manager-0.5.7.tar.bz2) = 771460
+TIMESTAMP = 1487073947
+SHA256 (FontManager-master-0.5.7_GH0.tar.gz) = a95f65ef2df03a1dd8989e063a717768d6066f8e86ac9f9550f95f234b29adc3
+SIZE (FontManager-master-0.5.7_GH0.tar.gz) = 818484

Modified: head/x11-fonts/font-manager/files/patch-Makefile.in
==============================================================================
--- head/x11-fonts/font-manager/files/patch-Makefile.in	Wed Feb 15 12:52:20 2017	(r434161)
+++ head/x11-fonts/font-manager/files/patch-Makefile.in	Wed Feb 15 13:19:45 2017	(r434162)
@@ -1,5 +1,5 @@
---- Makefile.in.orig	2010-12-20 19:01:26.000000000 -0600
-+++ Makefile.in	2011-03-26 00:38:02.410403185 -0500
+--- Makefile.in.orig	2015-05-29 06:45:34 UTC
++++ Makefile.in
 @@ -552,8 +552,9 @@ compile_po:
  install_mo:
  	for mo in `$(FIND) po -name $(PACKAGE_NAME).mo`; \

Modified: head/x11-fonts/font-manager/files/patch-src-constants.py.in
==============================================================================
--- head/x11-fonts/font-manager/files/patch-src-constants.py.in	Wed Feb 15 12:52:20 2017	(r434161)
+++ head/x11-fonts/font-manager/files/patch-src-constants.py.in	Wed Feb 15 13:19:45 2017	(r434162)
@@ -1,5 +1,5 @@
---- src/constants.py.in.orig	2011-09-25 22:42:09.742559932 -0500
-+++ src/constants.py.in	2011-09-25 22:43:06.091693624 -0500
+--- src/constants.py.in.orig	2015-05-29 06:45:34 UTC
++++ src/constants.py.in
 @@ -51,7 +51,7 @@ import gettext
  try:
      locale.setlocale(locale.LC_ALL, '')

Modified: head/x11-fonts/font-manager/files/patch-src_lib_fm-fontutils.c
==============================================================================
--- head/x11-fonts/font-manager/files/patch-src_lib_fm-fontutils.c	Wed Feb 15 12:52:20 2017	(r434161)
+++ head/x11-fonts/font-manager/files/patch-src_lib_fm-fontutils.c	Wed Feb 15 13:19:45 2017	(r434162)
@@ -1,5 +1,5 @@
---- src/lib/fm-fontutils.c~	2010-12-23 21:48:30.000000000 -0600
-+++ src/lib/fm-fontutils.c	2012-05-30 17:04:54.303401685 -0500
+--- src/lib/fm-fontutils.c.orig	2015-05-29 06:45:34 UTC
++++ src/lib/fm-fontutils.c
 @@ -24,6 +24,7 @@
  #include <glib.h>
  #include <glib/gprintf.h>

Modified: head/x11-fonts/font-manager/pkg-descr
==============================================================================
--- head/x11-fonts/font-manager/pkg-descr	Wed Feb 15 12:52:20 2017	(r434161)
+++ head/x11-fonts/font-manager/pkg-descr	Wed Feb 15 13:19:45 2017	(r434162)
@@ -1,9 +1,9 @@
-Font Manager is not intended to be a professional-grade font management
-solution, but rather a simple application suitable for the needs of most
-desktop users.
+Font Manager is not intended to be a professional-grade
+font management solution, but rather a simple application
+suitable for the needs of most desktop users.
 
-Although designed with the GNOME desktop environment in mind, it should
-work well with most major desktop environments such as Xfce, Enlightenment,
-and even KDE.
+Although designed with the GNOME desktop environment in mind,
+it should work well with most major desktop environments such
+as Xfce, Enlightenment, and even KDE.
 
-WWW: https://code.google.com/p/font-manager/
+WWW: http://fontmanager.github.io/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702151319.v1FDJk1w043535>