[Midnightbsd-cvs] src [12085] trunk/gnu/usr.bin/groff/tmac: update build

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Sep 30 17:25:17 EDT 2018


Revision: 12085
          http://svnweb.midnightbsd.org/src/?rev=12085
Author:   laffer1
Date:     2018-09-30 17:25:16 -0400 (Sun, 30 Sep 2018)
Log Message:
-----------
update build

Modified Paths:
--------------
    trunk/gnu/usr.bin/groff/tmac/Makefile

Added Paths:
-----------
    trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in

Removed Paths:
-------------
    trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1

Modified: trunk/gnu/usr.bin/groff/tmac/Makefile
===================================================================
--- trunk/gnu/usr.bin/groff/tmac/Makefile	2018-09-30 21:22:09 UTC (rev 12084)
+++ trunk/gnu/usr.bin/groff/tmac/Makefile	2018-09-30 21:25:16 UTC (rev 12085)
@@ -1,6 +1,7 @@
 # $MidnightBSD$
+# $FreeBSD: stable/10/gnu/usr.bin/groff/tmac/Makefile 289638 2015-10-20 18:20:38Z bdrewery $
 
-.include <bsd.own.mk>
+.include <bsd.own.mk>			# SHAREDIR
 
 TMACOWN?=	${BINOWN}
 TMACGRP?=	${BINGRP}
@@ -15,7 +16,7 @@
 MLINKS+=	groff_me.7 me.7
 MLINKS+=	groff_mdoc.7 mdoc.7 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 \
@@ -40,46 +41,59 @@
 		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}
 
-all: ${MDOCFILES:S/$/-s/} ${STRIPFILES:S/$/-s/} ${SPECIALFILES:S/$/-s/}
+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
+
+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}
-	cd ${.OBJDIR}
-.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>

