Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Aug 2014 03:06:23 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r365529 - branches/2014Q3/audio/padevchooser
Message-ID:  <201408210306.s7L36NFJ088848@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Thu Aug 21 03:06:22 2014
New Revision: 365529
URL: http://svnweb.freebsd.org/changeset/ports/365529
QAT: https://qat.redports.org/buildarchive/r365529/

Log:
  MFH: r365528
  
  - Remove unneeded LIB_DEPENDS for avahi.
    padevchooser does not link directly to avahi. Pulseaudio links directly to it
    and already depends on it. Pkg only considers library dependencies for
    DT_NEEDED links. Because avahi is not actually needed it is not registered as
    a dependency in the package. This causes poudriere to rebuild this port
    on every build because it sees avahi in LIB_DEPENDS but not registered in
    the package.
    ldd(1) shows the indirect dependency on avahi, however the direct deps can
    be seen with ldd -a or readelf -d.
  
  With hat:	portmgr

Modified:
  branches/2014Q3/audio/padevchooser/Makefile
Directory Properties:
  branches/2014Q3/   (props changed)

Modified: branches/2014Q3/audio/padevchooser/Makefile
==============================================================================
--- branches/2014Q3/audio/padevchooser/Makefile	Thu Aug 21 03:05:52 2014	(r365528)
+++ branches/2014Q3/audio/padevchooser/Makefile	Thu Aug 21 03:06:22 2014	(r365529)
@@ -3,7 +3,7 @@
 
 PORTNAME=	padevchooser
 PORTVERSION=	0.9.3
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	audio
 MASTER_SITES=	http://0pointer.de/lennart/projects/${PORTNAME}/
 
@@ -12,8 +12,7 @@ COMMENT=	GTK icon tray for PulseAudio
 
 LIB_DEPENDS=	libglademm-2.4.so:${PORTSDIR}/devel/libglademm24 \
 		libpulse.so:${PORTSDIR}/audio/pulseaudio \
-		libnotify.so:${PORTSDIR}/devel/libnotify \
-		libavahi-core.so:${PORTSDIR}/net/avahi
+		libnotify.so:${PORTSDIR}/devel/libnotify
 RUN_DEPENDES=	dbus-daemon:${PORTSDIR}/devel/dbus
 
 GNU_CONFIGURE=	yes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408210306.s7L36NFJ088848>