From owner-freebsd-gnome@FreeBSD.ORG Mon Jul 8 16:20:13 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CEF37BBF for ; Mon, 8 Jul 2013 16:20:13 +0000 (UTC) (envelope-from jozze.zepl@gmail.com) Received: from mail-vc0-x22b.google.com (mail-vc0-x22b.google.com [IPv6:2607:f8b0:400c:c03::22b]) by mx1.freebsd.org (Postfix) with ESMTP id 960191B0D for ; Mon, 8 Jul 2013 16:20:13 +0000 (UTC) Received: by mail-vc0-f171.google.com with SMTP id gd11so3531511vcb.16 for ; Mon, 08 Jul 2013 09:20:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=4VmovHr0OGSw6NBfbNXtc6Z5ECYd2Nw8JdNePs3x0Ho=; b=QWfn7NkDnK4DD98yvDrhAgJPyKWvGetQMBrlX8khvtap1z3BceraMXvn4r1hHESxq7 D04r2OZr5OK6r3NE8Kc3XxHkLTaGXJYkPu9SKHqq8HhT/ccwj+e+AmC5Fz7Vl8cJLAP3 WZvkvuY8T9HXFHoo4TN5ShVLdshta6RlbutYws4GqVdI/jqlHt06N+R+4Uj2Gw5e8dbL sgNufZ8uEtGxJlvffcikrkQ9Vc5IqSetGTqejwbcgUnhmA9GQ3J/o8ncm7rzPftjE3d/ DT6XSQ4sR/NG4F0T+kDlxaseneLdZ34BHU8dOmWViTm7flAUa0L9gcw2hvCCn6pzaz34 pIcA== MIME-Version: 1.0 X-Received: by 10.52.228.226 with SMTP id sl2mr12009594vdc.52.1373300413214; Mon, 08 Jul 2013 09:20:13 -0700 (PDT) Received: by 10.58.228.196 with HTTP; Mon, 8 Jul 2013 09:20:13 -0700 (PDT) Date: Mon, 8 Jul 2013 18:20:13 +0200 Message-ID: Subject: net/ekiga3 problem From: =?ISO-8859-2?Q?Jo=BEe_Zobec?= To: gnome@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jul 2013 16:20:14 -0000 Dear all, I noticed a problem with net/ekiga3 port. Since the "maintainer" is set to this mailing list, I'll report it here: ekiga3 Makefile lists avahi-app as a build dependency, whereas it should be set as a run dependency. Otherwise it's automatically deleted with PKGNG tools: # pkg autoremove If avahi-app is removed, ekiga3 won't start. So I suggest this patch for the port's Makefile: --- net/ekiga3/Makefile.old 2013-07-08 18:06:40.000000000 +0200 +++ net/ekiga3/Makefile 2013-07-08 18:06:52.000000000 +0200 @@ -110,7 +110,7 @@ .if ${PORT_OPTIONS:MAVAHI} CONFIGURE_ARGS+=3D --enable-avahi -BUILD_DEPENDS+=3D ${LOCALBASE}/libdata/pkgconfig/avahi-client.pc:${PORTSDIR}/net/avahi-app +RUN_DEPENDS+=3D ${LOCALBASE}/libdata/pkgconfig/avahi-client.pc:${PORTSDIR}/net/avahi-app .else CONFIGURE_ARGS+=3D --disable-avahi .endif which just fixes the $PORTSDIR/net/ekiga3/Makefile's avahi-app status to RUN_DEPENDS. I'll also file a PR with patch included. Have a nice remainder of the day, Jo=BEe