From owner-svn-ports-all@FreeBSD.ORG Wed Dec 25 09:19:41 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0267B8FD; Wed, 25 Dec 2013 09:19:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E23F1138B; Wed, 25 Dec 2013 09:19:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBP9JeIX044860; Wed, 25 Dec 2013 09:19:40 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBP9JeqG044858; Wed, 25 Dec 2013 09:19:40 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201312250919.rBP9JeqG044858@svn.freebsd.org> From: Koop Mast Date: Wed, 25 Dec 2013 09:19:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337403 - in head/misc/magicpoint: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Dec 2013 09:19:41 -0000 Author: kwm Date: Wed Dec 25 09:19:40 2013 New Revision: 337403 URL: http://svnweb.freebsd.org/changeset/ports/337403 Log: Fix build with freetype 2.5.2. I forgot this in the big update yesterday. Added: head/misc/magicpoint/files/patch-mgp.h (contents, props changed) Modified: head/misc/magicpoint/Makefile Modified: head/misc/magicpoint/Makefile ============================================================================== --- head/misc/magicpoint/Makefile Wed Dec 25 08:20:15 2013 (r337402) +++ head/misc/magicpoint/Makefile Wed Dec 25 09:19:40 2013 (r337403) @@ -68,6 +68,8 @@ post-configure: ${SETENV} ${MAKE_ENV} ${XMKMF} ${XMKMF_ARGS} cd ${WRKSRC}/contrib/xmindpath && \ ${SH} ${CONFIGURE_SCRIPT} --prefix=${PREFIX} + @${REINPLACE_CMD} -e 's|freetype1/freetype|freetype1|g' \ + ${WRKSRC}/Makefile ${WRKSRC}/image/Makefile post-build: cd ${WRKSRC}/contrib/xmindpath && \ Added: head/misc/magicpoint/files/patch-mgp.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/magicpoint/files/patch-mgp.h Wed Dec 25 09:19:40 2013 (r337403) @@ -0,0 +1,11 @@ +--- mgp.h.orig 2013-12-25 10:03:40.000000000 +0100 ++++ mgp.h 2013-12-25 10:05:28.000000000 +0100 +@@ -91,7 +91,7 @@ + #endif /* end of VFLIB */ + + #ifdef FREETYPE +-#include "freetype.h" ++#include "freetype/freetype.h" + + #ifndef FREETYPEFONTDIR + #define FREETYPEFONTDIR "/usr/local/share/fonts/ttf"