wok rev 1134

Added bozohttpd, haserl, haserl-lua and o3read receipts
author Micha?l Dupont <milka@konstelacioj.info>
date Thu Jul 24 01:01:10 2008 +0200 (2008-07-24)
parents e835f5d77665
children 40177f4e678a
files bozohttpd/description.txt bozohttpd/receipt haserl-lua/description.txt haserl-lua/receipt haserl/description.txt haserl/receipt o3read/description.txt o3read/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bozohttpd/description.txt	Thu Jul 24 01:01:10 2008 +0200
     1.3 @@ -0,0 +1,3 @@
     1.4 +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.
     1.5 +
     1.6 +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.
     1.7 \ No newline at end of file
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/bozohttpd/receipt	Thu Jul 24 01:01:10 2008 +0200
     2.3 @@ -0,0 +1,31 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="bozohttpd"
     2.7 +VERSION="20080303"
     2.8 +CATEGORY="network"
     2.9 +SHORT_DESC="Small and secure http version 1.1 server"
    2.10 +MAINTAINER="milka@konstelacioj.info"
    2.11 +DEPENDS="openssl"
    2.12 +BUILD_DEPENDS="openssl-dev"
    2.13 +SUGGESTED="haserl"
    2.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.15 +WEB_SITE="http://www.eterna.com.au/$PACKAGE/"
    2.16 +WGET_URL="http://www.eterna.com.au/$PACKAGE/$TARBALL"
    2.17 +
    2.18 +# Rules to configure and make the package.
    2.19 +compile_rules()
    2.20 +{
    2.21 +	cd $src
    2.22 +	make -f Makefile.boot all
    2.23 +	mkdir -p $PWD/_pkg/usr/bin
    2.24 +	mv bozohttpd $PWD/_pkg/usr/bin/
    2.25 +}
    2.26 +
    2.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.28 +genpkg_rules()
    2.29 +{
    2.30 +	mkdir -p _pkg/usr
    2.31 +	cp -a $_pkg/usr/bin $fs/usr
    2.32 +	
    2.33 +	strip -s $fs/usr/bin/*
    2.34 +}
    2.35 \ No newline at end of file
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/haserl-lua/description.txt	Thu Jul 24 01:01:10 2008 +0200
     3.3 @@ -0,0 +1,13 @@
     3.4 +haserl (Html And Shell Embedded Runtime Language) is a cgi 
     3.5 +program that runs interpreted scripts.   It combines three 
     3.6 +elements into a single CGI interpreter:
     3.7 +
     3.8 +1. It parses POST and GET requests, placing form-elements as name=value
     3.9 +pairs into the environment for the CGI script to use. It is similar
    3.10 +to uncgi (http://www.midwinter.com/~koreth/uncgi.html) in this respect
    3.11 +
    3.12 +2. It prints the contents of the script as html, and conditionally
    3.13 +interpets text within <% ... %> as shell script.  In this case haserl 
    3.14 +scripts are like a poor-man's version of PHP (http://www.php.net)
    3.15 +
    3.16 +3. It is very small, and so can be used in embedded environments
    3.17 \ No newline at end of file
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/haserl-lua/receipt	Thu Jul 24 01:01:10 2008 +0200
     4.3 @@ -0,0 +1,34 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="haserl"
     4.7 +VERSION="0.9.24"
     4.8 +CATEGORY="network"
     4.9 +SHORT_DESC="small program that uses shell or Lua script to create cgi web scripts"
    4.10 +MAINTAINER="milka@konstelacioj.info"
    4.11 +DEPENDS=""
    4.12 +BUILD_DEPENDS="glibc-dev"
    4.13 +SUGGESTED="bash lua lua-dev"
    4.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.15 +WEB_SITE="http://haserl.sourceforge.net/"
    4.16 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    4.17 +
    4.18 +# Rules to configure and make the package.
    4.19 +compile_rules()
    4.20 +{
    4.21 +	cd $src
    4.22 +	./configure \
    4.23 +		--bindir=/usr/bin \
    4.24 +		--with-lua \
    4.25 +    	$CONFIGURE_ARGS
    4.26 +	make
    4.27 +	make DESTDIR=$PWD/_pkg install
    4.28 +}
    4.29 +
    4.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.31 +genpkg_rules()
    4.32 +{
    4.33 +	mkdir -p $fs/usr
    4.34 +	cp -a $_pkg/usr/bin $fs/usr
    4.35 +	
    4.36 +	strip -s $fs/usr/bin/*
    4.37 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/haserl/description.txt	Thu Jul 24 01:01:10 2008 +0200
     5.3 @@ -0,0 +1,13 @@
     5.4 +haserl (Html And Shell Embedded Runtime Language) is a cgi 
     5.5 +program that runs interpreted scripts.   It combines three 
     5.6 +elements into a single CGI interpreter:
     5.7 +
     5.8 +1. It parses POST and GET requests, placing form-elements as name=value
     5.9 +pairs into the environment for the CGI script to use. It is similar
    5.10 +to uncgi (http://www.midwinter.com/~koreth/uncgi.html) in this respect
    5.11 +
    5.12 +2. It prints the contents of the script as html, and conditionally
    5.13 +interpets text within <% ... %> as shell script.  In this case haserl 
    5.14 +scripts are like a poor-man's version of PHP (http://www.php.net)
    5.15 +
    5.16 +3. It is very small, and so can be used in embedded environments
    5.17 \ No newline at end of file
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/haserl/receipt	Thu Jul 24 01:01:10 2008 +0200
     6.3 @@ -0,0 +1,33 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="haserl"
     6.7 +VERSION="0.9.24"
     6.8 +CATEGORY="network"
     6.9 +SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts"
    6.10 +MAINTAINER="milka@konstelacioj.info"
    6.11 +DEPENDS=""
    6.12 +BUILD_DEPENDS="glibc-dev"
    6.13 +SUGGESTED="bash lua lua-dev"
    6.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    6.15 +WEB_SITE="http://haserl.sourceforge.net/"
    6.16 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    6.17 +
    6.18 +# Rules to configure and make the package.
    6.19 +compile_rules()
    6.20 +{
    6.21 +	cd $src
    6.22 +	./configure \
    6.23 +		--bindir=/usr/bin \
    6.24 +    	$CONFIGURE_ARGS
    6.25 +	make
    6.26 +	make DESTDIR=$PWD/_pkg install
    6.27 +}
    6.28 +
    6.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.30 +genpkg_rules()
    6.31 +{
    6.32 +	mkdir -p $fs/usr
    6.33 +	cp -a $_pkg/usr/bin $fs/usr
    6.34 +	
    6.35 +	strip -s $fs/usr/bin/*
    6.36 +}
    6.37 \ No newline at end of file
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/o3read/description.txt	Thu Jul 24 01:01:10 2008 +0200
     7.3 @@ -0,0 +1,11 @@
     7.4 +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.
     7.5 +
     7.6 +Example: unzip -p filformat.sxw content.xml | o3read | utf8tolatin1
     7.7 +
     7.8 +There are three output modules:
     7.9 +
    7.10 +    * o3read displays a dump of the parse tree
    7.11 +    * o3totxt creates plain text
    7.12 +    * o3tohtml creates html code 
    7.13 +
    7.14 +The utility utf8tolatin1 converts from utf8 to 8859-1. 
    7.15 \ No newline at end of file
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/o3read/receipt	Thu Jul 24 01:01:10 2008 +0200
     8.3 @@ -0,0 +1,27 @@
     8.4 +# SliTaz package receipt.
     8.5 +
     8.6 +PACKAGE="o3read"
     8.7 +VERSION="0.0.4"
     8.8 +CATEGORY="utilities"
     8.9 +SHORT_DESC="Standalone converter for OpenOffice.org writer and calc formats"
    8.10 +MAINTAINER="milka@konstelacioj.info"
    8.11 +DEPENDS=""
    8.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    8.13 +WEB_SITE="http://siag.nu/o3read/"
    8.14 +WGET_URL="http://siag.nu/pub/o3read/$PACKAGE-$VERSION.tar.gz"
    8.15 +
    8.16 +# Rules to configure and make the package.
    8.17 +compile_rules()
    8.18 +{
    8.19 +	cd $src
    8.20 +	make install PREFIX=$PWD/_pkg/usr
    8.21 +}
    8.22 +
    8.23 +# Rules to gen a SliTaz package suitable for Tazpkg.
    8.24 +genpkg_rules()
    8.25 +{
    8.26 +	mkdir -p $fs/usr
    8.27 +	cp -a $_pkg/usr/bin $fs/usr
    8.28 +	strip -s $fs/usr/bin/*
    8.29 +}
    8.30 +