Author: bdrewery
Date: Wed Sep 30 20:47:27 2015
New Revision: 288429
URL: https://svnweb.freebsd.org/changeset/base/288429

Log:
  Replace most of the beforeinstall: hack with FILES mechanism.
  
  This now generates the files into the OBJDIR as needed.  Some of the files
  are installed directly from the src directory.  Files which are generated
  from the src directory are renamed to .in to generate them and avoid
  colliding with the checked-in file when CURDIR=OBJDIR.
  
  The remaining beforeinstall: handling still needs to be reworked as it does
  not work well with staging for packaging.
  
  MFC after:    2 weeks
  Sponsored by: EMC / Isilon Storage Division

Added:
  head/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in
     - copied unchanged from r288405, head/gnu/usr.bin/groff/tmac/fr.ISO8859-1
  head/gnu/usr.bin/groff/tmac/mdoc.local.in
     - copied unchanged from r288405, head/gnu/usr.bin/groff/tmac/mdoc.local
  head/gnu/usr.bin/groff/tmac/ru.KOI8-R.in
     - copied unchanged from r288405, head/gnu/usr.bin/groff/tmac/ru.KOI8-R
Deleted:
  head/gnu/usr.bin/groff/tmac/fr.ISO8859-1
  head/gnu/usr.bin/groff/tmac/mdoc.local
  head/gnu/usr.bin/groff/tmac/ru.KOI8-R
Modified:
  head/gnu/usr.bin/groff/tmac/Makefile

Modified: head/gnu/usr.bin/groff/tmac/Makefile
==============================================================================
--- head/gnu/usr.bin/groff/tmac/Makefile        Wed Sep 30 20:40:51 2015        
(r288428)
+++ head/gnu/usr.bin/groff/tmac/Makefile        Wed Sep 30 20:47:27 2015        
(r288429)
@@ -14,7 +14,7 @@ MLINKS=               groff_ms.7 ms.7
 MLINKS+=       groff_me.7 me.7
 MLINKS+=       groff_mdoc.7 mdoc.samples.7
 
-CLEANFILES=    ${MAN} ${MDOCFILES:S/$/-s/} ${STRIPFILES:S/$/-s/} 
${SPECIALFILES:S/$/-s/}
+CLEANFILES=    ${MAN}
 
 NORMALFILES=   mandoc.tmac andoc.tmac an-old.tmac \
                me.tmac \
@@ -39,45 +39,59 @@ NORMALFILES=        mandoc.tmac andoc.tmac an-o
                composite.tmac \
                eqnrc \
                troffrc troffrc-end \
+               koi8-r.tmac hyphen.ru \
                hyphen.us hyphenex.us
+# These are all generated into the OBJDIR.
 SPECIALFILES=  an.tmac man.tmac s.tmac ms.tmac www.tmac
 STRIPFILES=    e.tmac doc.tmac mdoc.local
 MDOCFILES=     doc-common doc-ditroff doc-nroff doc-syms \
                fr.ISO8859-1 ru.KOI8-R
+# These are in srcdir and must be built special to avoid colliding with
+# CURDIR=OBJDIR.
+SRCFILES=      fr.ISO8859-1 mdoc.local ru.KOI8-R
+CLEANFILES+=   ${SRCFILES}
+
+FILESGROUPS=   FILES
+FILES=         ${NORMALFILES}
+FILESOWN=      ${TMACOWN}
+FILESGRP=      ${TMACGRP}
+FILESMODE=     ${TMACMODE}
+FILESDIR=      ${TMACDIR}
+MDOCFILESDIR=  ${MDOCDIR}
+
+# Setup handling for the generated and special file groups
+.for var in SPECIAL STRIP MDOC
+FILESGROUPS+=  ${var}FILES
+CLEANFILES+=   ${${var}FILES}
+${var}FILESOWN?=${TMACOWN}
+${var}FILESGRP?=${TMACGRP}
+${var}FILESMODE?=${TMACMODE}
+${var}FILESDIR?=${TMACDIR}
+.endfor
 
