From owner-freebsd-questions@FreeBSD.ORG Wed Jul 6 20:45:34 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB2F6106564A for ; Wed, 6 Jul 2011 20:45:34 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 4EF9E8FC12 for ; Wed, 6 Jul 2011 20:45:34 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id p66KjU6R002848 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Wed, 6 Jul 2011 21:45:30 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.3 smtp.infracaninophile.co.uk p66KjU6R002848 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1309985130; bh=S1OqsI+ToYtPFR3gzOvZfVhvKBCfH1EzbySimfuGE9U=; h=Message-ID:Date:From:MIME-Version:To:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4E14C963.1010604@infracaninophile.co.uk>|Date:=20W ed,=2006=20Jul=202011=2021:45:23=20+0100|From:=20Matthew=20Seaman= 20|User-Agent:=20Mozilla/5.0=20(M acintosh=3B=20Intel=20Mac=20OS=20X=2010.6=3B=20rv:5.0)=20Gecko/201 10624=20Thunderbird/5.0|MIME-Version:=201.0|To:=20freebsd-question s@freebsd.org|Subject:=20Re:=20p5-ExtUtils-MakeMaker-6.56_1=20and= 20p5-ExtUtils-Install-1.54_1=20conflict|References:=20|In-Reply- To:=20|X-Enigmail-Version:=201.2|OpenPGP:=20id=3D60AE908C|Conten t-Type:=20multipart/signed=3B=20micalg=3Dpgp-sha1=3B=0D=0A=20proto col=3D"application/pgp-signature"=3B=0D=0A=20boundary=3D"--------- ---enigD0FB79543D066A37F2DC263C"; b=cep6ZHQCcL8CI2iUhdHl3DYyUHv/mbik0zTZHjUEPfn9KKeIcIldh1856Vx6D9bYy mpUQbKb3x58x8QohT08rg98E7M99BlcnA7FjHlBIQCAFUpXFOioAZ8Ixeu4VUa+M4n KoSCrZu1XCOuT5/AjbEv0mfShdR4DteAJJDVxM0w= Message-ID: <4E14C963.1010604@infracaninophile.co.uk> Date: Wed, 06 Jul 2011 21:45:23 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0) Gecko/20110624 Thunderbird/5.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: In-Reply-To: X-Enigmail-Version: 1.2 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigD0FB79543D066A37F2DC263C" X-Virus-Scanned: clamav-milter 0.97 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.1 required=5.0 tests=BAYES_40,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,SPF_FAIL autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Subject: Re: p5-ExtUtils-MakeMaker-6.56_1 and p5-ExtUtils-Install-1.54_1 conflict X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2011 20:45:35 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigD0FB79543D066A37F2DC263C Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 06/07/2011 17:40, n dhert wrote: > p5-ExtUtils-MakeMaker-6.56_1 and p5-ExtUtils-Install-1.54_1 conflict > both telling that the other one should be deleted. > So which one of the two to keep > so far, I opted for keeping p5-ExtUtils-Install-1.54_1, deleting > p5-ExtUtils-MakeMaker-6.56_1, is this wise or should it be the other > way round? > or what? These modules by their nature tend to be required just for building other ports. Therefore, keep whichever one is required for the port you're installing at the moment, and delete the other one. To save work, consider creating packages of both ports, so that you can just pkg_add whichever one you need. It might get tricky if you're installing a big complicated port with loads of perl module dependencies, where some of the dependencies want one, and some want the other. It's possible that having ExtUtils::MakeMaker will actually satisfy the BUILD_DEPENDS for most ports -- it's older and fairly unix-specific, whereas ExtUtils::Install does the same sort of thing for a wider range of OSes. But FreeBSD is unix, so we don't actually need the extra fiddly bits from ExtUtils::Install. However, I only intuit this from reading the docco. I haven't tested it, so it may be a load of old baloney... Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enigD0FB79543D066A37F2DC263C Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk4UyWoACgkQ8Mjk52CukIwT9ACffvlfCGGTRckqX/Rh53hxqfDM O/0AnRCj59XTh+DQyTs0gqa27mYAN6HN =dYHw -----END PGP SIGNATURE----- --------------enigD0FB79543D066A37F2DC263C--