From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 20 12:00:16 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD6E510656E6 for ; Sun, 20 Dec 2009 12:00:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 24A7C8FC08 for ; Sun, 20 Dec 2009 12:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBKC0G0m027928 for ; Sun, 20 Dec 2009 12:00:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBKC0FnR027927; Sun, 20 Dec 2009 12:00:16 GMT (envelope-from gnats) Date: Sun, 20 Dec 2009 12:00:16 GMT Message-Id: <200912201200.nBKC0FnR027927@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Naveen Nathan Cc: Subject: Re: ports/141798: ghostscript8 (8.70) doesn't build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Naveen Nathan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2009 12:00:17 -0000 The following reply was made to PR ports/141798; it has been noted by GNATS. From: Naveen Nathan To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/141798: ghostscript8 (8.70) doesn't build Date: Sun, 20 Dec 2009 03:51:04 -0800 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I ran across further build issues where the build process was unable to find the freetype2 header files while compiling the FAPI (freetype bridge) module. Attached is a patch fixing both issues: removing the mv line, and updating the location of the freetype header files when building the freetype bridge module. -- Naveen Nathan To understand the human mind, understand self-deception. - Anon --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.patch" --- Makefile.orig 2009-12-20 09:19:09.894100078 -0800 +++ Makefile 2009-12-20 09:14:28.223471988 -0800 @@ -195,6 +195,9 @@ PLIST_SUB+= FAPI="" .else PLIST_SUB+= FAPI="@comment " +CONFIGURE_ENV= ${MAKE_ENV} \ + CPPFLAGS="-DUPD_SIGNAL=0 -I. -I${WRKSRC}/jasper/src/libjasper/include -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include -I${LOCALBASE}/freetype/include" \ + LDFLAGS="-L${LOCALBASE}/lib" .endif ALL_TARGET= so @@ -245,10 +248,6 @@ ${MKDIR} ${WRKSRC}/freetype/objs ${LN} -s -f ${LOCALBASE}/lib/libfreetype.so \ ${WRKSRC}/freetype/objs/freetype214MT_D.so -# bug in 8.64. Fixed in r9467. - ${MV} ${WRKSRC}/base/write_t[12].[ch] \ - ${WRKSRC}/base/wrfont.[ch] \ - ${WRKSRC}/psi .endif pre-su-install: --zYM0uCDKw75PZbzx--