summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Berla <corey@berla.me>2023-01-13 15:57:31 -0800
committerCorey Berla <corey@berla.me>2023-01-13 15:57:31 -0800
commit5e0ff57a4ad82fde6fc82ce06dac0d965ee27ef1 (patch)
tree912c20de3d9fdff5372dc77e03ee098094e35b68
parent0a2173d0b5d7b96fec9e37fc03b03454087ca9a6 (diff)
downloadpango-5e0ff57a4ad82fde6fc82ce06dac0d965ee27ef1.tar.gz
docs: Fix dependency names
Dependency names need to match the namespace name exactly (including capitalization) otherwise they won't be shown as dependencies. Related libraries which are not dependencies should use the related key.
-rw-r--r--docs/pango.toml.in12
-rw-r--r--docs/pangocairo.toml.in2
-rw-r--r--docs/pangofc.toml.in2
-rw-r--r--docs/pangoft2.toml.in2
-rw-r--r--docs/pangoxft.toml.in2
5 files changed, 11 insertions, 9 deletions
diff --git a/docs/pango.toml.in b/docs/pango.toml.in
index 77b860a2..328e22f2 100644
--- a/docs/pango.toml.in
+++ b/docs/pango.toml.in
@@ -11,6 +11,8 @@ description = "Internationalized text layout and rendering"
dependencies = [ "GObject-2.0", "HarfBuzz-0.0", "PangoCairo-1.0",
"PangoFc-1.0", "PangoFT2-1.0", "PangoOT-1.0",
"PangoXft-1.0" ]
+related = [ "PangoCairo-1.0", "PangoFc-1.0", "PangoFT2-1.0", "PangoOT-1.0",
+ "PangoXft-1.0" ]
devhelp = true
search_index = true
@@ -24,27 +26,27 @@ search_index = true
description = "A text shaping library"
docs_url = "https://harfbuzz.github.io/"
- [dependencies."PangoCairo-1.0"]
+ [related."PangoCairo-1.0"]
name = "PangoCairo"
description = "Cairo support for Pango"
docs_url = "../PangoCairo/"
- [dependencies."PangoFc-1.0"]
+ [related."PangoFc-1.0"]
name = "PangoFc"
description = "Fontconfig support for Pango"
docs_url = "../PangoFc/"
- [dependencies."PangoFT2-1.0"]
+ [related."PangoFT2-1.0"]
name = "PangoFT2"
description = "Freetype support for Pango"
docs_url = "../PangoFT2/"
- [dependencies."PangoOT-1.0"]
+ [related."PangoOT-1.0"]
name = "PangoOT"
description = "OpenType support for Pango"
docs_url = "../PangoOT/"
- [dependencies."PangoXft-1.0"]
+ [related."PangoXft-1.0"]
name = "PangoXft"
description = "Xft support for Pango"
docs_url = "../PangoXft/"
diff --git a/docs/pangocairo.toml.in b/docs/pangocairo.toml.in
index 1e45744b..a01e26f9 100644
--- a/docs/pangocairo.toml.in
+++ b/docs/pangocairo.toml.in
@@ -18,7 +18,7 @@ search_index = true
docs_url = "../Pango/"
[dependencies."cairo-1.0"]
- name = "Cairo"
+ name = "cairo"
description = "A vector graphics library"
docs_url = "https://www.cairographics.org/manual/"
diff --git a/docs/pangofc.toml.in b/docs/pangofc.toml.in
index 2eafa239..dd6ae002 100644
--- a/docs/pangofc.toml.in
+++ b/docs/pangofc.toml.in
@@ -18,7 +18,7 @@ search_index = true
docs_url = "../Pango/"
[dependencies."fontconfig-2.0"]
- name = "Fontconfig"
+ name = "fontconfig"
description = "A font configuration and enumeration library"
docs_url = "https://www.fontconfig.org"
diff --git a/docs/pangoft2.toml.in b/docs/pangoft2.toml.in
index 881d49fc..9079252a 100644
--- a/docs/pangoft2.toml.in
+++ b/docs/pangoft2.toml.in
@@ -18,7 +18,7 @@ search_index = true
docs_url = "../Pango/"
[dependencies."freetype2-2.0"]
- name = "Freetype"
+ name = "freetype2"
description = "A font loading and rendering library"
docs_url = "https://www.freetype.org"
diff --git a/docs/pangoxft.toml.in b/docs/pangoxft.toml.in
index baf583e3..f6b8310f 100644
--- a/docs/pangoxft.toml.in
+++ b/docs/pangoxft.toml.in
@@ -18,7 +18,7 @@ search_index = true
docs_url = "../Pango/"
[dependencies."xft-2.0"]
- name = "Xft"
+ name = "xft"
description = "X11 client-side font rendering library"
docs_url = "https://x.org"