From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 20 13:40:03 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 A27C2106568B for ; Sun, 20 Dec 2009 13:40:03 +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 77E018FC23 for ; Sun, 20 Dec 2009 13:40:03 +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 nBKDe3Y6027162 for ; Sun, 20 Dec 2009 13:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBKDe3gT027161; Sun, 20 Dec 2009 13:40:03 GMT (envelope-from gnats) Date: Sun, 20 Dec 2009 13:40:03 GMT Message-Id: <200912201340.nBKDe3gT027161@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 13:40:03 -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 05:30:36 -0800 --yrj/dFKFPuw6o+aM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Actually, the last patch didn't work. I'm attaching a new patch that appears to work correctly. I tested it with FT_BRIDGE both enabled and disabled to make sure both versions build without issue. -- Naveen Nathan To understand the human mind, understand self-deception. - Anon --yrj/dFKFPuw6o+aM 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:44:43.956448298 -0800 @@ -38,7 +38,7 @@ EXTRALIBS="${EXTRALIBS}" \ SOC_LOADER="dxmainc.c" CONFIGURE_ENV= ${MAKE_ENV} \ - CPPFLAGS="-DUPD_SIGNAL=0 -I. -I${WRKSRC}/jasper/src/libjasper/include -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include" \ + CPPFLAGS="-DUPD_SIGNAL=0 -I. -I${WRKSRC}/jasper/src/libjasper/include -I${LOCALBASE}/include/libpng -I${LOCALBASE}/include -I${WRKSRC}/freetype/include -I${WRKSRC}/freetype/include/freetype" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --disable-compile-inits \ --enable-contrib \ @@ -245,10 +245,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: --yrj/dFKFPuw6o+aM--