Summary: | graphics/php53-gd: depends on wrong libfreetype.so.9 instead of libfreetype.so.6 | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | never |
Component: | Individual Port(s) | Assignee: | Florian Smeets <flo> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
never
2014-04-19 13:30:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->flo Over to maintainer (via the GNATS Auto Assign Tool) Author: tijl Date: Sat Apr 19 15:57:46 2014 New Revision: 351598 URL: http://svnweb.freebsd.org/changeset/ports/351598 QAT: https://qat.redports.org/buildarchive/r351598/ Log: Fix libfreetype dependencies. PR: ports/188792 Modified: head/devel/libg19draw/Makefile head/games/etracer/Makefile head/lang/php53/Makefile.ext Modified: head/devel/libg19draw/Makefile ============================================================================== --- head/devel/libg19draw/Makefile Sat Apr 19 13:54:30 2014 (r351597) +++ head/devel/libg19draw/Makefile Sat Apr 19 15:57:46 2014 (r351598) @@ -11,7 +11,7 @@ MAINTAINER= armin@frozen-zone.org COMMENT= G19 draw library LIB_DEPENDS= libg19.so:${PORTSDIR}/devel/libg19 \ - libfreetype.so.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -pthread" Modified: head/games/etracer/Makefile ============================================================================== --- head/games/etracer/Makefile Sat Apr 19 13:54:30 2014 (r351597) +++ head/games/etracer/Makefile Sat Apr 19 15:57:46 2014 (r351598) @@ -12,7 +12,7 @@ MAINTAINER= peter_dunning@dsl.pipex.com COMMENT= The latest and greatest fork of the classic Tux Racer LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ - libfreetype.so.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 USE_SDL= mixer sdl USE_XORG= x11 xi xext xmu xt Modified: head/lang/php53/Makefile.ext ============================================================================== --- head/lang/php53/Makefile.ext Sat Apr 19 13:54:30 2014 (r351597) +++ head/lang/php53/Makefile.ext Sat Apr 19 15:57:46 2014 (r351598) @@ -87,9 +87,9 @@ USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "gd" -LIB_DEPENDS= libfreetype.so.9:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ libpng15.so:${PORTSDIR}/graphics/png \ - libjpeg.so.11:${PORTSDIR}/graphics/jpeg + libjpeg.so:${PORTSDIR}/graphics/jpeg CONFIGURE_ARGS+=--with-gd \ --with-freetype-dir=${LOCALBASE} \ _______________________________________________ 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 Fixed in r351598. |