Makefile.inc.docports revision 182812
1# $FreeBSD: head/release/Makefile.inc.docports 182812 2008-09-06 10:12:52Z jhay $
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/libtool15 \
32	ports/devel/pkg-config \
33	ports/graphics/gd \
34	ports/graphics/jbigkit \
35	ports/graphics/jpeg \
36	ports/graphics/netpbm \
37	ports/graphics/png \
38	ports/graphics/scr2png \
39	ports/graphics/tiff \
40	ports/print/freetype2 \
41	ports/print/ghostscript8 \
42	ports/print/ghostscript8-nox11 \
43	ports/print/gsfonts \
44	ports/textproc/docbook-410 \
45	ports/textproc/docbook-xml \
46	ports/textproc/docbook-xsl \
47	ports/textproc/docproj \
48	ports/textproc/dsssl-docbook-modular \
49	ports/textproc/expat2 \
50	ports/textproc/fixrtf \
51	ports/textproc/html \
52	ports/textproc/html2text \
53	ports/textproc/iso8879 \
54	ports/textproc/libxml2 \
55	ports/textproc/libxslt \
56	ports/textproc/linuxdoc \
57	ports/textproc/scr2txt \
58	ports/textproc/sdocbook-xml \
59	ports/textproc/xhtml \
60	ports/textproc/xmlcatmgr \
61	ports/textproc/xmlcharent \
62	ports/www/links1 \
63	ports/www/tidy
64
65.if ${MACHINE_ARCH} != "i386"
66MINIMALDOCPORTS+=	ports/textproc/openjade \
67			ports/textproc/opensp
68.else
69MINIMALDOCPORTS+=	ports/textproc/jade
70.endif
71
72.if ${OSVERSION} < 500000
73MINIMALDOCPORTS+= \
74	ports/converters/p5-MIME-Base64 \
75	ports/devel/p5-File-Spec \
76	ports/devel/p5-File-Temp \
77	ports/devel/p5-Test-Harness \
78	ports/devel/p5-Test-Simple \
79	ports/security/p5-Digest \
80	ports/security/p5-Digest-MD5 \
81	ports/textproc/p5-PodParser
82.else
83MINIMALDOCPORTS+= \
84	ports/lang/perl5.8
85.endif
86