aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Alessi <alessi@robertalessi.net>2024-03-26 16:13:39 +0100
committerRobert Alessi <alessi@robertalessi.net>2024-03-26 16:13:39 +0100
commitd3baaa76f7b58184f7a21e12758e8f363ff3a8d5 (patch)
tree580dcb013e848fec425c9d62dcd01cd86c416909
parentde17259259af4c80c6aaa40645daf7af667350ff (diff)
downloadtexlive-openbsd-d3baaa76f7b58184f7a21e12758e8f363ff3a8d5.tar.gz
obsd-tlmgr: updated README
-rw-r--r--README.md30
1 files changed, 20 insertions, 10 deletions
diff --git a/README.md b/README.md
index ac95748..39ebe0c 100644
--- a/README.md
+++ b/README.md
@@ -197,27 +197,37 @@ Package installation and updates
197To install new packages and to update already existing ones, do: 197To install new packages and to update already existing ones, do:
198 198
199```sh 199```sh
200tlmgr update --all 200obsd-tlmgr update --all
201``` 201```
202 202
203This command requires the `subversion` package.
204
205In TeX Live for OpenBSD, `obsd-tlmgr` replaces the standard `tlmgr`
206command which is the command name of TeX Live package manager.
207`obsd-tlmgr` can be used with the exact same options and arguments as
208`tlmgr`.
209
203More information can be found [on this 210More information can be found [on this
204page](https://tug.org/texlive/pkginstall.html) or in the [full `tlmgr` 211page](https://tug.org/texlive/pkginstall.html) or in the [full `tlmgr`
205documentation](https://tug.org/texlive/doc/tlmgr.html). 212documentation](https://tug.org/texlive/doc/tlmgr.html).
206 213
207A number of scripts that are shipped within TeX Live are found in the 214`obsd-tlmgr` updates the links to a number of scripts that are shipped
208`texmf-dist/scripts/` directory. Most of them can be invoked by users 215within TeX Live and are found in the `texmf-dist/scripts/` directory.
209from symlinks installed along with the usual TeX Live binaries. As 216Most of them can be invoked by users from symlinks installed along
210OpenBSD is not officially supported by TeX Live, it is important to 217with the usual TeX Live binaries. As OpenBSD is not officially
211note that `tlmgr update --all` *does not update these links,* 218supported by TeX Live, it is important to note that the standard
212especially in the case of scripts that come with new packages. To 219`tlmgr update --all` *does not update these links,* especially in the
213update all existing links and install new links after using `tlmgr`, 220case of scripts that come with new packages.
214do: 221
222Users who for some reason wish to continue using `tlmgr` are advised
223to update all existing links and install new links after using
224`tlmgr`, like so:
215 225
216```sh 226```sh
217mktexobsdsymlinks 227mktexobsdsymlinks
218``` 228```
219 229
220This command requires the `subversion` package and must be rerun as needed. 230Just as `obsd-tlmgr`, this command requires the `subversion` package.
221 231
222Building the sources 232Building the sources
223-------------------- 233--------------------