From owner-freebsd-ports@FreeBSD.ORG Wed May 5 17:23:47 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 792C6106564A for ; Wed, 5 May 2010 17:23:47 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 0D7C88FC15 for ; Wed, 5 May 2010 17:23:46 +0000 (UTC) Received: by wyf23 with SMTP id 23so1008980wyf.13 for ; Wed, 05 May 2010 10:23:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=KkqkpaaDl6wuZkJO2ADEplmMc+EZXPQYMdqPbdbaqNA=; b=tUCfUVe9iqyp0+GCaqAHxlLyZpgID13eMgmPaSzmC9ollcnGqRppYTAJeoFDai5o8j XAspnCF7pWWVmTc/cQcsJZPcf8bTL88z50rqRbOaZ7HQitc71/Rd7ALsLoF0qE+y0+3X A/Jfm+pG+uCTebthXJV8+Ive8/rJLQZX7i6EI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=SFMFb5Qa8S7vzQR8MHjJEJnhCZSvdOfl/6rQ/gbFa7s07M7Osqf+U6YjLWWv/4HVml YHk1OQkuchfk0KJzqTpy5s9mLd5yGkKeL4Qygoef6NTNkAt3K4I50htJX1JYtiMcfOyZ pHRC/qVczSUYZI3ZmqJiFAyvnjtXaSvegQvfk= Received: by 10.227.147.200 with SMTP id m8mr2949485wbv.111.1273080217727; Wed, 05 May 2010 10:23:37 -0700 (PDT) Received: from Melon.malikania.fr (121.21.102-84.rev.gaoland.net [84.102.21.121]) by mx.google.com with ESMTPS id y23sm293483wby.10.2010.05.05.10.23.36 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 05 May 2010 10:23:37 -0700 (PDT) Date: Wed, 5 May 2010 19:23:34 +0200 From: Demelier David To: freebsd-ports@freebsd.org Message-ID: <20100505172334.GA94509@Melon.malikania.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Subject: audio/mumble needs devel/protobuf as lib depend. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2010 17:23:47 -0000 --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, If you install audio/mumble you will noticed that it does not depend on deve/protobuf because it's marked as BUILD_DEPENDS in the Makefile. However if you deinstall protobuf mumble will fails It also the same with x11/qt4-opengl. So I would propose this patch.(see attachment). But there is still a missing dependency (I guess) because if you remove any qt4-* leaves (not depended on) mumble will segfault. Cheers. -- Demelier David --0OAP2g/MAC+5xKAE Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="mumble-pre.patch" --- Makefile.orig 2010-05-05 18:58:01.000000000 +0200 +++ Makefile 2010-05-05 19:07:09.000000000 +0200 @@ -18,13 +18,14 @@ celt.0:${PORTSDIR}/audio/celt \ sndfile.1:${PORTSDIR}/audio/libsndfile \ boost_iostreams:${PORTSDIR}/devel/boost-libs \ - boost_python:${PORTSDIR}/devel/boost-python-libs -BUILD_DEPENDS= protoc:${PORTSDIR}/devel/protobuf + boost_python:${PORTSDIR}/devel/boost-python-libs \ + protoc:${PORTSDIR}/devel/protobuf USE_GMAKE= yes USE_QT_VER= 4 QT_COMPONENTS= gui svg iconengines xml sql network l10n \ - linguist_build qmake_build moc_build rcc_build uic_build + linguist_build qmake_build moc_build rcc_build uic_build \ + opengl USE_XORG= ice HAS_CONFIGURE= yes --0OAP2g/MAC+5xKAE--