Date: Mon, 10 Nov 2014 19:33:37 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372410 - head/deskutils/griffith Message-ID: <201411101933.sAAJXb5a039017@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Mon Nov 10 19:33:36 2014 New Revision: 372410 URL: https://svnweb.freebsd.org/changeset/ports/372410 QAT: https://qat.redports.org/buildarchive/r372410/ Log: deskutils/griffith: Set LXML option by default This port is unmaintained. The referenced PR indicates that LXML dependency is not actually optional and run-time files if it's not installed. If true, it should be installed unconditionally, but as a half-measure, I'll just switch the option to fix it for standard binary packages, and let the future maintainer look into this more. PR: 194151 Submitted by: ktullavik (gmail) Modified: head/deskutils/griffith/Makefile Modified: head/deskutils/griffith/Makefile ============================================================================== --- head/deskutils/griffith/Makefile Mon Nov 10 19:18:49 2014 (r372409) +++ head/deskutils/griffith/Makefile Mon Nov 10 19:33:36 2014 (r372410) @@ -3,7 +3,7 @@ PORTNAME= griffith PORTVERSION= 0.13 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils MASTER_SITES= http://launchpadlibrarian.net/87859599/ @@ -22,7 +22,8 @@ USE_GNOME= pygtk2 USES= gmake gettext python tar:xz NO_BUILD= yes -OPTIONS_DEFINE= CHARDET LXML PYGNOMEEXTRAS REPORTLAB2 +OPTIONS_DEFINE= CHARDET LXML PYGNOMEEXTRAS REPORTLAB2 +OPTIONS_DEFAULT= LXML CHARDET_DESC= chardet support CHARDET_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>=0:${PORTSDIR}/textproc/py-chardet @@ -50,10 +51,11 @@ post-patch: /^PREFIX/s|?=|=|g ; s|/usr|${PREFIX}|; /ln -s/d; \ /^ETCDIR/s|=.*|= $$(PREFIX)/etc|g' ${WRKSRC}/${file} .endfor -.for file in docs/en/Makefile docs/pl/Makefile docs/pt/Makefile +.for f in docs/en/Makefile docs/pl/Makefile docs/pt/Makefile @${REINPLACE_CMD} -e \ '/^PREFIX/s|?=|=|g ; s|/usr|${PREFIX}|; \ - /^MANDIR/s|=.*|=${STAGEDIR}${MANPREFIX}/man|g' ${WRKSRC}/${file} + /^MANDIR/s|=.*|=${STAGEDIR}${MANPREFIX}/man|g' \ + ${WRKSRC}/${f} .endfor pre-install:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411101933.sAAJXb5a039017>