diff options
author | wiz <wiz@pkgsrc.org> | 2012-05-16 16:46:43 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-05-16 16:46:43 +0000 |
commit | e76ca9b1b0ca42adedff1ff6e1a8f959d0a6babc (patch) | |
tree | 7eda0194a4bdc53a112d70a592b9a7783b611d4e /doc/guide/files | |
parent | ef63e38afcb3d6aab954efcf1c005bd63f4ca92f (diff) | |
download | pkgsrc-e76ca9b1b0ca42adedff1ff6e1a8f959d0a6babc.tar.gz |
SUPPORT_FILES -> REQD_FILES
Diffstat (limited to 'doc/guide/files')
-rw-r--r-- | doc/guide/files/pkginstall.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/guide/files/pkginstall.xml b/doc/guide/files/pkginstall.xml index 2e07bc5719f..b08f7c9d4d7 100644 --- a/doc/guide/files/pkginstall.xml +++ b/doc/guide/files/pkginstall.xml @@ -1,4 +1,4 @@ -<!-- $NetBSD: pkginstall.xml,v 1.16 2009/02/10 14:50:45 joerg Exp $ --> +<!-- $NetBSD: pkginstall.xml,v 1.17 2012/05/16 16:46:43 wiz Exp $ --> <chapter id="pkginstall"> <?dbhtml filename="pkginstall.html"?> <title>The pkginstall framework</title> @@ -144,7 +144,7 @@ installation prefix:</para> <listitem> <para><varname>CONF_FILES</varname> and - <varname>SUPPORT_FILES</varname> are pairs of master and target files. + <varname>REQD_FILES</varname> are pairs of master and target files. During installation time, the master file is copied to the target one if and only if the latter does not exist. Upon deinstallation, the target file is removed provided that it was not modified by the @@ -158,13 +158,13 @@ installation prefix:</para> <listitem> <para><varname>CONF_FILES_PERMS</varname> and - <varname>SUPPORT_FILES_PERMS</varname> contain tuples describing master + <varname>REQD_FILES_PERMS</varname> contain tuples describing master files as well as their target locations. For each of them, it also specifies their owner, their group and their numeric permissions, in this order. For example:</para> <programlisting> -SUPPORT_FILES_PERMS+= ${PREFIX}/share/somefile ${VARBASE}/somefile ${ROOT_USER} ${ROOT_GROUP} 0700 +REQD_FILES_PERMS+= ${PREFIX}/share/somefile ${VARBASE}/somefile ${ROOT_USER} ${ROOT_GROUP} 0700 </programlisting> <para>The difference between the two is exactly the same as their |