Makefile.inc.docports revision 115299
1# $FreeBSD: head/release/Makefile.inc.docports 115299 2003-05-25 03:41:41Z kuriyama $
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/archivers/unzip \
25	ports/converters/libiconv \
26	ports/devel/bison \
27	ports/devel/gettext \
28	ports/devel/gmake \
29	ports/devel/libtool \
30	ports/devel/pkgconfig \
31	ports/graphics/gd \
32	ports/graphics/jbigkit \
33	ports/graphics/jpeg \
34	ports/graphics/netpbm \
35	ports/graphics/peps \
36	ports/graphics/png \
37	ports/graphics/scr2png \
38	ports/graphics/tiff \
39	ports/lang/perl5 \
40	ports/print/freetype2 \
41	ports/print/ghostscript-gnu \
42	ports/textproc/docbook \
43	ports/textproc/docbook-241 \
44	ports/textproc/docbook-300 \
45	ports/textproc/docbook-310 \
46	ports/textproc/docbook-400 \
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/html \
54	ports/textproc/iso8879 \
55	ports/textproc/libxml2 \
56	ports/textproc/libxslt \
57	ports/textproc/linuxdoc \
58	ports/textproc/mkcatalog \
59	ports/textproc/scr2txt \
60	ports/textproc/sdocbook-xml \
61	ports/textproc/sgmlformat \
62	ports/textproc/xhtml \
63	ports/www/links1 \
64	ports/www/tidy
65.if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500036 )
66MINIMALDOCPORTS+=	ports/textproc/sed_inplace
67.endif
68.if ${MACHINE_ARCH} != "i386"
69MINIMALDOCPORTS+=	ports/textproc/openjade \
70			ports/textproc/opensp
71.else
72MINIMALDOCPORTS+=	ports/textproc/jade
73.endif
74