mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
d91a18bc4c
version, and "make release -DNOPORTS" breaks without it. Noticed by: scottl Keep lang/perl5 in the list because it's the default Perl version for 4.x, and it's still possible to "make release" of HEAD on 4.x.
85 lines
2.2 KiB
Makefile
85 lines
2.2 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
# List of (dependent) ports that are minimally required to be
|
|
# checked out from CVS in order to get ${DOCPORTS} built and
|
|
# installed. It should follow the dependency list in
|
|
# ports/textproc/docproj/Makefile as much as feasible.
|
|
#
|
|
# Note that these names are /not/ CVS module names but path
|
|
# names, so the required part of the ports infrastructure will
|
|
# be cvs co'ed accordingly.
|
|
#
|
|
# This list of ports should be checked with the output of :
|
|
# make all-depends-list | sed -e 's|^/usr/||' | sed -e 's|$| \\|'
|
|
#
|
|
|
|
# Get __FreeBSD_version
|
|
.if !defined(OSVERSION)
|
|
.if exists(/sbin/sysctl)
|
|
OSVERSION!= /sbin/sysctl -n kern.osreldate
|
|
.else
|
|
OSVERSION!= /usr/sbin/sysctl -n kern.osreldate
|
|
.endif
|
|
.endif
|
|
|
|
MINIMALDOCPORTS= \
|
|
ports/Mk \
|
|
ports/Templates \
|
|
ports/Tools \
|
|
ports/archivers/unzip \
|
|
ports/converters/libiconv \
|
|
ports/devel/gettext \
|
|
ports/devel/gmake \
|
|
ports/devel/imake-4 \
|
|
ports/devel/libtool13 \
|
|
ports/devel/libtool15 \
|
|
ports/devel/p5-File-Spec \
|
|
ports/devel/p5-File-Temp \
|
|
ports/devel/pkgconfig \
|
|
ports/graphics/gd \
|
|
ports/graphics/jbigkit \
|
|
ports/graphics/jpeg \
|
|
ports/graphics/netpbm \
|
|
ports/graphics/peps \
|
|
ports/graphics/png \
|
|
ports/graphics/scr2png \
|
|
ports/graphics/tiff \
|
|
ports/lang/perl5 \
|
|
ports/lang/perl5.8 \
|
|
ports/print/freetype2 \
|
|
ports/print/ghostscript-gnu \
|
|
ports/print/ghostscript-gnu-nox11 \
|
|
ports/print/gsfonts \
|
|
ports/textproc/docbook \
|
|
ports/textproc/docbook-241 \
|
|
ports/textproc/docbook-300 \
|
|
ports/textproc/docbook-310 \
|
|
ports/textproc/docbook-400 \
|
|
ports/textproc/docbook-410 \
|
|
ports/textproc/docbook-xml \
|
|
ports/textproc/docbook-xsl \
|
|
ports/textproc/docproj \
|
|
ports/textproc/dsssl-docbook-modular \
|
|
ports/textproc/expat2 \
|
|
ports/textproc/html \
|
|
ports/textproc/iso8879 \
|
|
ports/textproc/libxml2 \
|
|
ports/textproc/libxslt \
|
|
ports/textproc/linuxdoc \
|
|
ports/textproc/scr2txt \
|
|
ports/textproc/sdocbook-xml \
|
|
ports/textproc/sgmlformat \
|
|
ports/textproc/xhtml \
|
|
ports/textproc/xmlcatmgr \
|
|
ports/www/links1 \
|
|
ports/www/tidy
|
|
.if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500036 )
|
|
MINIMALDOCPORTS+= ports/textproc/sed_inplace
|
|
.endif
|
|
.if ${MACHINE_ARCH} != "i386"
|
|
MINIMALDOCPORTS+= ports/textproc/openjade \
|
|
ports/textproc/opensp
|
|
.else
|
|
MINIMALDOCPORTS+= ports/textproc/jade
|
|
.endif
|