1# $FreeBSD$
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/archivers/zip \
28	ports/databases/sqlite3 \
29	ports/devel/apr1 \
30	ports/devel/autoconf \
31	ports/devel/autoconf-wrapper \
32	ports/devel/bison \
33	ports/devel/cmake \
34	ports/devel/cmake-modules \
35	ports/devel/gettext \
36	ports/devel/gmake \
37	ports/devel/libcheck \
38	ports/devel/libpthread-stubs \
39	ports/devel/libtool \
40	ports/devel/m4 \
41	ports/devel/p5-Locale-gettext \
42	ports/devel/pkgconf \
43	ports/devel/scons \
44	ports/devel/subversion \
45	ports/devel/xorg-macros \
46	ports/dns/libidn \
47	ports/graphics/gd \
48	ports/graphics/jasper \
49	ports/graphics/jbig2dec \
50	ports/graphics/jbigkit \
51	ports/graphics/jpeg \
52	ports/graphics/lcms2 \
53	ports/graphics/netpbm \
54	ports/graphics/peps \
55	ports/graphics/png \
56	ports/graphics/scr2png \
57	ports/graphics/svgalib \
58	ports/graphics/tiff \
59	ports/misc/help2man \
60	ports/ports-mgmt/pkg \
61	ports/print/freetype2 \
62	ports/print/ghostscript9-nox11 \
63	ports/print/gsfonts \
64	ports/print/libpaper \
65	ports/security/libgcrypt \
66	ports/security/libgpg-error \
67	ports/shells/bash \
68	ports/textproc/docbook \
69	ports/textproc/docbook-410 \
70	ports/textproc/docbook-420 \
71	ports/textproc/docbook-430 \
72	ports/textproc/docbook-440 \
73	ports/textproc/docbook-450 \
74	ports/textproc/docbook-500 \
75	ports/textproc/docbook-sk \
76	ports/textproc/docbook-xml \
77	ports/textproc/docbook-xml-430 \
78	ports/textproc/docbook-xml-440 \
79	ports/textproc/docbook-xml-450 \
80	ports/textproc/docbook-xsl-ns \
81	ports/textproc/docproj \
82	ports/textproc/expat2 \
83	ports/textproc/html2text \
84	ports/textproc/igor \
85	ports/textproc/iso-schematron-xslt \
86	ports/textproc/iso8879 \
87	ports/textproc/libxml2 \
88	ports/textproc/libxslt \
89	ports/textproc/p5-XML-Parser \
90	ports/textproc/scr2txt \
91	ports/textproc/xhtml \
92	ports/textproc/xmlcatmgr \
93	ports/textproc/xmlcharent \
94	ports/www/links1 \
95	ports/www/serf \
96	ports/x11-fonts/fontconfig \
97	ports/x11-fonts/xf86bigfontproto \
98	ports/x11-toolkits/libXt \
99	ports/x11/bigreqsproto \
100	ports/x11/inputproto \
101	ports/x11/kbproto \
102	ports/x11/libICE \
103	ports/x11/libSM \
104	ports/x11/libX11 \
105	ports/x11/libXau \
106	ports/x11/libXdmcp \
107	ports/x11/libXext \
108	ports/x11/libxcb \
109	ports/x11/xcb-proto \
110	ports/x11/xcmiscproto \
111	ports/x11/xextproto \
112	ports/x11/xproto \
113	ports/x11/xtrans
114