Makefile.inc.docports revision 132006
1# $FreeBSD: head/release/Makefile.inc.docports 132006 2004-07-12 04:09:39Z murray $
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)
18.if exists(/sbin/sysctl)
19OSVERSION!=	/sbin/sysctl -n kern.osreldate
20.else
21OSVERSION!=	/usr/sbin/sysctl -n kern.osreldate
22.endif
23.endif
24
25MINIMALDOCPORTS= \
26	ports/Mk \
27	ports/Templates \
28	ports/Tools \
29	ports/archivers/unzip \
30	ports/converters/libiconv \
31	ports/devel/gettext \
32	ports/devel/gmake \
33	ports/devel/imake-4 \
34	ports/devel/libtool13 \
35	ports/devel/libtool15 \
36	ports/devel/pkgconfig \
37	ports/graphics/gd \
38	ports/graphics/jbigkit \
39	ports/graphics/jpeg \
40	ports/graphics/netpbm \
41	ports/graphics/peps \
42	ports/graphics/png \
43	ports/graphics/scr2png \
44	ports/graphics/tiff \
45	ports/lang/perl5 \
46	ports/print/freetype2 \
47	ports/print/ghostscript-gnu \
48	ports/print/ghostscript-gnu-nox11 \
49	ports/print/gsfonts \
50	ports/textproc/docbook \
51	ports/textproc/docbook-241 \
52	ports/textproc/docbook-300 \
53	ports/textproc/docbook-310 \
54	ports/textproc/docbook-400 \
55	ports/textproc/docbook-410 \
56	ports/textproc/docbook-xml \
57	ports/textproc/docbook-xsl \
58	ports/textproc/docproj \
59	ports/textproc/dsssl-docbook-modular \
60	ports/textproc/expat2 \
61	ports/textproc/html \
62	ports/textproc/iso8879 \
63	ports/textproc/libxml2 \
64	ports/textproc/libxslt \
65	ports/textproc/linuxdoc \
66	ports/textproc/scr2txt \
67	ports/textproc/sdocbook-xml \
68	ports/textproc/sgmlformat \
69	ports/textproc/xhtml \
70	ports/textproc/xmlcatmgr \
71	ports/www/links1 \
72	ports/www/tidy
73.if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500036 )
74MINIMALDOCPORTS+=	ports/textproc/sed_inplace
75.endif
76.if ${MACHINE_ARCH} != "i386"
77MINIMALDOCPORTS+=	ports/textproc/openjade \
78			ports/textproc/opensp
79.else
80MINIMALDOCPORTS+=	ports/textproc/jade
81.endif
82