Add the ATF data files

This change adds example files shipped with ATF as well as other data files
required to support some of its features.
This commit is contained in:
jmmv 2007-11-12 15:01:50 +00:00
parent 9d5a9c0d86
commit 78bb0388d3
10 changed files with 82 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.146 2007/10/19 03:00:33 dogcow Exp $
# $NetBSD: mi,v 1.147 2007/11/12 15:01:52 jmmv Exp $
./etc/mtree/set.misc misc-sys-root
./usr/share/dict/README misc-reference-share share
./usr/share/dict/american misc-reference-share share
@ -606,6 +606,9 @@
./usr/share/examples/amd/master misc-obsolete obsolete
./usr/share/examples/amd/net misc-amd-examples share
./usr/share/examples/apm/script misc-amd-examples share
./usr/share/examples/atf misc-atf-examples share
./usr/share/examples/atf/atf-run.hooks misc-atf-examples share
./usr/share/examples/atf/tests-results.css misc-atf-examples share
./usr/share/examples/dhcp/dhcpd.conf misc-dhcpd-examples share
./usr/share/examples/disktab/disktab misc-sys-examples share
./usr/share/examples/emul/linux/etc/LINUX_MAKEDEV misc-sys-examples share
@ -833,3 +836,10 @@
./usr/share/misc/na.postal misc-reference-share share
./usr/share/misc/zipcodes misc-reference-share share
./usr/share/postfix misc-obsolete obsolete
./usr/share/xml misc-xml-share share
./usr/share/xml/atf misc-atf-share share
./usr/share/xml/atf/tests-results.dtd misc-atf-share share
./usr/share/xml/catalog misc-xml-share share
./usr/share/xsl misc-xml-share share
./usr/share/xsl/atf misc-atf-share share
./usr/share/xsl/atf/tests-results.xsl misc-atf-share share

View File

@ -1,4 +1,4 @@
# $NetBSD: NetBSD.dist,v 1.344 2007/11/12 14:57:35 jmmv Exp $
# $NetBSD: NetBSD.dist,v 1.345 2007/11/12 15:01:52 jmmv Exp $
# @(#)4.4BSD.dist 8.1 (Berkeley) 6/13/93
# Do not customize this file as it may be overwritten on upgrades.
@ -435,6 +435,7 @@
./usr/share/examples
./usr/share/examples/amd
./usr/share/examples/apm
./usr/share/examples/atf
./usr/share/examples/dhcp
./usr/share/examples/emul
./usr/share/examples/emul/linux
@ -1047,6 +1048,10 @@
./usr/share/tmac
./usr/share/tmac/mdoc
./usr/share/tmac/mm
./usr/share/xml
./usr/share/xml/atf
./usr/share/xsl
./usr/share/xsl/atf
./usr/share/vi
./usr/share/vi/catalog
./usr/share/wscons

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.26 2007/11/12 14:57:34 jmmv Exp $
# $NetBSD: Makefile,v 1.27 2007/11/12 15:01:50 jmmv Exp $
# from @(#)Makefile 8.1 (Berkeley) 6/5/93
# Missing: ms
@ -8,7 +8,7 @@
.if ${MKSHARE} != "no" || \
make(clean) || make(cleandir) || make(distclean) || make(obj)
SUBDIR= atf dict doc examples legal man me misc mk \
tabset termcap tmac wscons zoneinfo
tabset termcap tmac wscons xml xsl zoneinfo
.if ${MKNLS} != "no"
SUBDIR+=i18n locale nls
.endif

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.14 2006/09/16 21:04:00 elad Exp $
# $NetBSD: Makefile,v 1.15 2007/11/12 15:01:50 jmmv Exp $
SUBDIR= amd apm disktab emul fstab ftpd hostapd isdn racoon \
SUBDIR= amd apm atf disktab emul fstab ftpd hostapd isdn racoon \
supfiles syslogd wsmoused
.include <bsd.subdir.mk>

View File

@ -0,0 +1,13 @@
# $NetBSD: Makefile,v 1.1 2007/11/12 15:01:50 jmmv Exp $
.include <bsd.own.mk>
SRCDIR= ${NETBSDSRCDIR}/dist/atf
.PATH: ${SRCDIR}/data
FILESDIR= /usr/share/examples/atf
FILESMODE= 444
FILES= atf-run.hooks \
tests-results.css
.include <bsd.files.mk>

10
share/xml/Makefile Normal file
View File

@ -0,0 +1,10 @@
# $NetBSD: Makefile,v 1.1 2007/11/12 15:01:50 jmmv Exp $
SUBDIR= atf
FILESDIR= /usr/share/xml
FILESMODE= 444
FILES= catalog
.include <bsd.files.mk>
.include <bsd.subdir.mk>

12
share/xml/atf/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 2007/11/12 15:01:51 jmmv Exp $
.include <bsd.own.mk>
SRCDIR= ${NETBSDSRCDIR}/dist/atf
.PATH: ${SRCDIR}/data
FILESDIR= /usr/share/xml/atf
FILESMODE= 444
FILES= tests-results.dtd
.include <bsd.prog.mk>

9
share/xml/catalog Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<!DOCTYPE catalog PUBLIC
"-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
"http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<rewriteSystem systemIdStartString="http://www.NetBSD.org/XML/atf"
rewritePrefix="/usr/share/xml/atf" />
</catalog>

5
share/xsl/Makefile Normal file
View File

@ -0,0 +1,5 @@
# $NetBSD: Makefile,v 1.1 2007/11/12 15:01:51 jmmv Exp $
SUBDIR= atf
.include <bsd.subdir.mk>

12
share/xsl/atf/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 2007/11/12 15:01:51 jmmv Exp $
.include <bsd.own.mk>
SRCDIR= ${NETBSDSRCDIR}/dist/atf
.PATH: ${SRCDIR}/data
FILESDIR= /usr/share/xsl/atf
FILESMODE= 444
FILES= tests-results.xsl
.include <bsd.prog.mk>