Makefile.inc.docports revision 106200
1# $FreeBSD: head/release/Makefile.inc.docports 106200 2002-10-30 09:20:50Z 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
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/textproc/scr2txt \
39	ports/graphics/tiff \
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/docproj \
49	ports/textproc/dsssl-docbook-modular \
50	ports/textproc/expat2 \
51	ports/textproc/html \
52	ports/textproc/iso8879 \
53	ports/textproc/libxml2 \
54	ports/textproc/libxslt \
55	ports/textproc/linuxdoc \
56	ports/textproc/mkcatalog \
57	ports/textproc/sgmlformat \
58	ports/textproc/xhtml \
59	ports/www/links1 \
60	ports/www/tidy
61.if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500036 )
62MINIMALDOCPORTS+=	ports/textproc/sed_inplace
63.endif
64.if ${MACHINE_ARCH} == "alpha"
65MINIMALDOCPORTS+=	ports/textproc/openjade
66.else
67MINIMALDOCPORTS+=	ports/textproc/jade
68.endif
69