Makefile.inc.docports revision 257832
1# $FreeBSD: stable/9/release/Makefile.inc.docports 257832 2013-11-08 02:24:54Z gjb $
2#
3# List of (dependent) ports that are minimally required to be
4# checked out from SVN 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 they are <category>/<port> names relative to
9# ${PORTSDIR}.
10#
11# This list of ports should be checked with the output of :
12# make all-depends-list | sed -e 's|^/usr/||' | sed -e 's|$| \\|'
13#
14
15# Get __FreeBSD_version
16.if !defined(OSVERSION)
17OSVERSION!=	/sbin/sysctl -n kern.osreldate
18.endif
19
20MINIMALDOCPORTS= \
21	ports/Mk \
22	ports/Templates \
23	ports/Tools
24
25MINIMALDOCPORTS+= \
26	ports/archivers/unzip \
27	ports/converters/libiconv \
28	ports/devel/autoconf267 \
29	ports/devel/autoconf-wrapper \
30	ports/devel/gettext \
31	ports/devel/gmake \
32	ports/devel/libtool22 \
33	ports/devel/m4 \
34	ports/devel/pkg-config \
35	ports/graphics/gd \
36	ports/graphics/jbigkit \
37	ports/graphics/jpeg \
38	ports/graphics/netpbm \
39	ports/graphics/png \
40	ports/graphics/scr2png \
41	ports/graphics/tiff \
42	ports/misc/help2man \
43	ports/print/freetype2 \
44	ports/print/ghostscript8 \
45	ports/print/ghostscript8-nox11 \
46	ports/print/gsfonts \
47	ports/textproc/docbook-410 \
48	ports/textproc/docbook-xml \
49	ports/textproc/docbook-xsl \
50	ports/textproc/docproj \
51	ports/textproc/dsssl-docbook-modular \
52	ports/textproc/expat2 \
53	ports/textproc/fixrtf \
54	ports/textproc/html \
55	ports/textproc/html2text \
56	ports/textproc/iso8879 \
57	ports/textproc/libxml2 \
58	ports/textproc/libxslt \
59	ports/textproc/linuxdoc \
60	ports/textproc/scr2txt \
61	ports/textproc/sdocbook-xml \
62	ports/textproc/xhtml \
63	ports/textproc/xmlcatmgr \
64	ports/textproc/xmlcharent \
65	ports/www/links1 \
66	ports/www/tidy
67
68.if ${MACHINE_ARCH} != "i386"
69MINIMALDOCPORTS+=	ports/textproc/openjade \
70			ports/textproc/opensp
71.else
72MINIMALDOCPORTS+=	ports/textproc/jade
73.endif
74
75.if ${OSVERSION} < 500000
76MINIMALDOCPORTS+= \
77	ports/converters/p5-MIME-Base64 \
78	ports/devel/p5-File-Spec \
79	ports/devel/p5-File-Temp \
80	ports/devel/p5-Test-Harness \
81	ports/devel/p5-Test-Simple \
82	ports/security/p5-Digest \
83	ports/security/p5-Digest-MD5 \
84	ports/textproc/p5-PodParser
85.else
86MINIMALDOCPORTS+= \
87	ports/lang/perl5.10
88.endif
89