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