From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QBs0U-0004Vv-JP for garchives@archives.gentoo.org; Mon, 18 Apr 2011 17:13:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3584B1C0C1 for ; Mon, 18 Apr 2011 17:13:02 +0000 (UTC) Received: from mail-qy0-f174.google.com (mail-qy0-f174.google.com [209.85.216.174]) by pigeon.gentoo.org (Postfix) with ESMTP id 9E6C61C028 for ; Mon, 18 Apr 2011 16:52:18 +0000 (UTC) Received: by qyk7 with SMTP id 7so1168223qyk.19 for ; Mon, 18 Apr 2011 09:52:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Dl3aSwwUol1Bx0D1q4R9a0Gt6eEd8DHjaYA3+ILQt3U=; b=A8AOGJ813EkZ6TuCETmhCa4v/K88Ty3LGq41WuT3eEuQOsO/kJQiS1kDMtXl5486+R 7k91aCmVNnPrkn664hzTwMUuGgzLaKfP1pmgVknzqVQFEwQzPWz0gOSPoSzZr7O/2VBe pasKdlFyc6MCxPV0jF3jJc6Tb3juSyWyDVk44= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; b=TNl+lXs3SBSHabO0FC98T177S2wTpzWaXhhfkURk6//H51gL4HJaALejWzg9CKfOnJ mRg+0G+6bekWUXb0l9Ter0iprrtEChQG/6lUbtv0fZpnQlOem72l8KMn7+EvxCBxY6G8 9XFFuF2JWTtelYDJwdDHhITh1Ys3M4bI4OaH0= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Received: by 10.229.4.203 with SMTP id 11mr3731974qcs.72.1303145537915; Mon, 18 Apr 2011 09:52:17 -0700 (PDT) Sender: paul.hartman@gmail.com Received: by 10.229.227.71 with HTTP; Mon, 18 Apr 2011 09:52:17 -0700 (PDT) In-Reply-To: <20110418162145.GA4024@acm.acm> References: <20110418162145.GA4024@acm.acm> Date: Mon, 18 Apr 2011 11:52:17 -0500 X-Google-Sender-Auth: Q67ihwwZJjxPgEDB-4nEezgbpzg Message-ID: Subject: Re: [gentoo-user] I can't understand an emerge error. Help, please! From: Paul Hartman To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: f4b900c5fbf8249326dc9aced29fb0cf On Mon, Apr 18, 2011 at 11:21 AM, Alan Mackenzie wrote: > Hi, gentoo. > > When I try to run an emerge world, I get this error: > > # emerge --update --deep -p world > > These are the packages that would be merged, in order: > > Calculating dependencies... done! > > emerge: there are no ebuilds built with USE flags to satisfy "dev-libs/li= bgcrypt[static-libs]". > !!! One of the following packages is required to complete your request: > - dev-libs/libgcrypt-1.4.6 (Change USE: +static-libs) One of the packages in your world requires dev-libs/libgcrypt which was built with the "static-libs" USE flag. So, the line above is telling you to add "static-libs" to your USE flag for that package. > (dependency required by "sys-fs/cryptsetup-1.1.3-r3[-dynamic]" [ebuild]) > (dependency required by "sys-apps/hal-0.5.14-r4[crypt]" [ebuild]) > (dependency required by "@selected" [set]) > (dependency required by "@world" [argument]) These are the items that require libgcrypt with static-libs USE flag set. Sometimes changing USE flags on thse packages will change the dependency requirements. Sometimes it's just something new that the maintainer added since a previous version. > What is this saying? =A0That I need to locate a use flag "static-libs" an= d > change it for package libgcrypt? =A0Presumably it is libgcrypt which is > dissatisfied. =A0I'm having difficulty parsing the mssage. > > Next question: what should I do about it? If you don't already have one, you can set package-specific USE flags in /etc/portage/package.use and in this case you'd add a line: dev-libs/libgcrypt static-libs > Thanks for the help! Good luck!