-all: ${MDOCFILES:S/$/-s/} ${STRIPFILES:S/$/-s/} ${SPECIALFILES:S/$/-s/}
+beforeinstall:
+.if !exists(${DESTDIR}${TMACDIR}/man.local)
+       ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
+           ${DIST_DIR}/man.local ${DESTDIR}${TMACDIR}
+.endif
 
+.include <bsd.prog.mk>
+
+# Do this after ../Makefile.inc gets included so DIST_DIR is defined.
 .for f in ${MDOCFILES} ${STRIPFILES}
-$f-s: $f
+# Generate the file from the contrib dir or src dir as needed.
+.if ${SRCFILES:M${f}} != ""
+${f}: ${.CURDIR}/${f}.in
+.else
+${f}: ${DIST_DIR}/${f}
+.endif
        sed -f ${DIST_DIR}/strip.sed ${.ALLSRC} > ${.TARGET}
 .endfor
 
 .for f in ${SPECIALFILES}
-$f-s: $f
+${f}: ${DIST_DIR}/${f}
        sed -e "s;@TMAC_AN_PREFIX@;${tmac_an_prefix};g" \
            -e "s;@TMAC_S_PREFIX@;${tmac_s_prefix};g" \
            -e "s;@PNMTOPS_NOSETPAGE@;pnmtops;g" \
                ${.ALLSRC} > ${.TARGET}
 .endfor
-
-beforeinstall:
-       (cd ${DIST_DIR} && \
-           ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
-           ${NORMALFILES} ${DESTDIR}${TMACDIR})
-       (cd ${.CURDIR} && \
-           ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
-           koi8-r.tmac hyphen.ru ${DESTDIR}${TMACDIR})
-.for f in ${STRIPFILES} ${SPECIALFILES}
-       ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
-           $f-s ${DESTDIR}${TMACDIR}/$f
-.endfor
-.for f in ${MDOCFILES}
-       ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
-           $f-s ${DESTDIR}${MDOCDIR}/$f
-.endfor
-.if !exists(${DESTDIR}${TMACDIR}/man.local)
-       ${INSTALL} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \
-           ${DIST_DIR}/man.local ${DESTDIR}${TMACDIR}
-.endif
-
-.include <bsd.prog.mk>

