From owner-freebsd-ports@FreeBSD.ORG Thu Jan 29 01:37:12 2009 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF8AB1065674 for ; Thu, 29 Jan 2009 01:37:12 +0000 (UTC) (envelope-from venture37@gmail.com) Received: from mail-ew0-f21.google.com (mail-ew0-f21.google.com [209.85.219.21]) by mx1.freebsd.org (Postfix) with ESMTP id 4D2448FC23 for ; Thu, 29 Jan 2009 01:37:12 +0000 (UTC) (envelope-from venture37@gmail.com) Received: by ewy14 with SMTP id 14so5026429ewy.19 for ; Wed, 28 Jan 2009 17:37:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=ijXvfFVb4V1Wqhx28xlKu7U7ZO2JaPYcHZ8OLKbb90o=; b=RWMMTTrvikxqgZjm9803O1jfLxFe94FhXch+N3Ua+fxwA6+RSyyKUkDGcJXSVbgrpl pvOZtDKhp2kRYNuIsxuvyPEd3aCK2NC7+obzTewPI32mI/+gC/xmXvTriOQAqO2GdQVo lvJThdJ9/jtAHATB0swQYkQDR/cInB51dgqvQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=gRreXuB5vNTAS3R77EDc36jDIiLTeidjnVyAC+Quue803USOJA41/+xCmZRZBFiekI 2cjG+Sz570QAjOH/pvnnXWKitk0USFRsUji12EZzsaDJfaokztV9D1ibf+OwkOPRGNuK UWfs8/U1L1524pOj+ZnDeBd9m7zGZXQt/eslg= Received: by 10.66.255.1 with SMTP id c1mr3474753ugi.44.1233193031174; Wed, 28 Jan 2009 17:37:11 -0800 (PST) Received: from sevans-mac-pro-2.local (newbie.thingamajig-systems.co.uk [93.97.185.103]) by mx.google.com with ESMTPS id o24sm16431301ugd.31.2009.01.28.17.37.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 28 Jan 2009 17:37:10 -0800 (PST) Message-ID: <49810844.6080607@gmail.com> Date: Thu, 29 Jan 2009 01:37:08 +0000 From: Sevan / Venture37 User-Agent: Thunderbird 2.0.0.19 (Macintosh/20081209) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <4980E6F6.2060504@gmail.com> In-Reply-To: <4980E6F6.2060504@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: LIB_DEPENDS & dealing with libraries which don't show up in ldconfig -r 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: Thu, 29 Jan 2009 01:37:13 -0000 Sevan / Venture37 wrote: > Hi > Whilst attempting to create a port for OpenNMS I've hit a wall, one of > the dependencies is net/jicmp, the problem I'm having is when attempting > to build OpenNMS, jicmp is not detected as being installed & a > installation is always attempted & the process bombs out if it is, what > is the process for dealing with libraries as dependencies which don't > show up in ldconfig -r???? > > > Sevan / Venture37 Problem solved Instead of trying to list the .so file as a dependency, list the .jar file which is part of jicmp instead. BUILD_DEPENDS= ${JAVAJARDIR}/jicmp.jar:${PORTSDIR}/net/jicmp Sevan / Venture37