Date: Sun, 20 Dec 2009 12:00:16 GMT From: Naveen Nathan <naveen@lastninja.net> To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/141798: ghostscript8 (8.70) doesn't build Message-ID: <200912201200.nBKC0FnR027927@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/141798; it has been noted by GNATS. From: Naveen Nathan <naveen@lastninja.net> 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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200912201200.nBKC0FnR027927>