Copied: head/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in (from r288405, 
head/gnu/usr.bin/groff/tmac/fr.ISO8859-1)
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in Wed Sep 30 20:47:27 2015        
(r288429, copy of r288405, head/gnu/usr.bin/groff/tmac/fr.ISO8859-1)
@@ -0,0 +1,139 @@
+.\" Copyright (c) 2002 Sebastien Gioria <gio...@freebsd.org>.
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"    notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"    notice, this list of conditions and the following disclaimer in the
+.\"    documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.\"     %beginstrip%
+.
+.\" .Dt localization
+.nr doc-volume-operating-system-ateol 1
+.ds doc-volume-ds-1 Manuel des commandes utilisateur
+.ds doc-volume-ds-2 Manuel des appels syst�mes
+.ds doc-volume-ds-3 Manuel des fonctions de la librairie
+.ds doc-volume-ds-4 Manuel des interfaces du noyau
+.ds doc-volume-ds-5 Manuel des formats de fichier
+.ds doc-volume-ds-6 Manuel des jeux
+.ds doc-volume-ds-7 Manuel d'informations diverses
+.ds doc-volume-ds-8 Manuel de l'administrateur
+.ds doc-volume-ds-9 Manuel du d�veloppeur du noyau
+.
+.ds doc-volume-ds-USD   Documentation suppl�mentaire utilisateur
+.ds doc-volume-ds-PS1   Documentation suppl�mentaire du programmeur
+.ds doc-volume-ds-AMD   Documentation ancestrale
+.ds doc-volume-ds-SMM   Manuel de l'administrateur
+.ds doc-volume-ds-URM   Manuel de r�f�rence utilisateur
+.ds doc-volume-ds-PRM   Manuel du programmeur
+.ds doc-volume-ds-KM    Manuel du noyau
+.ds doc-volume-ds-IND   Index principal des manuels
+.ds doc-volume-ds-LOCAL Manuel local
+.ds doc-volume-ds-CON   Manuel des logiciels contribu�s
+.
+.\" .Os localization
+.ds doc-operating-system-ATT-7    7th\~Edition
+.ds doc-operating-system-BSD-3    3rd\~Distribution de Berkeley
+.ds doc-operating-system-BSD-4    4th\~Distribution de Berkeley
+.ds doc-operating-system-BSD-4.1  Distribution\~4.1 de Berkeley
+.ds doc-operating-system-BSD-4.2  Distribution\~4.2 de Berkeley
+.ds doc-operating-system-BSD-4.3  Distribution\~4.3 de Berkeley
+.ds doc-operating-system-BSD-4.3T Distribution 4.3-Tahoe de Berkeley
+.ds doc-operating-system-BSD-4.3R Distribution 4.3-Reno de Berkeley
+.
+.\" .Sh localization
+.ds doc-section-name        NOM
+.ds doc-section-synopsis    SYNOPSIS
+.ds doc-section-library     BIBLIOTH�QUE
+.ds doc-section-description DESCRIPTION
+.ds doc-section-see-also    VOIR
+.ds doc-section-files       FICHIERS
+.ds doc-section-authors     AUTEURS
+.
+.\" .Lb localization
+.ds doc-str-Lb-libarm32    Biblioth�que de l'architecture ARM32 (libarm32, 
\-larm32)
+.ds doc-str-Lb-libc        Biblioth�que\~C Standard (libc, \-lc)
+.ds doc-str-Lb-libc_r      Biblioth�que\~C r�entrante (libc_r, \-lc_r)
+.\" XXX ds doc-str-Lb-libcalendar Calendar Arithmetic Library (libcalendar, 
\-lcalendar)
+.\" XXX ds doc-str-Lb-libcam      Common Access Method User Library (libcam, 
\-lcam)
+.ds doc-str-Lb-libcipher   Biblioth�que de cryptage FreeSec (libcipher, 
\-lcipher)
+.ds doc-str-Lb-libcompat   Biblioth�que de compatibilit� (libcompat, \-lcompat)
+.ds doc-str-Lb-libcrypt    Biblioth�que de cryptage (libcrypt, \-lcrypt)
+.ds doc-str-Lb-libcurses   Biblioth�que de Curses (libcurses, \-lcurses)
+.\" XXX ds doc-str-Lb-libdevinfo  Device and Resource Information Utility 
Library (libdevinfo, \-devinfo)
+.ds doc-str-Lb-libdevstat  Biblioth�que de statistiques des p�riph�riques 
(libdevstat, \-ldevstat)
+.ds doc-str-Lb-libdisk     Biblioth�que d'acc�s � l'interface des labels de 
partitions (libdisk, \-ldisk)
+.ds doc-str-Lb-libedit     Biblioth�que de l'�diteur de ligne de commande 
(libedit, \-ledit)
+.ds doc-str-Lb-libfetch    Biblioth�que de transfert de fichier (libfetch, 
\-lfetch)
+.\" XXX ds doc-str-Lb-libgeom     Userland API Library for kernel GEOM 
subsystem (libgeom, \-lgeom)
+.ds doc-str-Lb-libi386     Biblioth�que de l'architecture i386 (libi386, 
\-li386)
+.ds doc-str-Lb-libipsec    Biblioth�que de contr�le de politique IPsec 
(libipsec, \-lipsec)
+.ds doc-str-Lb-libkvm      Biblioth�que d'acc�s aux donn�es du noyau (libkvm, 
\-lkvm)
+.ds doc-str-Lb-libm        Biblioth�que math�matique (libm, \-lm)
+.ds doc-str-Lb-libmd       Biblioth�que de support des signatures (MD4, MD5, 
etc.) (libmd, \-lmd)
+.ds doc-str-Lb-libmenu     Biblioth�que Curses des Menus (libmenu, \-lmenu)
+.ds doc-str-Lb-libnetgraph Biblioth�que utilisateur Netgraph (libnetgraph, 
\-lnetgraph)
+.ds doc-str-Lb-libossaudio Biblioth�que d'�mulation audio OSS (libossaudio, 
\-lossaudio)
+.ds doc-str-Lb-libpam      Biblioth�que PAM (libpam, \-lpam)
+.ds doc-str-Lb-libposix    Biblioth�que de compatibilit� \*[Px] (libposix, 
\-lposix)
+.ds doc-str-Lb-libresolv   Biblioth�que du r�solveur DNS (libresolv, \-lresolv)
+.ds doc-str-Lb-librpcsvc   Biblioth�que des services RPC (librpcsvc, \-lrpcsvc)
+.ds doc-str-Lb-libtermcap  Biblioth�que d'acc�s aux terminaux (libtermcap, 
\-ltermcap)
+.\" XXX ds doc-str-Lb-libufs      UFS File System Access Library (libufs, 
\-lufs)
+.\" XXX ds doc-str-Lb-libugidfw   File System Firewall Interface Library 
(libugidfw, \-lugidfw)
+.ds doc-str-Lb-libusbhid   Biblioth�que d'acc�s aux routines USB HID 
(libusbhid, \-lusbhid)
+.ds doc-str-Lb-libutil     Biblioth�que des utilitaires syst�me (libutil, 
\-lutil)
+.ds doc-str-Lb-libvgl      Biblioth�que graphique vid�o (libvgl, \-lvgl)
+.ds doc-str-Lb-libz        Biblioth�que de compression (libz, \-lz)
+.
+.\" .Rv localization
+.ds doc-str-Rv-std-prefix "La
+.ds doc-str-Rv-std-suffix "fonction retourne la valeur\~0 si tout c'est bien 
pass�;
+.as doc-str-Rv-std-suffix " sinon la valeur \~-1 est retourn�e et
+.as doc-str-Rv-std-suffix " la variable globale \*[doc-Va-font]errno\f[P]
+.as doc-str-Rv-std-suffix " est positionn�e pour indiquer l'erreur.
+.
+.ds doc-str-Rv-stds-prefix "Les
+.ds doc-str-Rv-stds-and    "et
+.ds doc-str-Rv-stds-suffix "fonctions retournent la valeur\~0 si tout c'est 
bien pass�;
+.as doc-str-Rv-stds-suffix " sinon la valeur \~-1 est retourn�e et
+.as doc-str-Rv-stds-suffix " la variable globale \*[doc-Va-font]errno\f[P]
+.as doc-str-Rv-stds-suffix " est positionn�e pour indiquer l'erreur.
+.
+.ds doc-str-Rv-std0 "Si tout c'est bien pass�, la valeur\~0 est retourn�e;
+.as doc-str-Rv-std0 " sinon la valeur \~-1 est retourn�e et
+.as doc-str-Rv-std0 " la variable globale \*[doc-Va-font]errno\f[P]
+.as doc-str-Rv-std0 " est positionn�e pour indiquer l'erreur.
+.
+.\" .Ex localization
+.ds doc-str-Ex-std-prefix "La commande
+.ds doc-str-Ex-std-suffix " retourne\~0 si tout c'est bien pass�,
+.as doc-str-Ex-std-suffix " et\~>0 si une erreur survient.
+.
+.ds doc-str-Ex-stds-prefix "Les commandes
+.ds doc-str-Ex-stds-suffix "retournent\~0 si tout c'est bien pass�,
+.as doc-str-Ex-stds-suffix " et\~>0 si une erreur survient.
+.
+.\" .Ar localization
+.ds doc-str-Ar-default "fichier\ .\|.\|.
+.
+.\" .%A localization
+.ds doc-str-dpra "et

