svn commit: r385789 - in head/www/yaws: . files
Jimmy Olgeni
olgeni at FreeBSD.org
Fri May 8 15:40:47 UTC 2015
Author: olgeni
Date: Fri May 8 15:40:45 2015
New Revision: 385789
URL: https://svnweb.freebsd.org/changeset/ports/385789
Log:
Upgrade to version 1.99.
Deleted:
head/www/yaws/files/patch-scripts__gen-yaws
head/www/yaws/files/patch-scripts_gen-yaws-generated
head/www/yaws/files/patch-src_Makefile
head/www/yaws/files/pkg-message.in
head/www/yaws/files/yaws.conf.sample
Modified:
head/www/yaws/Makefile
head/www/yaws/distinfo (contents, props changed)
head/www/yaws/files/patch-man_yaws.conf.5 (contents, props changed)
head/www/yaws/files/patch-man_yaws__api.5 (contents, props changed)
head/www/yaws/pkg-plist (contents, props changed)
Modified: head/www/yaws/Makefile
==============================================================================
--- head/www/yaws/Makefile Fri May 8 14:14:53 2015 (r385788)
+++ head/www/yaws/Makefile Fri May 8 15:40:45 2015 (r385789)
@@ -1,31 +1,36 @@
# $FreeBSD$
PORTNAME= yaws
-PORTVERSION= 1.98
-DISTVERSIONPREFIX= ${PORTNAME}-
+PORTVERSION= 1.99
CATEGORIES= www devel
+MASTER_SITES= http://yaws.hyber.org/download/
MAINTAINER= olgeni at FreeBSD.org
COMMENT= Web server for dynamic content written in Erlang
-BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang
-RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang
+LICENSE= BSD3CLAUSE
+BUILD_DEPENDS= erl:${PORTSDIR}/lang/erlang
+RUN_DEPENDS:= ${BUILD_DEPENDS}
+
+OPTIONS_SUB= yes
PLIST_SUB= VERSION="${PORTVERSION}"
-USES= gmake
-USE_AUTOTOOLS= autoconf
-USE_GITHUB= yes
+USES= autoreconf gmake libtool pathfix
-GH_ACCOUNT= klacke
+OPTIONS_DEFINE= WWW
-APPDIR= ${PREFIX}/lib/erlang/lib/yaws-${PORTVERSION}
+WWW_DESC= Install sample applications
-SUB_FILES= pkg-message
+APPDIR= ${PREFIX}/lib/erlang/lib/yaws-${PORTVERSION}
+GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir=/var
+CONFIGURE_ENV= wwwdir=${WWWDIR} yawsdir=${APPDIR}
+INSTALL_TARGET= install-strip
+PATHFIX_MAKEFILEIN=Makefile.am
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
post-extract:
@${FIND} ${WRKSRC} -name .empty -delete
@@ -33,39 +38,21 @@ post-extract:
post-patch:
@${REINPLACE_CMD} -e 's|!!PREFIX!!|${PREFIX}|g' \
${WRKSRC}/man/yaws_api.5 \
- ${WRKSRC}/man/yaws.conf.5 \
- ${WRKSRC}/README \
- ${WRKSRC}/scripts/gen-yaws \
- ${WRKSRC}/scripts/gen-yaws-generated
- @${REINPLACE_CMD} -e 's|!!VERSION!!|${PORTVERSION}|g' \
- ${WRKSRC}/scripts/gen-yaws
+ ${WRKSRC}/man/yaws.conf.5
@${FIND} ${WRKSRC} \( -name \*.orig -or -name \*.bak \) -delete
-do-install:
- @${INSTALL_SCRIPT} ${WRKSRC}/bin/yaws ${STAGEDIR}${PREFIX}/bin
- @${MKDIR} ${STAGEDIR}${ETCDIR}
- @${INSTALL_DATA} ${FILESDIR}/yaws.conf.sample ${STAGEDIR}${ETCDIR}/yaws.conf.dist
- @${MKDIR} ${STAGEDIR}${APPDIR}/ebin
- @${MKDIR} ${STAGEDIR}${APPDIR}/examples
- @${MKDIR} ${STAGEDIR}${APPDIR}/examples/ebin
- @${MKDIR} ${STAGEDIR}${APPDIR}/examples/src
- @${MKDIR} ${STAGEDIR}${APPDIR}/include
- @${MKDIR} ${STAGEDIR}${APPDIR}/priv
- @${MKDIR} ${STAGEDIR}${APPDIR}/priv/lib
- @${MKDIR} ${STAGEDIR}${APPDIR}/src
- @${MKDIR} ${STAGEDIR}${PREFIX}/www/yaws
- @${INSTALL_DATA} ${WRKSRC}/ebin/* ${STAGEDIR}${APPDIR}/ebin
- @${INSTALL_DATA} ${WRKSRC}/examples/ebin/* ${STAGEDIR}${APPDIR}/examples/ebin
- @${INSTALL_DATA} ${WRKSRC}/examples/src/* ${STAGEDIR}${APPDIR}/examples/src
-.for FILE in envelope.xsd mime.types soap.xsd wsdl.xsd soap-envelope.xsd wsdl11soap12.xsd xml.xsd
- @${INSTALL_DATA} ${WRKSRC}/priv/${FILE} ${STAGEDIR}${APPDIR}/priv
-.endfor
- @${INSTALL_PROGRAM} ${WRKSRC}/priv/epam ${STAGEDIR}${APPDIR}/priv
- @${INSTALL_LIB} ${WRKSRC}/priv/lib/* ${STAGEDIR}${APPDIR}/priv/lib
- @${INSTALL_DATA} ${WRKSRC}/include/* ${STAGEDIR}${APPDIR}/include
- @${INSTALL_DATA} ${WRKSRC}/src/*.?rl ${STAGEDIR}${APPDIR}/src
- @cd ${WRKSRC}/www && (${FIND} * | ${CPIO} -pu ${STAGEDIR}${WWWDIR})
- @${INSTALL_MAN} ${WRKSRC}/man/*.1 ${STAGEDIR}${MANPREFIX}/man/man1
- @${INSTALL_MAN} ${WRKSRC}/man/*.5 ${STAGEDIR}${MANPREFIX}/man/man5
+post-install:
+.if ${PORT_OPTIONS:MWWW}
+ ${MV} ${STAGEDIR}${PREFIX}/www/www/* ${STAGEDIR}${WWWDIR}
+ ${RMDIR} ${STAGEDIR}${PREFIX}/www/www
+.else
+ ${RM} -r ${STAGEDIR}${PREFIX}/www
+.endif
+ ${MV} ${STAGEDIR}${PREFIX}/etc/yaws/yaws-cert.pem \
+ ${STAGEDIR}${PREFIX}/etc/yaws/yaws-cert.pem.sample
+ ${MV} ${STAGEDIR}${PREFIX}/etc/yaws/yaws-key.pem \
+ ${STAGEDIR}${PREFIX}/etc/yaws/yaws-key.pem.sample
+ ${MV} ${STAGEDIR}${PREFIX}/etc/yaws/yaws.conf.template \
+ ${STAGEDIR}${PREFIX}/etc/yaws/yaws.conf.sample
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Modified: head/www/yaws/distinfo
==============================================================================
--- head/www/yaws/distinfo Fri May 8 14:14:53 2015 (r385788)
+++ head/www/yaws/distinfo Fri May 8 15:40:45 2015 (r385789)
@@ -1,2 +1,2 @@
-SHA256 (klacke-yaws-yaws-1.98_GH0.tar.gz) = 0507dde2c1ced6f62450b2477d2b1bfc695f1bb900a855faa0abaf3e103984c1
-SIZE (klacke-yaws-yaws-1.98_GH0.tar.gz) = 1137255
+SHA256 (yaws-1.99.tar.gz) = 94f1ef7c588c2c864c0755c565bdd0f3a359878ed344d54774974449d0abfe14
+SIZE (yaws-1.99.tar.gz) = 1605550
Modified: head/www/yaws/files/patch-man_yaws.conf.5
==============================================================================
--- head/www/yaws/files/patch-man_yaws.conf.5 Fri May 8 14:14:53 2015 (r385788)
+++ head/www/yaws/files/patch-man_yaws.conf.5 Fri May 8 15:40:45 2015 (r385789)
@@ -1,10 +1,7 @@
-Modified by Kenji Rikitake
-$FreeBSD$
-
---- man/yaws.conf.5.orig
+--- man/yaws.conf.5.orig 2014-10-17 15:18:20 UTC
+++ man/yaws.conf.5
@@ -1,6 +1,6 @@
- .TH YAWS.CONF "5" "" "" "User Commands"
+ .TH YAWS.CONF "5" "" "" "User Commands" -*- nroff -*-
.SH NAME
-/etc/yaws/yaws.conf \- Configuration file for the Yaws web server
+!!PREFIX!!/etc/yaws/yaws.conf \- Configuration file for the Yaws web server
Modified: head/www/yaws/files/patch-man_yaws__api.5
==============================================================================
--- head/www/yaws/files/patch-man_yaws__api.5 Fri May 8 14:14:53 2015 (r385788)
+++ head/www/yaws/files/patch-man_yaws__api.5 Fri May 8 15:40:45 2015 (r385789)
@@ -1,9 +1,6 @@
-
-$FreeBSD$
-
---- man/yaws_api.5.orig
+--- man/yaws_api.5.orig 2014-10-17 15:18:20 UTC
+++ man/yaws_api.5
-@@ -379,7 +379,7 @@
+@@ -490,7 +490,7 @@ The purpose of the feature is to cleanup
.TP
\fBsetconf(Gconf, Groups)\fR
This function is intended for embedded mode in yaws. It makes it possible
Modified: head/www/yaws/pkg-plist
==============================================================================
--- head/www/yaws/pkg-plist Fri May 8 14:14:53 2015 (r385788)
+++ head/www/yaws/pkg-plist Fri May 8 15:40:45 2015 (r385789)
@@ -1,11 +1,8 @@
bin/yaws
- at unexec if cmp -s %D/%%ETCDIR%%/yaws.conf %D/%%ETCDIR%%/yaws.conf.dist; then rm -f %D/%%ETCDIR%%/yaws.conf; fi
-%%ETCDIR%%/yaws.conf.dist
- at exec test -f %B/yaws.conf || cp %B/%f %B/yaws.conf
-man/man1/yaws.1.gz
-man/man5/yaws.conf.5.gz
-man/man5/yaws_api.5.gz
-man/man5/yaws_soap_lib.5.gz
+etc/rc.d/yaws
+ at sample %%ETCDIR%%/yaws-cert.pem.sample
+ at sample %%ETCDIR%%/yaws-key.pem.sample
+ at sample %%ETCDIR%%/yaws.conf.sample
lib/erlang/lib/yaws-%%VERSION%%/ebin/haxe.beam
lib/erlang/lib/yaws-%%VERSION%%/ebin/json.beam
lib/erlang/lib/yaws-%%VERSION%%/ebin/json2.beam
@@ -65,12 +62,6 @@ lib/erlang/lib/yaws-%%VERSION%%/examples
lib/erlang/lib/yaws-%%VERSION%%/examples/ebin/myappmod.beam
lib/erlang/lib/yaws-%%VERSION%%/examples/ebin/server_sent_events.beam
lib/erlang/lib/yaws-%%VERSION%%/examples/ebin/shopcart.beam
-lib/erlang/lib/yaws-%%VERSION%%/examples/src/Makefile
-lib/erlang/lib/yaws-%%VERSION%%/examples/src/advanced_echo_callback.erl
-lib/erlang/lib/yaws-%%VERSION%%/examples/src/authmod_gssapi.erl
-lib/erlang/lib/yaws-%%VERSION%%/examples/src/basic_echo_callback.erl
-lib/erlang/lib/yaws-%%VERSION%%/examples/src/basic_echo_callback_extended.erl
-lib/erlang/lib/yaws-%%VERSION%%/examples/src/server_sent_events.erl
lib/erlang/lib/yaws-%%VERSION%%/include/soap-envelope.hrl
lib/erlang/lib/yaws-%%VERSION%%/include/soap.hrl
lib/erlang/lib/yaws-%%VERSION%%/include/wsdl11soap12.hrl
@@ -89,280 +80,240 @@ lib/erlang/lib/yaws-%%VERSION%%/priv/soa
lib/erlang/lib/yaws-%%VERSION%%/priv/wsdl.xsd
lib/erlang/lib/yaws-%%VERSION%%/priv/wsdl11soap12.xsd
lib/erlang/lib/yaws-%%VERSION%%/priv/xml.xsd
-lib/erlang/lib/yaws-%%VERSION%%/src/haxe.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/json.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/json2.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/jsonrpc.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/mime_type_c.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/mime_types.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_api.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_app.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_appmod_cgi.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_appmod_dav.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_appmod_fcgi.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_cgi.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_compile.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_config.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_configure.hrl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_ctl.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_debug.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_debug.hrl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_dime.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_exhtml.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_generated.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_html.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_jsonrpc.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_log.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_log_file_h.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_logger.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_ls.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_multipart.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_outmod.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_pam.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_revproxy.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_rpc.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_rss.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_runmod_lock.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_sendfile.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_server.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_session_server.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_shaper.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_soap12_lib.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_soap_lib.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_soap_srv.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_sse.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_stats.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_sup.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_sup_restarts.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_ticker.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_trace.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_vdir.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_websockets.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_xmlrpc.erl
-lib/erlang/lib/yaws-%%VERSION%%/src/yaws_zlib.erl
-%%WWWDIR%%/END
-%%WWWDIR%%/END2
-%%WWWDIR%%/HEAD
-%%WWWDIR%%/Makefile
-%%WWWDIR%%/TAB.inc
-%%WWWDIR%%/api.yaws
-%%WWWDIR%%/appmods.yaws
-%%WWWDIR%%/arg.yaws
-%%WWWDIR%%/arg2.yaws
-%%WWWDIR%%/bindings.yaws
-%%WWWDIR%%/cgi-bin/foo.py
-%%WWWDIR%%/cgi.yaws
-%%WWWDIR%%/code.yaws
-%%WWWDIR%%/code/Makefile
-%%WWWDIR%%/code/myappmod.beam
-%%WWWDIR%%/code/myappmod.erl
-%%WWWDIR%%/compile_layout.dia
-%%WWWDIR%%/compile_layout.png
-%%WWWDIR%%/configuration.yaws
-%%WWWDIR%%/contact.yaws
-%%WWWDIR%%/contributors.txt
-%%WWWDIR%%/cookies.yaws
-%%WWWDIR%%/doc.yaws
-%%WWWDIR%%/dynamic.yaws
-%%WWWDIR%%/embed.yaws
-%%WWWDIR%%/examples.yaws
-%%WWWDIR%%/favicon.ico
-%%WWWDIR%%/form.yaws
-%%WWWDIR%%/haxe_intro.yaws
-%%WWWDIR%%/haxe_sample.html
-%%WWWDIR%%/haxe_sample.yaws
-%%WWWDIR%%/icons/README
-%%WWWDIR%%/icons/a.gif
-%%WWWDIR%%/icons/alert.black.gif
-%%WWWDIR%%/icons/alert.red.gif
-%%WWWDIR%%/icons/apache_pb.gif
-%%WWWDIR%%/icons/back.gif
-%%WWWDIR%%/icons/ball.gray.gif
-%%WWWDIR%%/icons/ball.red.gif
-%%WWWDIR%%/icons/binary.gif
-%%WWWDIR%%/icons/binhex.gif
-%%WWWDIR%%/icons/blank.gif
-%%WWWDIR%%/icons/bomb.gif
-%%WWWDIR%%/icons/box1.gif
-%%WWWDIR%%/icons/box2.gif
-%%WWWDIR%%/icons/broken.gif
-%%WWWDIR%%/icons/burst.gif
-%%WWWDIR%%/icons/c.gif
-%%WWWDIR%%/icons/comp.blue.gif
-%%WWWDIR%%/icons/comp.gray.gif
-%%WWWDIR%%/icons/compressed.gif
-%%WWWDIR%%/icons/continued.gif
-%%WWWDIR%%/icons/dir.gif
-%%WWWDIR%%/icons/down.gif
-%%WWWDIR%%/icons/dvi.gif
-%%WWWDIR%%/icons/erl.gif
-%%WWWDIR%%/icons/f.gif
-%%WWWDIR%%/icons/folder.gif
-%%WWWDIR%%/icons/folder.open.gif
-%%WWWDIR%%/icons/folder.sec.gif
-%%WWWDIR%%/icons/forward.gif
-%%WWWDIR%%/icons/generic.gif
-%%WWWDIR%%/icons/generic.red.gif
-%%WWWDIR%%/icons/generic.sec.gif
-%%WWWDIR%%/icons/gnu-head-tiny.jpg
-%%WWWDIR%%/icons/hand.right.gif
-%%WWWDIR%%/icons/hand.up.gif
-%%WWWDIR%%/icons/hrl.gif
-%%WWWDIR%%/icons/icon.sheet.gif
-%%WWWDIR%%/icons/image1.gif
-%%WWWDIR%%/icons/image2.gif
-%%WWWDIR%%/icons/image3.gif
-%%WWWDIR%%/icons/index.gif
-%%WWWDIR%%/icons/layout.gif
-%%WWWDIR%%/icons/left.gif
-%%WWWDIR%%/icons/link.gif
-%%WWWDIR%%/icons/mailman-large.jpg
-%%WWWDIR%%/icons/mailman.jpg
-%%WWWDIR%%/icons/movie.gif
-%%WWWDIR%%/icons/p.gif
-%%WWWDIR%%/icons/patch.gif
-%%WWWDIR%%/icons/pdf.gif
-%%WWWDIR%%/icons/php4.gif
-%%WWWDIR%%/icons/pie0.gif
-%%WWWDIR%%/icons/pie1.gif
-%%WWWDIR%%/icons/pie2.gif
-%%WWWDIR%%/icons/pie3.gif
-%%WWWDIR%%/icons/pie4.gif
-%%WWWDIR%%/icons/pie5.gif
-%%WWWDIR%%/icons/pie6.gif
-%%WWWDIR%%/icons/pie7.gif
-%%WWWDIR%%/icons/pie8.gif
-%%WWWDIR%%/icons/portal.gif
-%%WWWDIR%%/icons/ps.gif
-%%WWWDIR%%/icons/quill.gif
-%%WWWDIR%%/icons/right.gif
-%%WWWDIR%%/icons/screw1.gif
-%%WWWDIR%%/icons/screw2.gif
-%%WWWDIR%%/icons/script.gif
-%%WWWDIR%%/icons/small/README.txt
-%%WWWDIR%%/icons/small/back.gif
-%%WWWDIR%%/icons/small/binary.gif
-%%WWWDIR%%/icons/small/binhex.gif
-%%WWWDIR%%/icons/small/blank.gif
-%%WWWDIR%%/icons/small/broken.gif
-%%WWWDIR%%/icons/small/burst.gif
-%%WWWDIR%%/icons/small/comp1.gif
-%%WWWDIR%%/icons/small/comp2.gif
-%%WWWDIR%%/icons/small/compressed.gif
-%%WWWDIR%%/icons/small/continued.gif
-%%WWWDIR%%/icons/small/dir.gif
-%%WWWDIR%%/icons/small/dir2.gif
-%%WWWDIR%%/icons/small/doc.gif
-%%WWWDIR%%/icons/small/forward.gif
-%%WWWDIR%%/icons/small/generic.gif
-%%WWWDIR%%/icons/small/generic2.gif
-%%WWWDIR%%/icons/small/generic3.gif
-%%WWWDIR%%/icons/small/image.gif
-%%WWWDIR%%/icons/small/image2.gif
-%%WWWDIR%%/icons/small/index.gif
-%%WWWDIR%%/icons/small/key.gif
-%%WWWDIR%%/icons/small/movie.gif
-%%WWWDIR%%/icons/small/patch.gif
-%%WWWDIR%%/icons/small/ps.gif
-%%WWWDIR%%/icons/small/rainbow.gif
-%%WWWDIR%%/icons/small/sound.gif
-%%WWWDIR%%/icons/small/sound2.gif
-%%WWWDIR%%/icons/small/tar.gif
-%%WWWDIR%%/icons/small/text.gif
-%%WWWDIR%%/icons/small/transfer.gif
-%%WWWDIR%%/icons/small/unknown.gif
-%%WWWDIR%%/icons/small/uu.gif
-%%WWWDIR%%/icons/sound1.gif
-%%WWWDIR%%/icons/sound2.gif
-%%WWWDIR%%/icons/sphere1.gif
-%%WWWDIR%%/icons/sphere2.gif
-%%WWWDIR%%/icons/tar.gif
-%%WWWDIR%%/icons/tex.gif
-%%WWWDIR%%/icons/text.gif
-%%WWWDIR%%/icons/transfer.gif
-%%WWWDIR%%/icons/unknown.gif
-%%WWWDIR%%/icons/up.gif
-%%WWWDIR%%/icons/uu.gif
-%%WWWDIR%%/icons/uuencoded.gif
-%%WWWDIR%%/icons/world1.gif
-%%WWWDIR%%/icons/world2.gif
-%%WWWDIR%%/icons/yaws.gif
-%%WWWDIR%%/icons/yawsY.gif
-%%WWWDIR%%/icons/yaws_head.gif
-%%WWWDIR%%/icons/yaws_pb.gif
-%%WWWDIR%%/icons/yaws_y.gif
-%%WWWDIR%%/index.yaws
-%%WWWDIR%%/internals.yaws
-%%WWWDIR%%/jsolait/jsolait.js
-%%WWWDIR%%/jsolait/lib/jsonrpc.js
-%%WWWDIR%%/jsolait/lib/urllib.js
-%%WWWDIR%%/json_intro.yaws
-%%WWWDIR%%/json_sample.html
-%%WWWDIR%%/json_sample.yaws
-%%WWWDIR%%/logger_mod.yaws
-%%WWWDIR%%/man.yaws
-%%WWWDIR%%/motivation.yaws
-%%WWWDIR%%/news
-%%WWWDIR%%/pcookie.yaws
-%%WWWDIR%%/post.yaws
-%%WWWDIR%%/privbind.yaws
-%%WWWDIR%%/process_tree.dia
-%%WWWDIR%%/process_tree.png
-%%WWWDIR%%/query.yaws
-%%WWWDIR%%/readcookie.yaws
-%%WWWDIR%%/readpcookie.yaws
-%%WWWDIR%%/redirect.yaws
-%%WWWDIR%%/redirect2.yaws
-%%WWWDIR%%/redirect3.yaws
-%%WWWDIR%%/redirect4.yaws
-%%WWWDIR%%/server_sent_events.html
-%%WWWDIR%%/server_sent_events.yaws
-%%WWWDIR%%/session.yaws
-%%WWWDIR%%/session1.yaws
-%%WWWDIR%%/setcookie.yaws
-%%WWWDIR%%/setpcookie.yaws
-%%WWWDIR%%/shoppingcart/Makefile
-%%WWWDIR%%/shoppingcart/buy.yaws
-%%WWWDIR%%/shoppingcart/index.yaws
-%%WWWDIR%%/shoppingcart/junk.jpg
-%%WWWDIR%%/shoppingcart/loginpost.yaws
-%%WWWDIR%%/shoppingcart/logout.yaws
-%%WWWDIR%%/shoppingcart/shopcart.beam
-%%WWWDIR%%/shoppingcart/shopcart.erl
-%%WWWDIR%%/shoppingcart/shopcart_form.yaws
-%%WWWDIR%%/shoppingcart/source.html
-%%WWWDIR%%/shoppingcart/style.css
-%%WWWDIR%%/simple.yaws
-%%WWWDIR%%/simple_ex1.yaws
-%%WWWDIR%%/simple_ex2.yaws
-%%WWWDIR%%/simple_ex3.yaws
-%%WWWDIR%%/simple_ex4.yaws
-%%WWWDIR%%/small.yaws
-%%WWWDIR%%/soap_intro.yaws
-%%WWWDIR%%/spacer.gif
-%%WWWDIR%%/ssi.yaws
-%%WWWDIR%%/ssi/dynamic.1
-%%WWWDIR%%/ssi/dynamic.2
-%%WWWDIR%%/ssi/dynamic.3
-%%WWWDIR%%/ssi_ex1
-%%WWWDIR%%/static.html
-%%WWWDIR%%/stats_ex.yaws
-%%WWWDIR%%/stil.css
-%%WWWDIR%%/stream.yaws
-%%WWWDIR%%/testdir/index.html
-%%WWWDIR%%/todo.yaws
-%%WWWDIR%%/upload.yaws
-%%WWWDIR%%/upload0.yaws
-%%WWWDIR%%/urandom.yaws
-%%WWWDIR%%/urandom_from_pid.yaws
-%%WWWDIR%%/websockets.yaws
-%%WWWDIR%%/websockets_autobahn_endpoint.yaws
-%%WWWDIR%%/websockets_example.yaws
-%%WWWDIR%%/websockets_example_endpoint.yaws
-%%WWWDIR%%/yapp_intro.yaws
-%%WWWDIR%%/yaws-1.55_to_1.56.patch
-%%WWWDIR%%/yaws.eps
-%%WWWDIR%%/ybed.erl
-%%WWWDIR%%/ybed_sup.erl
-%%WWWDIR%%/yman.yaws
+libdata/pkgconfig/yaws.pc
+man/man1/yaws.1.gz
+man/man5/yaws.conf.5.gz
+man/man5/yaws_api.5.gz
+man/man5/yaws_soap_lib.5.gz
+%%WWW%%%%WWWDIR%%/END
+%%WWW%%%%WWWDIR%%/END2
+%%WWW%%%%WWWDIR%%/HEAD
+%%WWW%%%%WWWDIR%%/TAB.inc
+%%WWW%%%%WWWDIR%%/api.yaws
+%%WWW%%%%WWWDIR%%/appmods.yaws
+%%WWW%%%%WWWDIR%%/arg.yaws
+%%WWW%%%%WWWDIR%%/arg2.yaws
+%%WWW%%%%WWWDIR%%/articles.yaws
+%%WWW%%%%WWWDIR%%/bindings.yaws
+%%WWW%%%%WWWDIR%%/cgi-bin/foo.py
+%%WWW%%%%WWWDIR%%/cgi.yaws
+%%WWW%%%%WWWDIR%%/code.yaws
+%%WWW%%%%WWWDIR%%/code/.deps/myappmod.Pbeam
+%%WWW%%%%WWWDIR%%/code/Makefile
+%%WWW%%%%WWWDIR%%/code/Makefile.am
+%%WWW%%%%WWWDIR%%/code/Makefile.in
+%%WWW%%%%WWWDIR%%/code/myappmod.erl
+%%WWW%%%%WWWDIR%%/compile_layout.dia
+%%WWW%%%%WWWDIR%%/compile_layout.png
+%%WWW%%%%WWWDIR%%/configuration.yaws
+%%WWW%%%%WWWDIR%%/contact.yaws
+%%WWW%%%%WWWDIR%%/contributors.txt
+%%WWW%%%%WWWDIR%%/cookies.yaws
+%%WWW%%%%WWWDIR%%/doc.yaws
+%%WWW%%%%WWWDIR%%/dynamic.yaws
+%%WWW%%%%WWWDIR%%/embed.yaws
+%%WWW%%%%WWWDIR%%/examples.yaws
+%%WWW%%%%WWWDIR%%/favicon.ico
+%%WWW%%%%WWWDIR%%/form.yaws
+%%WWW%%%%WWWDIR%%/haxe_intro.yaws
+%%WWW%%%%WWWDIR%%/haxe_sample.html
+%%WWW%%%%WWWDIR%%/haxe_sample.yaws
+%%WWW%%%%WWWDIR%%/icons/README
+%%WWW%%%%WWWDIR%%/icons/a.gif
+%%WWW%%%%WWWDIR%%/icons/alert.black.gif
+%%WWW%%%%WWWDIR%%/icons/alert.red.gif
+%%WWW%%%%WWWDIR%%/icons/apache_pb.gif
+%%WWW%%%%WWWDIR%%/icons/back.gif
+%%WWW%%%%WWWDIR%%/icons/ball.gray.gif
+%%WWW%%%%WWWDIR%%/icons/ball.red.gif
+%%WWW%%%%WWWDIR%%/icons/binary.gif
+%%WWW%%%%WWWDIR%%/icons/binhex.gif
+%%WWW%%%%WWWDIR%%/icons/blank.gif
+%%WWW%%%%WWWDIR%%/icons/bomb.gif
+%%WWW%%%%WWWDIR%%/icons/box1.gif
+%%WWW%%%%WWWDIR%%/icons/box2.gif
+%%WWW%%%%WWWDIR%%/icons/broken.gif
+%%WWW%%%%WWWDIR%%/icons/burst.gif
+%%WWW%%%%WWWDIR%%/icons/c.gif
+%%WWW%%%%WWWDIR%%/icons/comp.blue.gif
+%%WWW%%%%WWWDIR%%/icons/comp.gray.gif
+%%WWW%%%%WWWDIR%%/icons/compressed.gif
+%%WWW%%%%WWWDIR%%/icons/continued.gif
+%%WWW%%%%WWWDIR%%/icons/dir.gif
+%%WWW%%%%WWWDIR%%/icons/down.gif
+%%WWW%%%%WWWDIR%%/icons/dvi.gif
+%%WWW%%%%WWWDIR%%/icons/erl.gif
+%%WWW%%%%WWWDIR%%/icons/f.gif
+%%WWW%%%%WWWDIR%%/icons/folder.gif
+%%WWW%%%%WWWDIR%%/icons/folder.open.gif
+%%WWW%%%%WWWDIR%%/icons/folder.sec.gif
+%%WWW%%%%WWWDIR%%/icons/forward.gif
+%%WWW%%%%WWWDIR%%/icons/generic.gif
+%%WWW%%%%WWWDIR%%/icons/generic.red.gif
+%%WWW%%%%WWWDIR%%/icons/generic.sec.gif
+%%WWW%%%%WWWDIR%%/icons/gnu-head-tiny.jpg
+%%WWW%%%%WWWDIR%%/icons/hand.right.gif
+%%WWW%%%%WWWDIR%%/icons/hand.up.gif
+%%WWW%%%%WWWDIR%%/icons/hrl.gif
+%%WWW%%%%WWWDIR%%/icons/icon.sheet.gif
+%%WWW%%%%WWWDIR%%/icons/image1.gif
+%%WWW%%%%WWWDIR%%/icons/image2.gif
+%%WWW%%%%WWWDIR%%/icons/image3.gif
+%%WWW%%%%WWWDIR%%/icons/index.gif
+%%WWW%%%%WWWDIR%%/icons/layout.gif
+%%WWW%%%%WWWDIR%%/icons/left.gif
+%%WWW%%%%WWWDIR%%/icons/link.gif
+%%WWW%%%%WWWDIR%%/icons/mailman-large.jpg
+%%WWW%%%%WWWDIR%%/icons/mailman.jpg
+%%WWW%%%%WWWDIR%%/icons/movie.gif
+%%WWW%%%%WWWDIR%%/icons/p.gif
+%%WWW%%%%WWWDIR%%/icons/patch.gif
+%%WWW%%%%WWWDIR%%/icons/pdf.gif
+%%WWW%%%%WWWDIR%%/icons/php4.gif
+%%WWW%%%%WWWDIR%%/icons/pie0.gif
+%%WWW%%%%WWWDIR%%/icons/pie1.gif
+%%WWW%%%%WWWDIR%%/icons/pie2.gif
+%%WWW%%%%WWWDIR%%/icons/pie3.gif
+%%WWW%%%%WWWDIR%%/icons/pie4.gif
+%%WWW%%%%WWWDIR%%/icons/pie5.gif
+%%WWW%%%%WWWDIR%%/icons/pie6.gif
+%%WWW%%%%WWWDIR%%/icons/pie7.gif
+%%WWW%%%%WWWDIR%%/icons/pie8.gif
+%%WWW%%%%WWWDIR%%/icons/portal.gif
+%%WWW%%%%WWWDIR%%/icons/ps.gif
+%%WWW%%%%WWWDIR%%/icons/quill.gif
+%%WWW%%%%WWWDIR%%/icons/right.gif
+%%WWW%%%%WWWDIR%%/icons/screw1.gif
+%%WWW%%%%WWWDIR%%/icons/screw2.gif
+%%WWW%%%%WWWDIR%%/icons/script.gif
+%%WWW%%%%WWWDIR%%/icons/small/README.txt
+%%WWW%%%%WWWDIR%%/icons/small/back.gif
+%%WWW%%%%WWWDIR%%/icons/small/binary.gif
+%%WWW%%%%WWWDIR%%/icons/small/binhex.gif
+%%WWW%%%%WWWDIR%%/icons/small/blank.gif
+%%WWW%%%%WWWDIR%%/icons/small/broken.gif
+%%WWW%%%%WWWDIR%%/icons/small/burst.gif
+%%WWW%%%%WWWDIR%%/icons/small/comp1.gif
+%%WWW%%%%WWWDIR%%/icons/small/comp2.gif
+%%WWW%%%%WWWDIR%%/icons/small/compressed.gif
+%%WWW%%%%WWWDIR%%/icons/small/continued.gif
+%%WWW%%%%WWWDIR%%/icons/small/dir.gif
+%%WWW%%%%WWWDIR%%/icons/small/dir2.gif
+%%WWW%%%%WWWDIR%%/icons/small/doc.gif
+%%WWW%%%%WWWDIR%%/icons/small/forward.gif
+%%WWW%%%%WWWDIR%%/icons/small/generic.gif
+%%WWW%%%%WWWDIR%%/icons/small/generic2.gif
+%%WWW%%%%WWWDIR%%/icons/small/generic3.gif
+%%WWW%%%%WWWDIR%%/icons/small/image.gif
+%%WWW%%%%WWWDIR%%/icons/small/image2.gif
+%%WWW%%%%WWWDIR%%/icons/small/index.gif
+%%WWW%%%%WWWDIR%%/icons/small/key.gif
+%%WWW%%%%WWWDIR%%/icons/small/movie.gif
+%%WWW%%%%WWWDIR%%/icons/small/patch.gif
+%%WWW%%%%WWWDIR%%/icons/small/ps.gif
+%%WWW%%%%WWWDIR%%/icons/small/rainbow.gif
+%%WWW%%%%WWWDIR%%/icons/small/sound.gif
+%%WWW%%%%WWWDIR%%/icons/small/sound2.gif
+%%WWW%%%%WWWDIR%%/icons/small/tar.gif
+%%WWW%%%%WWWDIR%%/icons/small/text.gif
+%%WWW%%%%WWWDIR%%/icons/small/transfer.gif
+%%WWW%%%%WWWDIR%%/icons/small/unknown.gif
+%%WWW%%%%WWWDIR%%/icons/small/uu.gif
+%%WWW%%%%WWWDIR%%/icons/sound1.gif
+%%WWW%%%%WWWDIR%%/icons/sound2.gif
+%%WWW%%%%WWWDIR%%/icons/sphere1.gif
+%%WWW%%%%WWWDIR%%/icons/sphere2.gif
+%%WWW%%%%WWWDIR%%/icons/tar.gif
+%%WWW%%%%WWWDIR%%/icons/tex.gif
+%%WWW%%%%WWWDIR%%/icons/text.gif
+%%WWW%%%%WWWDIR%%/icons/transfer.gif
+%%WWW%%%%WWWDIR%%/icons/unknown.gif
+%%WWW%%%%WWWDIR%%/icons/up.gif
+%%WWW%%%%WWWDIR%%/icons/uu.gif
+%%WWW%%%%WWWDIR%%/icons/uuencoded.gif
+%%WWW%%%%WWWDIR%%/icons/world1.gif
+%%WWW%%%%WWWDIR%%/icons/world2.gif
+%%WWW%%%%WWWDIR%%/icons/yaws.gif
+%%WWW%%%%WWWDIR%%/icons/yawsY.gif
+%%WWW%%%%WWWDIR%%/icons/yaws_head.gif
+%%WWW%%%%WWWDIR%%/icons/yaws_pb.gif
+%%WWW%%%%WWWDIR%%/icons/yaws_y.gif
+%%WWW%%%%WWWDIR%%/index.yaws
+%%WWW%%%%WWWDIR%%/internals.yaws
+%%WWW%%%%WWWDIR%%/jsolait/jsolait.js
+%%WWW%%%%WWWDIR%%/jsolait/lib/jsonrpc.js
+%%WWW%%%%WWWDIR%%/jsolait/lib/urllib.js
+%%WWW%%%%WWWDIR%%/json_intro.yaws
+%%WWW%%%%WWWDIR%%/json_sample.html
+%%WWW%%%%WWWDIR%%/json_sample.yaws
+%%WWW%%%%WWWDIR%%/logger_mod.yaws
+%%WWW%%%%WWWDIR%%/man.yaws
+%%WWW%%%%WWWDIR%%/motivation.yaws
+%%WWW%%%%WWWDIR%%/news
+%%WWW%%%%WWWDIR%%/pcookie.yaws
+%%WWW%%%%WWWDIR%%/post.yaws
+%%WWW%%%%WWWDIR%%/privbind.yaws
+%%WWW%%%%WWWDIR%%/process_tree.dia
+%%WWW%%%%WWWDIR%%/process_tree.png
+%%WWW%%%%WWWDIR%%/query.yaws
+%%WWW%%%%WWWDIR%%/readcookie.yaws
+%%WWW%%%%WWWDIR%%/readpcookie.yaws
+%%WWW%%%%WWWDIR%%/rebar_release.yaws
+%%WWW%%%%WWWDIR%%/redirect.yaws
+%%WWW%%%%WWWDIR%%/redirect2.yaws
+%%WWW%%%%WWWDIR%%/redirect3.yaws
+%%WWW%%%%WWWDIR%%/redirect4.yaws
+%%WWW%%%%WWWDIR%%/server_sent_events.html
+%%WWW%%%%WWWDIR%%/server_sent_events.yaws
+%%WWW%%%%WWWDIR%%/session.yaws
+%%WWW%%%%WWWDIR%%/session1.yaws
+%%WWW%%%%WWWDIR%%/setcookie.yaws
+%%WWW%%%%WWWDIR%%/setpcookie.yaws
+%%WWW%%%%WWWDIR%%/shoppingcart/.deps/shopcart.Pbeam
+%%WWW%%%%WWWDIR%%/shoppingcart/Makefile
+%%WWW%%%%WWWDIR%%/shoppingcart/Makefile.am
+%%WWW%%%%WWWDIR%%/shoppingcart/Makefile.in
+%%WWW%%%%WWWDIR%%/shoppingcart/buy.yaws
+%%WWW%%%%WWWDIR%%/shoppingcart/index.yaws
+%%WWW%%%%WWWDIR%%/shoppingcart/junk.jpg
+%%WWW%%%%WWWDIR%%/shoppingcart/loginpost.yaws
+%%WWW%%%%WWWDIR%%/shoppingcart/logout.yaws
+%%WWW%%%%WWWDIR%%/shoppingcart/shopcart.erl
+%%WWW%%%%WWWDIR%%/shoppingcart/shopcart_form.yaws
+%%WWW%%%%WWWDIR%%/shoppingcart/source.html
+%%WWW%%%%WWWDIR%%/shoppingcart/style.css
+%%WWW%%%%WWWDIR%%/simple.yaws
+%%WWW%%%%WWWDIR%%/simple_ex1.yaws
+%%WWW%%%%WWWDIR%%/simple_ex2.yaws
+%%WWW%%%%WWWDIR%%/simple_ex3.yaws
+%%WWW%%%%WWWDIR%%/simple_ex4.yaws
+%%WWW%%%%WWWDIR%%/small.yaws
+%%WWW%%%%WWWDIR%%/soap_intro.yaws
+%%WWW%%%%WWWDIR%%/spacer.gif
+%%WWW%%%%WWWDIR%%/ssi.yaws
+%%WWW%%%%WWWDIR%%/ssi/dynamic.1
+%%WWW%%%%WWWDIR%%/ssi/dynamic.2
+%%WWW%%%%WWWDIR%%/ssi/dynamic.3
+%%WWW%%%%WWWDIR%%/ssi_ex1
+%%WWW%%%%WWWDIR%%/static.html
+%%WWW%%%%WWWDIR%%/stats_ex.yaws
+%%WWW%%%%WWWDIR%%/stil.css
+%%WWW%%%%WWWDIR%%/stream.yaws
+%%WWW%%%%WWWDIR%%/testdir/index.html
+%%WWW%%%%WWWDIR%%/todo.yaws
+%%WWW%%%%WWWDIR%%/upload.yaws
+%%WWW%%%%WWWDIR%%/upload0.yaws
+%%WWW%%%%WWWDIR%%/urandom.yaws
+%%WWW%%%%WWWDIR%%/urandom_from_pid.yaws
+%%WWW%%%%WWWDIR%%/websockets.yaws
+%%WWW%%%%WWWDIR%%/websockets_autobahn_endpoint.yaws
+%%WWW%%%%WWWDIR%%/websockets_example.yaws
+%%WWW%%%%WWWDIR%%/websockets_example_endpoint.yaws
+%%WWW%%%%WWWDIR%%/yapp_intro.yaws
+%%WWW%%%%WWWDIR%%/yaws-1.55_to_1.56.patch
+%%WWW%%%%WWWDIR%%/yaws.eps
+%%WWW%%%%WWWDIR%%/ybed.erl
+%%WWW%%%%WWWDIR%%/ybed_sup.erl
+%%WWW%%%%WWWDIR%%/yman.yaws
+ at dir lib/erlang/lib/yaws-%%VERSION%%/examples/include
+ at dir /var/log/yaws
More information about the svn-ports-all
mailing list