Created attachment 151567 [details] Output of make -C /usr/ports/x11/gnome3 install When installing guile2 which is a gnome3 dependency I get the following error ... ``` configure: error: Package requirements (bdw-gc-threaded) were not met: Package bdw-gc-threaded was not found in the pkg-config search path. Perhaps you should add the directory containing `bdw-gc-threaded.pc' to the PKG_CONFIG_PATH environment variable Package 'bdw-gc-threaded', required by 'world', not found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. ``` If I install boehm-gc-threaded before guile2 everything works ok. In guile2 Makefile there's `THREADS_LIB_DEPENDS= libgc.so:${PORTSDIR}/devel/boehm-gc-threaded` I wonder if that means boehm-gc-threaded should be installed before and that's not happening or if the boehm-gc-threaded dependency should be declared differently in the Makefile to have it installing before. Maybe with some guide I can provide a patch for this.
Fix Summary and notify maintainer.
A commit references this bug: Author: bofh Date: Sun Jan 18 11:17:18 UTC 2015 New revision: 377321 URL: https://svnweb.freebsd.org/changeset/ports/377321 Log: lang/guile2 error: Fix LIB_DEPENDS - Fixed wrong shared library PR: 196683 Differential Revision: https://reviews.freebsd.org/D1537 Submitted by: spastorino@gmail.com Approved by: marino(mentor) Changes: head/lang/guile2/Makefile
Thanks.