From dd33fa156a04cdcc3c02bd32cde162d7299e201d Mon Sep 17 00:00:00 2001 From: kim Date: Mon, 4 Sep 2000 21:41:50 +0000 Subject: Web Meta Language --- www/wml/Makefile | 46 ++++++++++ www/wml/files/md5 | 3 + www/wml/files/patch-sum | 3 + www/wml/patches/patch-aa | 52 ++++++++++++ www/wml/pkg/COMMENT | 1 + www/wml/pkg/DESCR | 8 ++ www/wml/pkg/PLIST | 213 +++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 326 insertions(+) create mode 100644 www/wml/Makefile create mode 100644 www/wml/files/md5 create mode 100644 www/wml/files/patch-sum create mode 100644 www/wml/patches/patch-aa create mode 100644 www/wml/pkg/COMMENT create mode 100644 www/wml/pkg/DESCR create mode 100644 www/wml/pkg/PLIST (limited to 'www/wml') diff --git a/www/wml/Makefile b/www/wml/Makefile new file mode 100644 index 00000000000..181556b1b2a --- /dev/null +++ b/www/wml/Makefile @@ -0,0 +1,46 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/09/04 21:41:50 kim Exp $ +# + +DISTNAME= wml-2.0.2 +CATEGORIES= www perl5 +MASTER_SITES= http://www.engelschall.com/sw/wml/distrib/ + +MAINTAINER= kim@tac.nyc.ny.us +HOMEPAGE= http://www.engelschall.com/sw/wml/ + +DEPENDS+= ncurses-*:../../devel/ncurses +DEPENDS+= p5-Bit-Vector>=5.2:../../devel/p5-Bit-Vector +DEPENDS+= p5-File-PathConvert-*:../../devel/p5-File-PathConvert +DEPENDS+= p5-Image-Size>=2.6:../../graphics/p5-Image-Size +DEPENDS+= p5-Term-ReadKey>=2.11:../../devel/p5-Term-ReadKey +#DEPENDS+= tidy-*:../../www/tidy + +USE_PERL5= yes + +CPPFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-perl=${PERL5} \ + --with-incdir=${LOCALBASE}/include \ + --with-libdir=${LOCALBASE}/lib \ + --with-openworld \ + --with-tidy=${LOCALBASE}/bin/tidy + +post-install: + cd ${PREFIX}/man/cat1 ; \ + for i in wml_aux_linklint wml_aux_tidy wml_aux_txt2html wml_p4_gm4 ; \ + do \ + ${MV} $${i}.1 $${i}.0 ; \ + done + cd ${PREFIX}/man/cat7 ; \ + for i in wml_barebone wml_std_css1 wml_std_css2 wml_std_csspos \ + wml_std_html20 wml_std_html32 wml_std_html40 wml_std_html401 \ + wml_std_wai10 wml_std_xhtml10 ; \ + do \ + ${MV} $${i}.7 $${i}.0 ; \ + done + +test: + @cd ${WRKSRC} && ${MAKE} test + +.include "../../mk/bsd.pkg.mk" diff --git a/www/wml/files/md5 b/www/wml/files/md5 new file mode 100644 index 00000000000..74cd9bfa18c --- /dev/null +++ b/www/wml/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2000/09/04 21:41:50 kim Exp $ + +MD5 (wml-2.0.2.tar.gz) = 06d379e163ab34d3e0d3d3882ba75b4d diff --git a/www/wml/files/patch-sum b/www/wml/files/patch-sum new file mode 100644 index 00000000000..990a39bcef9 --- /dev/null +++ b/www/wml/files/patch-sum @@ -0,0 +1,3 @@ +$NetBSD: patch-sum,v 1.1.1.1 2000/09/04 21:41:50 kim Exp $ + +MD5 (patch-aa) = 23560c2ab503b7c76092dcebce6b6367 diff --git a/www/wml/patches/patch-aa b/www/wml/patches/patch-aa new file mode 100644 index 00000000000..1c57b2b7a20 --- /dev/null +++ b/www/wml/patches/patch-aa @@ -0,0 +1,52 @@ +$NetBSD: patch-aa,v 1.1.1.1 2000/09/04 21:41:50 kim Exp $ + +--- configure.orig Mon May 22 17:00:34 2000 ++++ configure Mon Sep 4 16:16:44 2000 +@@ -1082,6 +1082,7 @@ + rm -f $TMPFILE + cat >$TMPFILE <<'EOT' + eval { ++ use AutoLoader 'AUTOLOAD'; + require Getopt::Long; + if ('2.16' ne 'ANY') { + Getopt::Long->require_version('2.16'); +@@ -1110,6 +1111,7 @@ + rm -f $TMPFILE + cat >$TMPFILE <<'EOT' + eval { ++ use AutoLoader 'AUTOLOAD'; + require Bit::Vector; + if ('5.2' ne 'ANY') { + Bit::Vector->require_version('5.2'); +@@ -1138,6 +1140,7 @@ + rm -f $TMPFILE + cat >$TMPFILE <<'EOT' + eval { ++ use AutoLoader 'AUTOLOAD'; + require File::PathConvert; + if ('ANY' ne 'ANY') { + File::PathConvert->require_version('ANY'); +@@ -1166,6 +1169,7 @@ + rm -f $TMPFILE + cat >$TMPFILE <<'EOT' + eval { ++ use AutoLoader 'AUTOLOAD'; + require Image::Size; + if ('2.6' ne 'ANY') { + Image::Size->require_version('2.6'); +@@ -1194,6 +1198,7 @@ + rm -f $TMPFILE + cat >$TMPFILE <<'EOT' + eval { ++ use AutoLoader 'AUTOLOAD'; + require IO::File; + if ('1.07' ne 'ANY') { + IO::File->require_version('1.07'); +@@ -1222,6 +1227,7 @@ + rm -f $TMPFILE + cat >$TMPFILE <<'EOT' + eval { ++ use AutoLoader 'AUTOLOAD'; + require Term::ReadKey; + if ('2.11' ne 'ANY') { + Term::ReadKey->require_version('2.11'); diff --git a/www/wml/pkg/COMMENT b/www/wml/pkg/COMMENT new file mode 100644 index 00000000000..90bfc3566c5 --- /dev/null +++ b/www/wml/pkg/COMMENT @@ -0,0 +1 @@ +Web Meta Language diff --git a/www/wml/pkg/DESCR b/www/wml/pkg/DESCR new file mode 100644 index 00000000000..1e248ff72c4 --- /dev/null +++ b/www/wml/pkg/DESCR @@ -0,0 +1,8 @@ +WML is a free and extensible Webdesigner's off-line HTML generation +toolkit. It consists of a control frontend driving up to nine backends +in a sequential pass-oriented filtering scheme. Each backend provides +one particular core language. For maximum power WML additionally ships +with a well-suited set of include files which provide higher-level +features build on top of the backend core languages. While not trivial +and idiot proof WML provides most of the core features real hackers +always wanted for HTML generation. diff --git a/www/wml/pkg/PLIST b/www/wml/pkg/PLIST new file mode 100644 index 00000000000..54beb271a14 --- /dev/null +++ b/www/wml/pkg/PLIST @@ -0,0 +1,213 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2000/09/04 21:41:51 kim Exp $ +bin/wmb +bin/wmd +bin/wmk +bin/wml +bin/wmu +lib/wml/aux/logos/logo-apache.gif +lib/wml/aux/logos/logo-apache.info +lib/wml/aux/logos/logo-apache.png +lib/wml/aux/logos/logo-freebsd.gif +lib/wml/aux/logos/logo-freebsd.info +lib/wml/aux/logos/logo-freebsd.png +lib/wml/aux/logos/logo-gimp.gif +lib/wml/aux/logos/logo-gimp.info +lib/wml/aux/logos/logo-gimp.png +lib/wml/aux/logos/logo-htdig.gif +lib/wml/aux/logos/logo-htdig.info +lib/wml/aux/logos/logo-htdig.png +lib/wml/aux/logos/logo-linux.gif +lib/wml/aux/logos/logo-linux.info +lib/wml/aux/logos/logo-linux.png +lib/wml/aux/logos/logo-php3.gif +lib/wml/aux/logos/logo-php3.info +lib/wml/aux/logos/logo-php3.png +lib/wml/aux/logos/logo-vim.gif +lib/wml/aux/logos/logo-vim.info +lib/wml/aux/logos/logo-vim.png +lib/wml/aux/logos/logo-wml.gif +lib/wml/aux/logos/logo-wml.info +lib/wml/aux/logos/logo-wml.png +lib/wml/aux/txt2html.dict +lib/wml/aux/weblintrc +lib/wml/aux/wmd.txt +lib/wml/exec/wml_aux_freetable +lib/wml/exec/wml_aux_htmlclean +lib/wml/exec/wml_aux_htmlinfo +lib/wml/exec/wml_aux_iselect +lib/wml/exec/wml_aux_linklint +lib/wml/exec/wml_aux_map2html +lib/wml/exec/wml_aux_tidy +lib/wml/exec/wml_aux_txt2html +lib/wml/exec/wml_aux_weblint +lib/wml/exec/wml_p1_ipp +lib/wml/exec/wml_p2_mp4h +lib/wml/exec/wml_p3_eperl +lib/wml/exec/wml_p4_gm4 +lib/wml/exec/wml_p5_divert +lib/wml/exec/wml_p6_asubst +lib/wml/exec/wml_p7_htmlfix +lib/wml/exec/wml_p8_htmlstrip +lib/wml/exec/wml_p9_slice +lib/wml/include/all.wml +lib/wml/include/des/all.wml +lib/wml/include/des/gfont.wml +lib/wml/include/des/imgbg.wml +lib/wml/include/des/imgdot.wml +lib/wml/include/des/lowsrc.wml +lib/wml/include/des/navbar.wml +lib/wml/include/des/preload.wml +lib/wml/include/des/rollover.wml +lib/wml/include/des/space.wml +lib/wml/include/des/typography.wml +lib/wml/include/fmt/all.wml +lib/wml/include/fmt/isolatin.wml +lib/wml/include/fmt/pod.wml +lib/wml/include/fmt/sdf.wml +lib/wml/include/fmt/text.wml +lib/wml/include/fmt/url.wml +lib/wml/include/fmt/verbatim.wml +lib/wml/include/fmt/xtable.wml +lib/wml/include/imp/all.wml +lib/wml/include/imp/csmap.wml +lib/wml/include/imp/fsview.wml +lib/wml/include/imp/generic.wml +lib/wml/include/mod/MakeMaker.wml +lib/wml/include/mod/all.wml +lib/wml/include/mod/version.wml +lib/wml/include/std/all.wml +lib/wml/include/std/box.wml +lib/wml/include/std/case.wml +lib/wml/include/std/grid.wml +lib/wml/include/std/href.wml +lib/wml/include/std/info.wml +lib/wml/include/std/label.wml +lib/wml/include/std/lang.wml +lib/wml/include/std/logo.wml +lib/wml/include/std/page.wml +lib/wml/include/std/tags.wml +lib/wml/include/std/toc.wml +lib/wml/include/sup/all.wml +lib/wml/include/sup/hextriple.wml +lib/wml/include/sup/path.wml +lib/wml/include/sys/all.wml +lib/wml/include/sys/bootp3.wml +lib/wml/include/sys/bootp4.wml +lib/wml/include/sys/compat1.wml +lib/wml/perl/lib/HTML/Clean.pm +lib/wml/perl/lib/auto/HTML/Clean/autosplit.ix +lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/WML/GD.pm +lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/HTML/Clean/.packlist +lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/WML/GD/.packlist +lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/WML/GD/GD.bs +lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/WML/GD/GD.so +lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/WML/GD/autosplit.ix +man/cat1/wml_aux_linklint.0 +man/cat1/wml_aux_tidy.0 +man/cat1/wml_aux_txt2html.0 +man/cat1/wml_p4_gm4.0 +man/cat7/wml_barebone.0 +man/cat7/wml_std_css1.0 +man/cat7/wml_std_css2.0 +man/cat7/wml_std_csspos.0 +man/cat7/wml_std_html20.0 +man/cat7/wml_std_html32.0 +man/cat7/wml_std_html40.0 +man/cat7/wml_std_html401.0 +man/cat7/wml_std_wai10.0 +man/cat7/wml_std_xhtml10.0 +man/man1/wmb.1 +man/man1/wmd.1 +man/man1/wmd_missing.1 +man/man1/wmk.1 +man/man1/wml.1 +man/man1/wml_aux_freetable.1 +man/man1/wml_aux_htmlclean.1 +man/man1/wml_aux_htmlinfo.1 +man/man1/wml_aux_iselect.1 +man/man1/wml_aux_map2html.1 +man/man1/wml_aux_weblint.1 +man/man1/wml_p1_ipp.1 +man/man1/wml_p2_mp4h.1 +man/man1/wml_p3_eperl.1 +man/man1/wml_p5_divert.1 +man/man1/wml_p6_asubst.1 +man/man1/wml_p7_htmlfix.1 +man/man1/wml_p8_htmlstrip.1 +man/man1/wml_p9_slice.1 +man/man1/wmu.1 +man/man3/wml::all.3 +man/man3/wml::des::all.3 +man/man3/wml::des::gfont.3 +man/man3/wml::des::imgbg.3 +man/man3/wml::des::imgdot.3 +man/man3/wml::des::lowsrc.3 +man/man3/wml::des::navbar.3 +man/man3/wml::des::preload.3 +man/man3/wml::des::rollover.3 +man/man3/wml::des::space.3 +man/man3/wml::des::typography.3 +man/man3/wml::fmt::all.3 +man/man3/wml::fmt::isolatin.3 +man/man3/wml::fmt::pod.3 +man/man3/wml::fmt::sdf.3 +man/man3/wml::fmt::text.3 +man/man3/wml::fmt::url.3 +man/man3/wml::fmt::verbatim.3 +man/man3/wml::fmt::xtable.3 +man/man3/wml::imp::all.3 +man/man3/wml::imp::csmap.3 +man/man3/wml::imp::fsview.3 +man/man3/wml::imp::generic.3 +man/man3/wml::mod::MakeMaker.3 +man/man3/wml::mod::all.3 +man/man3/wml::mod::version.3 +man/man3/wml::std::all.3 +man/man3/wml::std::box.3 +man/man3/wml::std::case.3 +man/man3/wml::std::grid.3 +man/man3/wml::std::href.3 +man/man3/wml::std::info.3 +man/man3/wml::std::label.3 +man/man3/wml::std::lang.3 +man/man3/wml::std::logo.3 +man/man3/wml::std::page.3 +man/man3/wml::std::tags.3 +man/man3/wml::std::toc.3 +man/man3/wml::sup::all.3 +man/man3/wml::sup::hextriple.3 +man/man3/wml::sup::path.3 +man/man3/wml::sys::all.3 +man/man3/wml::sys::bootp3.3 +man/man3/wml::sys::bootp4.3 +man/man3/wml::sys::compat1.3 +man/man7/wml_faq.7 +man/man7/wml_intro.7 +man/man7/wml_macros.7 +man/man7/wml_tags.7 +man/man7/wml_tutorial.7 +@dirrm lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/WML/GD +@dirrm lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/WML +@dirrm lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/HTML/Clean +@dirrm lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/HTML +@dirrm lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/auto +@dirrm lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS}/WML +@dirrm lib/wml/perl/lib/${MACHINE_ARCH}-${LOWER_OPSYS} +@dirrm lib/wml/perl/lib/auto/HTML/Clean +@dirrm lib/wml/perl/lib/auto/HTML +@dirrm lib/wml/perl/lib/auto +@dirrm lib/wml/perl/lib/HTML +@dirrm lib/wml/perl/lib +@dirrm lib/wml/perl +@dirrm lib/wml/include/sys +@dirrm lib/wml/include/sup +@dirrm lib/wml/include/std +@dirrm lib/wml/include/mod +@dirrm lib/wml/include/imp +@dirrm lib/wml/include/fmt +@dirrm lib/wml/include/des +@dirrm lib/wml/include +@dirrm lib/wml/exec +@dirrm lib/wml/aux/logos +@dirrm lib/wml/aux +@dirrm lib/wml -- cgit v1.2.3