Summary: | [PATCH] lang/ruby: rub19 won't build/install with lang/gcc installed on FreeBSD 10 | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | jim | ||||
Component: | Individual Port(s) | Assignee: | Steve Wills <swills> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | ruby | ||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
jim
2014-02-05 03:00:01 UTC
Responsible Changed From-To: freebsd-ports-bugs->gerald Over to maintainer (via the GNATS Auto Assign Tool) Responsible Changed From-To: gerald->ruby@FreeBSD.org Reassigning to proper maintainers. Responsible Changed From-To: ruby@FreeBSD.org->ruby Canonicalize assignment. Responsible Changed From-To: ruby->swills I'll take it. Author: swills Date: Mon Feb 10 20:22:20 2014 New Revision: 343678 URL: http://svnweb.freebsd.org/changeset/ports/343678 QAT: https://qat.redports.org/buildarchive/r343678/ Log: - Fix build when newer gcc which includes a libffi is installed PR: ports/186468 Submitted by: Jim Ohlstein <jim@ohlste.in> Modified: head/lang/ruby19/Makefile head/lang/ruby20/Makefile Modified: head/lang/ruby19/Makefile ============================================================================== --- head/lang/ruby19/Makefile Mon Feb 10 20:10:29 2014 (r343677) +++ head/lang/ruby19/Makefile Mon Feb 10 20:22:20 2014 (r343678) @@ -18,9 +18,12 @@ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ - libffi.so:${PORTSDIR}/devel/libffi \ libyaml.so:${PORTSDIR}/textproc/libyaml +# Using LIB_DEPENDS finds the libffi from gcc which causes problems +BUILD_DEPENDS= libffi>=0:${PORTSDIR}/devel/libffi +RUN_DEPENDS= libffi>=0:${PORTSDIR}/devel/libffi + GNU_CONFIGURE= yes WRKSRC= ${RUBY_WRKSRC} CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ Modified: head/lang/ruby20/Makefile ============================================================================== --- head/lang/ruby20/Makefile Mon Feb 10 20:10:29 2014 (r343677) +++ head/lang/ruby20/Makefile Mon Feb 10 20:22:20 2014 (r343678) @@ -18,9 +18,12 @@ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ - libffi.so:${PORTSDIR}/devel/libffi \ libyaml.so:${PORTSDIR}/textproc/libyaml +# Using LIB_DEPENDS finds the libffi from gcc which causes problems +BUILD_DEPENDS= libffi>=0:${PORTSDIR}/devel/libffi +RUN_DEPENDS= libffi>=0:${PORTSDIR}/devel/libffi + GNU_CONFIGURE= yes WRKSRC= ${RUBY_WRKSRC} CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ _______________________________________________ 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 Committed, with minor changes. Thanks! |