Makefile.inc.docports revision 134603
176278Sjoerg# $FreeBSD: head/release/Makefile.inc.docports 134603 2004-09-01 14:36:48Z ru $
276278Sjoerg#
376278Sjoerg# List of (dependent) ports that are minimally required to be
476278Sjoerg# checked out from CVS in order to get ${DOCPORTS} built and
580258Sdd# installed.  It should follow the dependency list in
680258Sdd# ports/textproc/docproj/Makefile as much as feasible.
776278Sjoerg#
876278Sjoerg# Note that these names are /not/ CVS module names but path
976278Sjoerg# names, so the required part of the ports infrastructure will
1076278Sjoerg# be cvs co'ed accordingly.
1176278Sjoerg#
12132006Smurray# This list of ports should be checked with the output of :
13132006Smurray# make all-depends-list | sed -e 's|^/usr/||' | sed -e 's|$| \\|'
14132006Smurray#
15100709Sru
16100709Sru# Get __FreeBSD_version
17100709Sru.if !defined(OSVERSION)
18100709SruOSVERSION!=	/sbin/sysctl -n kern.osreldate
19100709Sru.endif
20100709Sru
2176278SjoergMINIMALDOCPORTS= \
2276278Sjoerg	ports/Mk \
23118424Sjhay	ports/Templates \
24134603Sru	ports/Tools
25134603Sru
26134603SruMINIMALDOCPORTS+= \
2776278Sjoerg	ports/archivers/unzip \
2881349Sjhay	ports/converters/libiconv \
2976278Sjoerg	ports/devel/gettext \
3076278Sjoerg	ports/devel/gmake \
31118424Sjhay	ports/devel/libtool13 \
32132006Smurray	ports/devel/libtool15 \
3381250Snik	ports/devel/pkgconfig \
34124375Snyan	ports/graphics/gd \
3592506Sjhay	ports/graphics/jbigkit \
3676278Sjoerg	ports/graphics/jpeg \
3776278Sjoerg	ports/graphics/netpbm \
3876278Sjoerg	ports/graphics/png \
3981646Sbmah	ports/graphics/scr2png \
4076278Sjoerg	ports/graphics/tiff \
4181646Sbmah	ports/print/freetype2 \
4283909Sbmah	ports/print/ghostscript-gnu \
43125237Snyan	ports/print/ghostscript-gnu-nox11 \
44132006Smurray	ports/print/gsfonts \
4576278Sjoerg	ports/textproc/docbook-410 \
46114059Smurray	ports/textproc/docbook-xml \
47114059Smurray	ports/textproc/docbook-xsl \
4876278Sjoerg	ports/textproc/docproj \
4976278Sjoerg	ports/textproc/dsssl-docbook-modular \
5096822Sbmah	ports/textproc/expat2 \
5176278Sjoerg	ports/textproc/html \
5276278Sjoerg	ports/textproc/iso8879 \
5381250Snik	ports/textproc/libxml2 \
5481250Snik	ports/textproc/libxslt \
5576278Sjoerg	ports/textproc/linuxdoc \
56114059Smurray	ports/textproc/scr2txt \
57114059Smurray	ports/textproc/sdocbook-xml \
5896826Sbmah	ports/textproc/xhtml \
59118424Sjhay	ports/textproc/xmlcatmgr \
6099918Sbmah	ports/www/links1 \
6176278Sjoerg	ports/www/tidy
62134603Sru
63106730Stmm.if ${MACHINE_ARCH} != "i386"
64115299SkuriyamaMINIMALDOCPORTS+=	ports/textproc/openjade \
65115299Skuriyama			ports/textproc/opensp
6682344Swilko.else
6782344SwilkoMINIMALDOCPORTS+=	ports/textproc/jade
6882344Swilko.endif
69134603Sru
70134603Sru.if ${OSVERSION} < 500000
71134603SruMINIMALDOCPORTS+= \
72134603Sru	ports/converters/p5-MIME-Base64 \
73134603Sru	ports/devel/p5-File-Spec \
74134603Sru	ports/devel/p5-File-Temp \
75134603Sru	ports/devel/p5-Test-Harness \
76134603Sru	ports/devel/p5-Test-Simple \
77134603Sru	ports/security/p5-Digest \
78134603Sru	ports/security/p5-Digest-MD5 \
79134603Sru	ports/textproc/p5-PodParser
80134603Sru.else
81134603SruMINIMALDOCPORTS+= \
82134603Sru	ports/lang/perl5.8
83134603Sru.endif
84