After recent changes to USES=libtool, as reported by tijl@ at ports@, here is my first candidate for it. net/vino does not find one of its dependencies because of an apparently lower version number. Instead of accepting libunique-1.0.so it looks for libunique-1.0.2.so. Fix: Patch attached with submission follows: How-To-Repeat: Try to build r353934 of net/vino
Responsible Changed From-To: freebsd-ports-bugs->gnome Over to maintainer (via the GNATS Auto Assign Tool)
Author: tijl Date: Tue May 13 18:28:55 2014 New Revision: 353976 URL: http://svnweb.freebsd.org/changeset/ports/353976 QAT: https://qat.redports.org/buildarchive/r353976/ Log: - Use new LIB_DEPENDS syntax to fix libunique dependency. - Staging. PR: ports/189778 Obtained from: marcuscom Modified: head/net/vino/Makefile Modified: head/net/vino/Makefile ============================================================================== --- head/net/vino/Makefile Tue May 13 18:22:28 2014 (r353975) +++ head/net/vino/Makefile Tue May 13 18:28:55 2014 (r353976) @@ -12,9 +12,9 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= VNC server that allows for remote access to your GNOME desktop -LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls \ - telepathy-glib.0:${PORTSDIR}/net-im/telepathy-glib \ - unique-1.0.2:${PORTSDIR}/x11-toolkits/unique +LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \ + libtelepathy-glib.so:${PORTSDIR}/net-im/telepathy-glib \ + libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique USE_BZIP2= yes USES= gettext gmake pkgconfig @@ -29,11 +29,10 @@ LDFLAGS+= -L${LOCALBASE}/lib GCONF_SCHEMAS= vino-server.schemas .if !defined(WITHOUT_NOTIFY) -LIB_DEPENDS+= notify.4:${PORTSDIR}/devel/libnotify +LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify CONFIGURE_ARGS+=--enable-libnotify=yes .else CONFIGURE_ARGS+=--enable-libnotify=no .endif -NO_STAGE= yes .include <bsd.port.mk> _______________________________________________ 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 r353976.