From owner-freebsd-ports@FreeBSD.ORG Sat Feb 25 13:25:22 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC220106566B; Sat, 25 Feb 2012 13:25:22 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id A854F8FC0C; Sat, 25 Feb 2012 13:25:22 +0000 (UTC) Received: by iaeo4 with SMTP id o4so5480079iae.13 for ; Sat, 25 Feb 2012 05:25:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=jNxXxLR7E7PYtLSzxgCLuVD6kptkyinHSuNzNUtz9wY=; b=DfS5IHdQV1K+x4lj1U2Tw6N7hUZ2OvsOQ8aeY6I1hP08Mu1RhWc3JbIv0Wj39BWJl/ /krAXuEASOVFJm0JzGUGXUFiXLyAfiEP5UgJtf6N5IPoz+rT+uumlzVj2i3HHqgjl9nh VaFmSXA7E7G1pAS12dZgm8pqxCIxm0X15mrXE= Received: by 10.50.76.130 with SMTP id k2mr6971581igw.22.1330176322276; Sat, 25 Feb 2012 05:25:22 -0800 (PST) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.231.155.20 with HTTP; Sat, 25 Feb 2012 05:24:52 -0800 (PST) In-Reply-To: <4F478892.10708@FreeBSD.org> References: <4F477B33.5020506@FreeBSD.org> <4F478892.10708@FreeBSD.org> From: Chris Rees Date: Sat, 25 Feb 2012 13:24:52 +0000 X-Google-Sender-Auth: sC-JiVZgNJg5CnT-ijlobFdm5Fs Message-ID: To: Michael Scheidell Content-Type: text/plain; charset=ISO-8859-1 Cc: ports@freebsd.org Subject: Re: nevermind.Re: how do you specify a minimum lib version? 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: Sat, 25 Feb 2012 13:25:23 -0000 On 24 February 2012 12:54, Michael Scheidell wrote: > > > On 2/24/12 6:57 AM, Michael Scheidell wrote: >> >> in LIB_DEPENDS >> it won't take anything like: >> >> = boost_serialization>=.4 >> > I googled. > all other _DEPENDS uses >= > LIB_DEPENDS uses .[4-9] > (i assume .(1[0-9]|[4-9])) If we're going to make this rigorous, we should use: .([1-9][0-9]+|[4-9]) in order to accept >.4 . I haven't escaped the '.', because I don't see any way it could hurt. Or, you could depend on the lowest package version that has .so.4 (but only if it is unique to that package). Chris