Copied: head/gnu/usr.bin/groff/tmac/mdoc.local.in (from r288405, 
head/gnu/usr.bin/groff/tmac/mdoc.local)
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/gnu/usr.bin/groff/tmac/mdoc.local.in   Wed Sep 30 20:47:27 2015        
(r288429, copy of r288405, head/gnu/usr.bin/groff/tmac/mdoc.local)
@@ -0,0 +1,80 @@
+.\" Copyright (c) 2001-2004 Ruslan Ermilov <r...@freebsd.org>.
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"    notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"    notice, this list of conditions and the following disclaimer in the
+.\"    documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.\"     %beginstrip%
+.
+.eo
+.
+.
+.ds doc-volume-operating-system FreeBSD
+.
+.\" FreeBSD .Lb values
+.ds doc-str-Lb-libarchive  Streaming Archive Library (libarchive, \-larchive)
+.ds doc-str-Lb-libbluetooth Bluetooth User Library (libbluetooth, \-lbluetooth)
+.ds doc-str-Lb-libcapsicum Capsicum Library (libcapsicum, \-lcapsicum)
+.ds doc-str-Lb-libcuse     Userland Character Device Library (libcuse, \-lcuse)
+.ds doc-str-Lb-libedit     Line Editor and History Library (libedit, \-ledit)
+.ds doc-str-Lb-libefi      EFI Runtime Services Library (libefi, \-lefi)
+.ds doc-str-Lb-libelf      ELF Parsing Library (libelf, \-lelf)
+.ds doc-str-Lb-libexecinfo Backtrace Access Library (libexecinfo, \-lexecinfo)
+.ds doc-str-Lb-libfetch    File Transfer Library (libfetch, \-lfetch)
+.ds doc-str-Lb-libnv       Name/value pairs library (libnv, \-lnv)
+.ds doc-str-Lb-libpmc      Performance Monitoring Counters Interface Library 
(libpmc, \-lpmc)
+.ds doc-str-Lb-libproc     Processor Monitoring and Analysis Library (libproc, 
\-lproc)
+.ds doc-str-Lb-libprocstat Process and Files Information Retrieval 
(libprocstat, \-lprocstat)
+.ds doc-str-Lb-librtld_db  Run-time Linker Debugging Library (librtld_db, 
\-lrtld_db)
+.ds doc-str-Lb-libsbuf     Safe String Composition Library (libsbuf, \-lsbuf)
+.ds doc-str-Lb-libstdthreads C11 Threads Library (libstdthreads, \-lstdthreads)
+.
+.\" Default .Os value
+.ds doc-default-operating-system FreeBSD\~11.0
+.
+.\" FreeBSD releases not found in doc-common
+.ds doc-operating-system-FreeBSD-2.2.9  2.2.9
+.ds doc-operating-system-FreeBSD-7.4    7.4
+.ds doc-operating-system-FreeBSD-8.3    8.3
+.ds doc-operating-system-FreeBSD-8.4    8.4
+.ds doc-operating-system-FreeBSD-9.1    9.1
+.ds doc-operating-system-FreeBSD-9.2    9.2
+.ds doc-operating-system-FreeBSD-9.3    9.3
+.ds doc-operating-system-FreeBSD-10.0   10.0
+.ds doc-operating-system-FreeBSD-10.1   10.1
+.ds doc-operating-system-FreeBSD-11.0   11.0
+.
+.\" Definitions for other *BSDs not (yet) in doc-common
+.ds doc-operating-system-NetBSD-7.0     7.0
+.
+.\" Definitions not (yet) in doc-syms
+.
+.ec
+.
+.\" Locale support
+.if d doc-locale \{\
+.  ie "\*[doc-locale]"ru.KOI8-R" \
+.    mso mdoc/ru.KOI8-R
+.  el \{ .if "\*[doc-locale]"fr.ISO8859-1" \
+.    mso mdoc/fr.ISO8859-1
+.\}\}

