Makefile.inc.docports revision 134603
1# $FreeBSD: head/release/Makefile.inc.docports 134603 2004-09-01 14:36:48Z ru $
2#
3# List of (dependent) ports that are minimally required to be
4# checked out from CVS in order to get ${DOCPORTS} built and
5# installed.  It should follow the dependency list in
6# ports/textproc/docproj/Makefile as much as feasible.
7#
8# Note that these names are /not/ CVS module names but path
9# names, so the required part of the ports infrastructure will
10# be cvs co'ed accordingly.
11#
12# This list of ports should be checked with the output of :
13# make all-depends-list | sed -e 's|^/usr/||' | sed -e 's|$| \\|'
14#
15
16# Get __FreeBSD_version
17.if !defined(OSVERSION)
18OSVERSION!=	/sbin/sysctl -n kern.osreldate
19.endif
20
21MINIMALDOCPORTS= \
22	ports/Mk \
23	ports/Templates \
24	ports/Tools
25
26MINIMALDOCPORTS+= \
27	ports/archivers/unzip \
28	ports/converters/libiconv \
29	ports/devel/gettext \
30	ports/devel/gmake \
31	ports/devel/libtool13 \
32	ports/devel/libtool15 \
33	ports/devel/pkgconfig \
34	ports/graphics/gd \
35	ports/graphics/jbigkit \
36	ports/graphics/jpeg \
37	ports/graphics/netpbm \
38	ports/graphics/png \
39	ports/graphics/scr2png \
40	ports/graphics/tiff \
41	ports/print/freetype2 \
42	ports/print/ghostscript-gnu \
43	ports/print/ghostscript-gnu-nox11 \
44	ports/print/gsfonts \
45	ports/textproc/docbook-410 \
46	ports/textproc/docbook-xml \
47	ports/textproc/docbook-xsl \
48	ports/textproc/docproj \
49	ports/textproc/dsssl-docbook-modular \
50	ports/textproc/expat2 \
51	ports/textproc/html \
52	ports/textproc/iso8879 \
53	ports/textproc/libxml2 \
54	ports/textproc/libxslt \
55	ports/textproc/linuxdoc \
56	ports/textproc/scr2txt \
57	ports/textproc/sdocbook-xml \
58	ports/textproc/xhtml \
59	ports/textproc/xmlcatmgr \
60	ports/www/links1 \
61	ports/www/tidy
62
63.if ${MACHINE_ARCH} != "i386"
64MINIMALDOCPORTS+=	ports/textproc/openjade \
65			ports/textproc/opensp
66.else
67MINIMALDOCPORTS+=	ports/textproc/jade
68.endif
69
70.if ${OSVERSION} < 500000
71MINIMALDOCPORTS+= \
72	ports/converters/p5-MIME-Base64 \
73	ports/devel/p5-File-Spec \
74	ports/devel/p5-File-Temp \
75	ports/devel/p5-Test-Harness \
76	ports/devel/p5-Test-Simple \
77	ports/security/p5-Digest \
78	ports/security/p5-Digest-MD5 \
79	ports/textproc/p5-PodParser
80.else
81MINIMALDOCPORTS+= \
82	ports/lang/perl5.8
83.endif
84