# HG changeset patch # User Micha?l Dupont # Date 1216854070 -7200 # Node ID 30f642df947e7b2cd409e6c8b9fa8a3d8f7a54b2 # Parent e835f5d77665d079b55177d0ee883ec31f92a6ef Added bozohttpd, haserl, haserl-lua and o3read receipts diff -r e835f5d77665 -r 30f642df947e bozohttpd/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bozohttpd/description.txt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,3 @@ +bozohttpd is a small and secure http version 1.1 server. its main feature is the lack of features, reducing the code size and improving verifiability. + +it supports CGI/1.1, HTTP/1.1, HTTP/1.0, HTTP/0.9, ~user translations, virtual hosting support, as well as multiple IP-based servers on a single machine. it is capable of serving pages via the IPv6 protocol. it has ssl support. it has no configuration file by design. \ No newline at end of file diff -r e835f5d77665 -r 30f642df947e bozohttpd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bozohttpd/receipt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="bozohttpd" +VERSION="20080303" +CATEGORY="network" +SHORT_DESC="Small and secure http version 1.1 server" +MAINTAINER="milka@konstelacioj.info" +DEPENDS="openssl" +BUILD_DEPENDS="openssl-dev" +SUGGESTED="haserl" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.eterna.com.au/$PACKAGE/" +WGET_URL="http://www.eterna.com.au/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make -f Makefile.boot all + mkdir -p $PWD/_pkg/usr/bin + mv bozohttpd $PWD/_pkg/usr/bin/ +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p _pkg/usr + cp -a $_pkg/usr/bin $fs/usr + + strip -s $fs/usr/bin/* +} \ No newline at end of file diff -r e835f5d77665 -r 30f642df947e haserl-lua/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/haserl-lua/description.txt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,13 @@ +haserl (Html And Shell Embedded Runtime Language) is a cgi +program that runs interpreted scripts. It combines three +elements into a single CGI interpreter: + +1. It parses POST and GET requests, placing form-elements as name=value +pairs into the environment for the CGI script to use. It is similar +to uncgi (http://www.midwinter.com/~koreth/uncgi.html) in this respect + +2. It prints the contents of the script as html, and conditionally +interpets text within <% ... %> as shell script. In this case haserl +scripts are like a poor-man's version of PHP (http://www.php.net) + +3. It is very small, and so can be used in embedded environments \ No newline at end of file diff -r e835f5d77665 -r 30f642df947e haserl-lua/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/haserl-lua/receipt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="haserl" +VERSION="0.9.24" +CATEGORY="network" +SHORT_DESC="small program that uses shell or Lua script to create cgi web scripts" +MAINTAINER="milka@konstelacioj.info" +DEPENDS="" +BUILD_DEPENDS="glibc-dev" +SUGGESTED="bash lua lua-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://haserl.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --bindir=/usr/bin \ + --with-lua \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + + strip -s $fs/usr/bin/* +} diff -r e835f5d77665 -r 30f642df947e haserl/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/haserl/description.txt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,13 @@ +haserl (Html And Shell Embedded Runtime Language) is a cgi +program that runs interpreted scripts. It combines three +elements into a single CGI interpreter: + +1. It parses POST and GET requests, placing form-elements as name=value +pairs into the environment for the CGI script to use. It is similar +to uncgi (http://www.midwinter.com/~koreth/uncgi.html) in this respect + +2. It prints the contents of the script as html, and conditionally +interpets text within <% ... %> as shell script. In this case haserl +scripts are like a poor-man's version of PHP (http://www.php.net) + +3. It is very small, and so can be used in embedded environments \ No newline at end of file diff -r e835f5d77665 -r 30f642df947e haserl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/haserl/receipt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="haserl" +VERSION="0.9.24" +CATEGORY="network" +SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts" +MAINTAINER="milka@konstelacioj.info" +DEPENDS="" +BUILD_DEPENDS="glibc-dev" +SUGGESTED="bash lua lua-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://haserl.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --bindir=/usr/bin \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + + strip -s $fs/usr/bin/* +} \ No newline at end of file diff -r e835f5d77665 -r 30f642df947e o3read/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/o3read/description.txt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,11 @@ +This is a standalone converter for the OpenOffice.org swriter (*.sxw) and scalc (*.sxc) formats. It doesn't depend on Open Office or any other external tools or libraries. + +Example: unzip -p filformat.sxw content.xml | o3read | utf8tolatin1 + +There are three output modules: + + * o3read displays a dump of the parse tree + * o3totxt creates plain text + * o3tohtml creates html code + +The utility utf8tolatin1 converts from utf8 to 8859-1. \ No newline at end of file diff -r e835f5d77665 -r 30f642df947e o3read/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/o3read/receipt Thu Jul 24 01:01:10 2008 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="o3read" +VERSION="0.0.4" +CATEGORY="utilities" +SHORT_DESC="Standalone converter for OpenOffice.org writer and calc formats" +MAINTAINER="milka@konstelacioj.info" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://siag.nu/o3read/" +WGET_URL="http://siag.nu/pub/o3read/$PACKAGE-$VERSION.tar.gz" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make install PREFIX=$PWD/_pkg/usr +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* +} +