Copied: head/gnu/usr.bin/groff/tmac/ru.KOI8-R.in (from r288405, 
head/gnu/usr.bin/groff/tmac/ru.KOI8-R)
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/gnu/usr.bin/groff/tmac/ru.KOI8-R.in    Wed Sep 30 20:47:27 2015        
(r288429, copy of r288405, head/gnu/usr.bin/groff/tmac/ru.KOI8-R)
@@ -0,0 +1,139 @@
+.\" Copyright (c) 2001-2003 Ruslan Ermilov <r...@freebsd.org>.
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"    notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"    notice, this list of conditions and the following disclaimer in the
+.\"    documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.\"     %beginstrip%
+.
+.\" ����������� .Dt
+.nr doc-volume-operating-system-ateol 1
+.ds doc-volume-ds-1 ���������� �������� ������
+.ds doc-volume-ds-2 ���������� ��������� �������
+.ds doc-volume-ds-3 ���������� ������������ �������
+.ds doc-volume-ds-4 ���������� ����������� ����
+.ds doc-volume-ds-5 ���������� �������� ������
+.ds doc-volume-ds-6 ���������� ���
+.ds doc-volume-ds-7 ���������� ������ ����������
+.ds doc-volume-ds-8 ���������� ���������� ��������������
+.ds doc-volume-ds-9 ���������� ������������ ����
+.
+.ds doc-volume-ds-USD   �������������� ��������� ��� ������������
+.ds doc-volume-ds-PS1   �������������� ��������� ��� ������������
+.ds doc-volume-ds-AMD   ��������� ��������������� �����������
+.ds doc-volume-ds-SMM   ����������� ���������� ��������������
+.ds doc-volume-ds-URM   ���������� �����������
+.ds doc-volume-ds-PRM   ����������� ������������
+.ds doc-volume-ds-KM    ����������� �� ����
+.ds doc-volume-ds-IND   �������� ���������� ��������� �����������
+.ds doc-volume-ds-LOCAL ��������� ����������
+.ds doc-volume-ds-CON   ���������� �� ��������������� ��
+.
+.\" ����������� .Os
+.ds doc-operating-system-ATT-7    7�\~��������
+.ds doc-operating-system-BSD-3    3�\~����������� ������
+.ds doc-operating-system-BSD-4    4�\~����������� ������
+.ds doc-operating-system-BSD-4.1  4.1\~����������� ������
+.ds doc-operating-system-BSD-4.2  4.2\~����������� ������
+.ds doc-operating-system-BSD-4.3  4.3\~����������� ������
+.ds doc-operating-system-BSD-4.3T 4.3-Tahoe ����������� ������
+.ds doc-operating-system-BSD-4.3R 4.3-Reno ����������� ������
+.
+.\" ����������� .Sh
+.ds doc-section-name        ��������
+.ds doc-section-synopsis    ���������
+.ds doc-section-library     ����������
+.ds doc-section-description ��������
+.ds doc-section-see-also    ������
+.ds doc-section-files       �����
+.ds doc-section-authors     ������
+.
+.\" ����������� .Lb (XXX)
+.ds doc-str-Lb-libarm32    ���������� ����������� ARM32 (libarm32, \-larm32)
+.ds doc-str-Lb-libc        ����������� ����������\~C (libc, \-lc)
+.ds doc-str-Lb-libc_r      ��������������� ����������\~C (libc_r, \-lc_r)
+.ds doc-str-Lb-libcalendar ���������� ����������� ���������� (libcalendar, 
\-lcalendar)
+.ds doc-str-Lb-libcam      ���������������� ���������� CAM (libcam, \-lcam)
+.ds doc-str-Lb-libcipher   ���������� ������������ FreeSec (libcipher, 
\-lcipher)
+.ds doc-str-Lb-libcompat   ���������� ������������� (libcompat, \-lcompat)
+.ds doc-str-Lb-libcrypt    ���������� ������������ (libcrypt, \-lcrypt)
+.\" XXX ds doc-str-Lb-libcurses   Curses Library (libcurses, \-lcurses)
+.\" XXX ds doc-str-Lb-libdevinfo  Device and Resource Information Utility 
Library (libdevinfo, \-ldevinfo)
+.ds doc-str-Lb-libdevstat  ���������� ���������� ��������� (libdevstat, 
\-ldevstat)
+.\" XXX ds doc-str-Lb-libdisk     Interface to Slice and Partition Labels 
Library (libdisk, \-ldisk)
+.ds doc-str-Lb-libedit     ���������� ��������� ��������� ������ (libedit, 
\-ledit)
+.ds doc-str-Lb-libfetch    ���������� �������� �������� (libfetch, \-lfetch)
+.ds doc-str-Lb-libgeom     ���������������� API ���������� ���������� ���� 
GEOM (libgeom, \-lgeom)
+.ds doc-str-Lb-libi386     ���������� ����������� i386 (libi386, \-li386)
+.ds doc-str-Lb-libipsec    ���������� ���������� IPsec Policy (libipsec, 
\-lipsec)
+.ds doc-str-Lb-libkvm      ���������� ������� � ������ ���� (libkvm, \-lkvm)
+.ds doc-str-Lb-libm        ���������� �������������� ������� (libm, \-lm)
+.\" XXX ds doc-str-Lb-libmd       Message Digest (MD4, MD5, � �.�.) Support 
Library (libmd, \-lmd)
+.\" XXX ds doc-str-Lb-libmenu     Curses Menu Library (libmenu, \-lmenu)
+.ds doc-str-Lb-libnetgraph ���������������� ���������� Netgraph (libnetgraph, 
\-lnetgraph)
+.ds doc-str-Lb-libossaudio ���������� �������� OSS Audio (libossaudio, 
\-lossaudio)
+.ds doc-str-Lb-libpam      ���������� PAM (libpam, \-lpam)
+.ds doc-str-Lb-libposix    ���������� \*[Px]\-������������� (libposix, 
\-lposix)
+.\" XXX ds doc-str-Lb-libresolv   DNS Resolver Library (libresolv, \-lresolv)
+.ds doc-str-Lb-librpcsvc   ���������� ����� RPC (librpcsvc, \-lrpcsvc)
+.ds doc-str-Lb-libtermcap  ���������� ������� � termcap (libtermcap, 
\-ltermcap)
+.ds doc-str-Lb-libufs      ���������� ������� � �������� ������� UFS (libufs, 
\-lufs)
+.\" XXX ds doc-str-Lb-libugidfw   File System Firewall Interface Library 
(libugidfw, \-lugidfw)
+.ds doc-str-Lb-libusbhid   ���������� ������� ������� � USB HID (libusbhid, 
\-lusbhid)
+.ds doc-str-Lb-libutil     ���������� ��������� ������ (libutil, \-lutil)
+.ds doc-str-Lb-libvgl      ���������� �����-������� (libvgl, \-lvgl)
+.ds doc-str-Lb-libz        ���������� ���������� (libz, \-lz)
+.
+.\" ����������� .Rv
+.ds doc-str-Rv-std-prefix "�������
+.ds doc-str-Rv-std-suffix "����������\~0 � ������ ��������� ����������;
+.as doc-str-Rv-std-suffix " � ��������� ������ ��� ����������\~-1,
+.as doc-str-Rv-std-suffix " � ��� ������ ����������� � ����������
+.as doc-str-Rv-std-suffix " ���������� \*[doc-Va-font]errno\f[P].
+.
+.ds doc-str-Rv-stds-prefix "�������
+.ds doc-str-Rv-stds-and    "�
+.ds doc-str-Rv-stds-suffix "����������\~0 � ������ ��������� ����������;
+.as doc-str-Rv-stds-suffix " � ��������� ������ ��� ����������\~-1,
+.as doc-str-Rv-stds-suffix " � ��� ������ ����������� � ����������
+.as doc-str-Rv-stds-suffix " ���������� \*[doc-Va-font]errno\f[P].
+.
+.ds doc-str-Rv-std0 "� ������ ��������� ���������� ������������\~0;
+.as doc-str-Rv-std0 " � ��������� ������ ������������\~-1,
+.as doc-str-Rv-std0 " � ��� ������ ����������� � ����������
+.as doc-str-Rv-std0 " ���������� \*[doc-Va-font]errno\f[P].
+.
+.\" ����������� .Ex
+.ds doc-str-Ex-std-prefix "�������
+.ds doc-str-Ex-std-suffix "����������\~0 � ������ ��������� ����������
+.as doc-str-Ex-std-suffix " �\~>0 � ������ ������������� ������.
+.
+.ds doc-str-Ex-stds-prefix "�������
+.ds doc-str-Ex-stds-suffix "����������\~0 � ������ ��������� ����������
+.as doc-str-Ex-stds-suffix " �\~>0 � ������ ������������� ������.
+.
+.\" ����������� .Ar
+.ds doc-str-Ar-default "����\ .\|.\|.
+.
+.\" ����������� .%A
+.ds doc-str-dpra "�
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to