git: b31c144ef2 - main - Porters handbook - flavors: Fix italic render
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 10 Apr 2023 08:51:04 UTC
The branch main has been updated by carlavilla:
URL: https://cgit.FreeBSD.org/doc/commit/?id=b31c144ef2ade65b730306a8b79a19b410c75cce
commit b31c144ef2ade65b730306a8b79a19b410c75cce
Author: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org>
AuthorDate: 2023-04-10 08:50:00 +0000
Commit: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org>
CommitDate: 2023-04-10 08:50:00 +0000
Porters handbook - flavors: Fix italic render
PR: 262001
---
.../en/books/porters-handbook/flavors/_index.adoc | 33 +++++++++++-----------
1 file changed, 16 insertions(+), 17 deletions(-)
diff --git a/documentation/content/en/books/porters-handbook/flavors/_index.adoc b/documentation/content/en/books/porters-handbook/flavors/_index.adoc
index 46bace6d07..47d78b0dd4 100644
--- a/documentation/content/en/books/porters-handbook/flavors/_index.adoc
+++ b/documentation/content/en/books/porters-handbook/flavors/_index.adoc
@@ -164,31 +164,30 @@ To make the [.filename]#Makefile# easier to write, a few flavors helpers exist.
This list of helpers will set their variable:
-* `_flavor__PKGNAMEPREFIX`
-* `_flavor__PKGNAMESUFFIX`
-* `_flavor__PLIST`
-* `_flavor__DESCR`
+* `__flavor___PKGNAMEPREFIX`
+* `__flavor___PKGNAMESUFFIX`
+* `__flavor___PLIST`
+* `__flavor___DESCR`
This list of helpers will append to their variable:
-* `_flavor__CONFLICTS`
-* `_flavor__CONFLICTS_BUILD`
-* `_flavor__CONFLICTS_INSTALL`
-* `_flavor__PKG_DEPENDS`
-* `_flavor__EXTRACT_DEPENDS`
-* `_flavor__PATCH_DEPENDS`
-* `_flavor__FETCH_DEPENDS`
-* `_flavor__BUILD_DEPENDS`
-* `_flavor__LIB_DEPENDS`
-* `_flavor__RUN_DEPENDS`
-* `_flavor__TEST_DEPENDS`
-
+* `__flavor___CONFLICTS`
+* `__flavor___CONFLICTS_BUILD`
+* `__flavor___CONFLICTS_INSTALL`
+* `__flavor___PKG_DEPENDS`
+* `__flavor___EXTRACT_DEPENDS`
+* `__flavor___PATCH_DEPENDS`
+* `__flavor___FETCH_DEPENDS`
+* `__flavor___BUILD_DEPENDS`
+* `__flavor___LIB_DEPENDS`
+* `__flavor___RUN_DEPENDS`
+* `__flavor___TEST_DEPENDS`
[[flavors-helpers-ex1]]
.Flavor Specific `PKGNAME`
[example]
====
-As all packages must have a different package name, flavors must change theirs, using `_flavor__PKGNAMEPREFIX` and `_flavor__PKGNAMESUFFIX` makes this easy:
+As all packages must have a different package name, flavors must change theirs, using `__flavor___PKGNAMEPREFIX` and `__flavor___PKGNAMESUFFIX` makes this easy:
[.programlisting]
....