CVS commit: src/external/bsd/atf/share/doc/atf

2010-11-02 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Tue Nov  2 14:41:32 UTC 2010

Modified Files:
src/external/bsd/atf/share/doc/atf: Makefile

Log Message:
Do substitute __TESTSDIR__ when generating atf(7) man page.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/atf/share/doc/atf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/atf/share/doc/atf/Makefile
diff -u src/external/bsd/atf/share/doc/atf/Makefile:1.3 src/external/bsd/atf/share/doc/atf/Makefile:1.4
--- src/external/bsd/atf/share/doc/atf/Makefile:1.3	Fri Jun  4 08:33:41 2010
+++ src/external/bsd/atf/share/doc/atf/Makefile	Tue Nov  2 14:41:32 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2010/06/04 08:33:41 jmmv Exp $
+# $NetBSD: Makefile,v 1.4 2010/11/02 14:41:32 njoly Exp $
 
 .include bsd.own.mk
 
@@ -18,7 +18,9 @@
 
 CLEANFILES+=	atf.7 atf.7.tmp
 atf.7: atf.7.in
-	${TOOL_SED} -e 's,__DOCDIR__,/usr/share/doc/atf,g' \
+	${TOOL_SED} \
+	-e 's,__DOCDIR__,/usr/share/doc/atf,g' \
+	-e 's,__TESTSDIR__,/usr/tests,g' \
 	${SRCDIR}/doc/atf.7.in atf.7.tmp
 	mv atf.7.tmp atf.7
 



CVS commit: src/external/bsd/atf/share

2009-12-13 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Sun Dec 13 21:14:18 UTC 2009

Modified Files:
src/external/bsd/atf/share/examples/atf: Makefile
src/external/bsd/atf/share/xml/atf: Makefile
src/external/bsd/atf/share/xsl/atf: Makefile

Log Message:
Wrap these with .if ${MKSHARE} != no


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/atf/share/examples/atf/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/atf/share/xml/atf/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/atf/share/xsl/atf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/atf/share/examples/atf/Makefile
diff -u src/external/bsd/atf/share/examples/atf/Makefile:1.1 src/external/bsd/atf/share/examples/atf/Makefile:1.2
--- src/external/bsd/atf/share/examples/atf/Makefile:1.1	Mon Jan 19 07:13:05 2009
+++ src/external/bsd/atf/share/examples/atf/Makefile	Sun Dec 13 21:14:18 2009
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.1 2009/01/19 07:13:05 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2009/12/13 21:14:18 snj Exp $
 
 .include bsd.own.mk
 
+.if ${MKSHARE} != no
 SRCDIR=		${NETBSDSRCDIR}/external/bsd/atf/dist
 .PATH:		${SRCDIR}/data
 
@@ -9,5 +10,6 @@
 FILESMODE=	444
 FILES=		atf-run.hooks \
 		tests-results.css
+.endif
 
 .include bsd.prog.mk

Index: src/external/bsd/atf/share/xml/atf/Makefile
diff -u src/external/bsd/atf/share/xml/atf/Makefile:1.1 src/external/bsd/atf/share/xml/atf/Makefile:1.2
--- src/external/bsd/atf/share/xml/atf/Makefile:1.1	Mon Jan 19 07:13:05 2009
+++ src/external/bsd/atf/share/xml/atf/Makefile	Sun Dec 13 21:14:18 2009
@@ -1,12 +1,14 @@
-# $NetBSD: Makefile,v 1.1 2009/01/19 07:13:05 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2009/12/13 21:14:18 snj Exp $
 
 .include bsd.own.mk
 
+.if ${MKSHARE} != no
 SRCDIR=		${NETBSDSRCDIR}/external/bsd/atf/dist
 .PATH:		${SRCDIR}/data
 
 FILESDIR=	/usr/share/xml/atf
 FILESMODE=	444
 FILES=		tests-results.dtd
+.endif
 
 .include bsd.prog.mk

Index: src/external/bsd/atf/share/xsl/atf/Makefile
diff -u src/external/bsd/atf/share/xsl/atf/Makefile:1.1 src/external/bsd/atf/share/xsl/atf/Makefile:1.2
--- src/external/bsd/atf/share/xsl/atf/Makefile:1.1	Mon Jan 19 07:13:05 2009
+++ src/external/bsd/atf/share/xsl/atf/Makefile	Sun Dec 13 21:14:18 2009
@@ -1,12 +1,14 @@
-# $NetBSD: Makefile,v 1.1 2009/01/19 07:13:05 jmmv Exp $
+# $NetBSD: Makefile,v 1.2 2009/12/13 21:14:18 snj Exp $
 
 .include bsd.own.mk
 
+.if ${MKSHARE} != no
 SRCDIR=		${NETBSDSRCDIR}/external/bsd/atf/dist
 .PATH:		${SRCDIR}/data
 
 FILESDIR=	/usr/share/xsl/atf
 FILESMODE=	444
 FILES=		tests-results.xsl
+.endif
 
 .include bsd.prog.mk