From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 56ED3158087 for ; Thu, 9 Dec 2021 04:08:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE6C92BC01C; Thu, 9 Dec 2021 04:08:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF90B2BC01C for ; Thu, 9 Dec 2021 04:08:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6897B34370F for ; Thu, 9 Dec 2021 04:08:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3E5F21E for ; Thu, 9 Dec 2021 04:08:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1639022892.10513f99bcf89eacd4d7a55e5a939b526cbbc0fc.sam@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: quickstart/ X-VCS-Repository: proj/devmanual X-VCS-Files: quickstart/text.xml X-VCS-Directories: quickstart/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 10513f99bcf89eacd4d7a55e5a939b526cbbc0fc X-VCS-Branch: master Date: Thu, 9 Dec 2021 04:08:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1ce93b4b-66fc-4c91-b852-80710164a6be X-Archives-Hash: 672e3ea337dc1867a39770d383e5d480 commit: 10513f99bcf89eacd4d7a55e5a939b526cbbc0fc Author: Sam James gentoo org> AuthorDate: Thu Dec 9 04:07:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 9 04:08:12 2021 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=10513f99 quickstart: mention BDEPEND Signed-off-by: Sam James gentoo.org> quickstart/text.xml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/quickstart/text.xml b/quickstart/text.xml index fd8e26b..da2142b 100644 --- a/quickstart/text.xml +++ b/quickstart/text.xml @@ -241,10 +241,12 @@ and installing common documentation files works correctly for the package.

-The DEPEND and RDEPEND variables are how Portage determines which -packages are needed to build and run the package. The DEPEND variable lists -compile-time dependencies, and the RDEPEND lists runtime dependencies. See - for some more complex examples. +The BDEPEND, DEPEND and RDEPEND variables are how Portage +determines which packages are needed to build and run the package. The +BDEPEND variable lists build-time (executable) dependencies, +DEPEND variable lists compile-time dependencies, and the RDEPEND +lists runtime dependencies. See +for some more complex examples.