Deleted: trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1
===================================================================
--- trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1	2018-09-30 21:22:09 UTC (rev 12084)
+++ trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1	2018-09-30 21:25:16 UTC (rev 12085)
@@ -1,140 +0,0 @@
-.\" Copyright (c) 2002 Sebastien Gioria <gioria at 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.
-.\"
-.\" $MidnightBSD: src/gnu/usr.bin/groff/tmac/fr.ISO8859-1,v 1.4 2003/09/20 21:23:53 ru Exp $
-.\"
-.\"     %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\xE8mes
-.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\xE9veloppeur du noyau
-.
-.ds doc-volume-ds-USD   Documentation suppl\xE9mentaire utilisateur
-.ds doc-volume-ds-PS1   Documentation suppl\xE9mentaire 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\xE9f\xE9rence 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\xE9s
-.
-.\" .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\xC8QUE
-.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\xE8que de l'architecture ARM32 (libarm32, \-larm32)
-.ds doc-str-Lb-libc        Biblioth\xE8que\~C Standard (libc, \-lc)
-.ds doc-str-Lb-libc_r      Biblioth\xE8que\~C r\xE9entrante (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\xE8que de cryptage FreeSec (libcipher, \-lcipher)
-.ds doc-str-Lb-libcompat   Biblioth\xE8que de compatibilit\xE9 (libcompat, \-lcompat)
-.ds doc-str-Lb-libcrypt    Biblioth\xE8que de cryptage (libcrypt, \-lcrypt)
-.ds doc-str-Lb-libcurses   Biblioth\xE8que de Curses (libcurses, \-lcurses)
-.\" XXX ds doc-str-Lb-libdevinfo  Device and Resource Information Utility Library (libdevinfo, \-devinfo)
-.ds doc-str-Lb-libdevstat  Biblioth\xE8que de statistiques des p\xE9riph\xE9riques (libdevstat, \-ldevstat)
-.ds doc-str-Lb-libdisk     Biblioth\xE8que d'acc\xE8s \xE0 l'interface des labels de partitions (libdisk, \-ldisk)
-.ds doc-str-Lb-libedit     Biblioth\xE8que de l'\xE9diteur de ligne de commande (libedit, \-ledit)
-.ds doc-str-Lb-libfetch    Biblioth\xE8que 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\xE8que de l'architecture i386 (libi386, \-li386)
-.ds doc-str-Lb-libipsec    Biblioth\xE8que de contr\xF4le de politique IPsec (libipsec, \-lipsec)
-.ds doc-str-Lb-libipx      Biblioth\xE8que de support des conversions des adresses IPX (libipx, \-lipx)
-.ds doc-str-Lb-libkvm      Biblioth\xE8que d'acc\xE8s aux donn\xE9es du noyau (libkvm, \-lkvm)
-.ds doc-str-Lb-libm        Biblioth\xE8que math\xE9matique (libm, \-lm)
-.ds doc-str-Lb-libmd       Biblioth\xE8que de support des signatures (MD4, MD5, etc.) (libmd, \-lmd)
-.ds doc-str-Lb-libmenu     Biblioth\xE8que Curses des Menus (libmenu, \-lmenu)
-.ds doc-str-Lb-libnetgraph Biblioth\xE8que utilisateur Netgraph (libnetgraph, \-lnetgraph)
-.ds doc-str-Lb-libossaudio Biblioth\xE8que d'\xE9mulation audio OSS (libossaudio, \-lossaudio)
-.ds doc-str-Lb-libpam      Biblioth\xE8que PAM (libpam, \-lpam)
-.ds doc-str-Lb-libposix    Biblioth\xE8que de compatibilit\xE9 \*[Px] (libposix, \-lposix)
-.ds doc-str-Lb-libresolv   Biblioth\xE8que du r\xE9solveur DNS (libresolv, \-lresolv)
-.ds doc-str-Lb-librpcsvc   Biblioth\xE8que des services RPC (librpcsvc, \-lrpcsvc)
-.ds doc-str-Lb-libtermcap  Biblioth\xE8que d'acc\xE8s 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\xE8que d'acc\xE8s aux routines USB HID (libusbhid, \-lusbhid)
-.ds doc-str-Lb-libutil     Biblioth\xE8que des utilitaires syst\xE8me (libutil, \-lutil)
-.ds doc-str-Lb-libvgl      Biblioth\xE8que graphique vid\xE9o (libvgl, \-lvgl)
-.ds doc-str-Lb-libz        Biblioth\xE8que 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\xE9;
-.as doc-str-Rv-std-suffix " sinon la valeur \~-1 est retourn\xE9e et
-.as doc-str-Rv-std-suffix " la variable globale \*[doc-Va-font]errno\f[P]
-.as doc-str-Rv-std-suffix " est positionn\xE9e 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\xE9;
-.as doc-str-Rv-stds-suffix " sinon la valeur \~-1 est retourn\xE9e et
-.as doc-str-Rv-stds-suffix " la variable globale \*[doc-Va-font]errno\f[P]
-.as doc-str-Rv-stds-suffix " est positionn\xE9e pour indiquer l'erreur.
-.
-.ds doc-str-Rv-std0 "Si tout c'est bien pass\xE9, la valeur\~0 est retourn\xE9e;
-.as doc-str-Rv-std0 " sinon la valeur \~-1 est retourn\xE9e et
-.as doc-str-Rv-std0 " la variable globale \*[doc-Va-font]errno\f[P]
-.as doc-str-Rv-std0 " est positionn\xE9e 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\xE9,
-.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\xE9,
-.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

Added: trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in
===================================================================
--- trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in	                        (rev 0)
+++ trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in	2018-09-30 21:25:16 UTC (rev 12085)
@@ -0,0 +1,140 @@
+.\" Copyright (c) 2002 Sebastien Gioria <gioria at 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.
+.\"
+.\" $MidnightBSD$
+.\"
+.\"     %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\xE8mes
+.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\xE9veloppeur du noyau
+.
+.ds doc-volume-ds-USD   Documentation suppl\xE9mentaire utilisateur
+.ds doc-volume-ds-PS1   Documentation suppl\xE9mentaire 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\xE9f\xE9rence 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\xE9s
+.
+.\" .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\xC8QUE
+.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\xE8que de l'architecture ARM32 (libarm32, \-larm32)
+.ds doc-str-Lb-libc        Biblioth\xE8que\~C Standard (libc, \-lc)
+.ds doc-str-Lb-libc_r      Biblioth\xE8que\~C r\xE9entrante (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\xE8que de cryptage FreeSec (libcipher, \-lcipher)
+.ds doc-str-Lb-libcompat   Biblioth\xE8que de compatibilit\xE9 (libcompat, \-lcompat)
+.ds doc-str-Lb-libcrypt    Biblioth\xE8que de cryptage (libcrypt, \-lcrypt)
+.ds doc-str-Lb-libcurses   Biblioth\xE8que de Curses (libcurses, \-lcurses)
+.\" XXX ds doc-str-Lb-libdevinfo  Device and Resource Information Utility Library (libdevinfo, \-devinfo)
+.ds doc-str-Lb-libdevstat  Biblioth\xE8que de statistiques des p\xE9riph\xE9riques (libdevstat, \-ldevstat)
+.ds doc-str-Lb-libdisk     Biblioth\xE8que d'acc\xE8s \xE0 l'interface des labels de partitions (libdisk, \-ldisk)
+.ds doc-str-Lb-libedit     Biblioth\xE8que de l'\xE9diteur de ligne de commande (libedit, \-ledit)
+.ds doc-str-Lb-libfetch    Biblioth\xE8que 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\xE8que de l'architecture i386 (libi386, \-li386)
+.ds doc-str-Lb-libipsec    Biblioth\xE8que de contr\xF4le de politique IPsec (libipsec, \-lipsec)
+.ds doc-str-Lb-libipx      Biblioth\xE8que de support des conversions des adresses IPX (libipx, \-lipx)
+.ds doc-str-Lb-libkvm      Biblioth\xE8que d'acc\xE8s aux donn\xE9es du noyau (libkvm, \-lkvm)
+.ds doc-str-Lb-libm        Biblioth\xE8que math\xE9matique (libm, \-lm)
+.ds doc-str-Lb-libmd       Biblioth\xE8que de support des signatures (MD4, MD5, etc.) (libmd, \-lmd)
+.ds doc-str-Lb-libmenu     Biblioth\xE8que Curses des Menus (libmenu, \-lmenu)
+.ds doc-str-Lb-libnetgraph Biblioth\xE8que utilisateur Netgraph (libnetgraph, \-lnetgraph)
+.ds doc-str-Lb-libossaudio Biblioth\xE8que d'\xE9mulation audio OSS (libossaudio, \-lossaudio)
+.ds doc-str-Lb-libpam      Biblioth\xE8que PAM (libpam, \-lpam)
+.ds doc-str-Lb-libposix    Biblioth\xE8que de compatibilit\xE9 \*[Px] (libposix, \-lposix)
+.ds doc-str-Lb-libresolv   Biblioth\xE8que du r\xE9solveur DNS (libresolv, \-lresolv)
+.ds doc-str-Lb-librpcsvc   Biblioth\xE8que des services RPC (librpcsvc, \-lrpcsvc)
+.ds doc-str-Lb-libtermcap  Biblioth\xE8que d'acc\xE8s 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\xE8que d'acc\xE8s aux routines USB HID (libusbhid, \-lusbhid)
+.ds doc-str-Lb-libutil     Biblioth\xE8que des utilitaires syst\xE8me (libutil, \-lutil)
+.ds doc-str-Lb-libvgl      Biblioth\xE8que graphique vid\xE9o (libvgl, \-lvgl)
+.ds doc-str-Lb-libz        Biblioth\xE8que 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\xE9;
+.as doc-str-Rv-std-suffix " sinon la valeur \~-1 est retourn\xE9e et
+.as doc-str-Rv-std-suffix " la variable globale \*[doc-Va-font]errno\f[P]
+.as doc-str-Rv-std-suffix " est positionn\xE9e 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\xE9;
+.as doc-str-Rv-stds-suffix " sinon la valeur \~-1 est retourn\xE9e et
+.as doc-str-Rv-stds-suffix " la variable globale \*[doc-Va-font]errno\f[P]
+.as doc-str-Rv-stds-suffix " est positionn\xE9e pour indiquer l'erreur.
+.
+.ds doc-str-Rv-std0 "Si tout c'est bien pass\xE9, la valeur\~0 est retourn\xE9e;
+.as doc-str-Rv-std0 " sinon la valeur \~-1 est retourn\xE9e et
+.as doc-str-Rv-std0 " la variable globale \*[doc-Va-font]errno\f[P]
+.as doc-str-Rv-std0 " est positionn\xE9e 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\xE9,
+.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\xE9,
+.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


Property changes on: trunk/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list