On Sat, 27 Sep 2014, Bob Bernstein wrote: > epiphany: > > ---snip--- > checking pkg-config is at least version 0.9.0... yes > checking for wayland-scanner... no > checking for WAYLAND_DEPENDENCIES... no > checking whether build environment is sane... yes > checking for BASE_DEPENDENCIES... no > configure: error: Package requirements (glib-2.0 >= 2.39.5 atk >= 2.7.5 > pango >= 1.32.4 cairo >= 1.12.0 cairo-gobject >= 1.12.0 > gdk-pixbuf-2.0 >= 2.27.1) were not met: > > Requested 'glib-2.0 >= 2.39.5' but version of GLib is 2.38.2
We will assume that epiphany has correct dependency in its own configure. See the pkgsrc Makefile for it: BUILDLINK_API_DEPENDS.glib2+= glib2>=2.18.0 .include "../../devel/glib2/buildlink3.mk" Change that above to what its native build expects: BUILDLINK_API_DEPENDS.glib2+= glib2>=2.39.5 "make clean" first and try again. (You would remove that line from makefile if devel/glib2/buildlink3.mk was good enough.)