After the latest glib update, graphics/ufraw does not build, because ${LOCALBASE}/share/glib-2.0/gettext/mkinstalldirs does not exist anymore. On my system, I found the same version here: ${LOCALBASE}/share/automake-1.14/mkinstalldirs Since automake-1.14 is not a build dependency of graphics/ufraw, but icu-50.1.2 is, I tried this version: ${LOCALBASE}/share/icu/50.1.2/mkinstalldirs ${LOCALBASE}/share/icu/50.1.2/mkinstalldirs is almost identical to ${LOCALBASE}/share/automake-1.4/mkinstalldirs, which comes with automake-1.4.6_6 and which seems to be enough for graphics/ufraw to build. Of course, these path' are all very version dependent. Fix: Use some different version of mkinstalldirs, for example the one from icu-50.1.2, which already is a build dependency. Patch attached with submission follows: How-To-Repeat: make -C /usr/ports/graphics/ufraw/
Maintainer of graphics/ufraw, Please note that PR ports/181013 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/181013 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Jan, Thanks for your submition, the patch looks ok to me. AFAIK, no portrevision bump is required so, it can be commited as is. regards
State Changed From-To: feedback->open Maintainer approved.
Responsible Changed From-To: freebsd-ports-bugs->bsam Take.
Author: bsam Date: Sun Aug 11 14:45:59 2013 New Revision: 324591 URL: http://svnweb.freebsd.org/changeset/ports/324591 Log: Fix build after recent glib update. PR: ports/181013 Submitted by: Jan Henrik Sylvester <me@janh.de> Approved by: rodrigo@bebik.net (maintainer) Modified: head/graphics/ufraw/Makefile Modified: head/graphics/ufraw/Makefile ============================================================================== --- head/graphics/ufraw/Makefile Sun Aug 11 14:11:33 2013 (r324590) +++ head/graphics/ufraw/Makefile Sun Aug 11 14:45:59 2013 (r324591) @@ -104,7 +104,7 @@ post-patch: .endfor pre-build: - @${INSTALL_SCRIPT} ${LOCALBASE}/share/glib-2.0/gettext/mkinstalldirs \ + @${INSTALL_SCRIPT} ${LOCALBASE}/share/icu/50.1.2/mkinstalldirs \ ${WRKSRC} post-install: _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thanks!