wok-current rev 24644
updated hiawatha (10.10 -> 11.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 10 09:34:32 2022 +0100 (2022-03-10) |
parents | 9290e8ef0479 |
children | 290ce85aaca4 |
files | hiawatha/description.txt hiawatha/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/hiawatha/description.txt Thu Mar 10 09:34:32 2022 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +Hiawatha is an open source webserver with a focus on security. 1.5 +I started Hiawatha in January 2002. Before that time, I had used 1.6 +several webservers, but I didn't like them. They had unlogical, 1.7 +almost cryptic configuration syntax and none of them gave me a 1.8 +good feeling about their security and robustness. So, I decided 1.9 +it was time to write my own webserver. I never thought that my 1.10 +webserver would become what it is today, but I enjoyed working on 1.11 +it and liked to have my own open source project. 1.12 +In the years that followed, Hiawatha became a fully functional 1.13 +webserver.
2.1 --- a/hiawatha/receipt Wed Mar 09 17:41:22 2022 +0100 2.2 +++ b/hiawatha/receipt Thu Mar 10 09:34:32 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="hiawatha" 2.7 -VERSION="10.10" 2.8 +VERSION="11.1" 2.9 CATEGORY="network" 2.10 TAGS="webserver http server" 2.11 SHORT_DESC="Advanced and secure webserver." 2.12 @@ -31,24 +31,24 @@ 2.13 export CC=gcc-83 2.14 export CXX=g++-83 2.15 2.16 - cmake . \ 2.17 - -DCMAKE_INSTALL_PREFIX=/usr \ 2.18 - -DCMAKE_INSTALL_SYSCONFDIR=/etc \ 2.19 - -DLOG_DIR=/var/log \ 2.20 - -DWEBROOT_DIR=/var/www \ 2.21 - -DPID_DIR=/var/run \ 2.22 - -DWORK_DIR=/var/lib && 2.23 - make DESTDIR=$DESTDIR install 2.24 + mkdir _build && 2.25 + cd _build && 2.26 + cmake .. \ 2.27 + -D CMAKE_INSTALL_PREFIX=/usr \ 2.28 + -D CMAKE_INSTALL_SYSCONFDIR=/etc\ 2.29 + -D LOG_DIR=/var/log \ 2.30 + -D WEBROOT_DIR=/var/www \ 2.31 + -D PID_DIR=/var/run \ 2.32 + -D WORK_DIR=/var/lib && 2.33 + make install DESTDIR=$DESTDIR 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr 2.40 - 2.41 - cp -a $install/var $fs 2.42 - cp -a $install/etc $fs 2.43 - cp -a $install/usr/lib $fs/usr 2.44 - cp -a $install/usr/bin $fs/usr 2.45 - cp -a $install/usr/sbin $fs/usr 2.46 + cook_copy_folders bin 2.47 + cook_copy_folders etc 2.48 + cook_copy_folders lib 2.49 + cook_copy_folders sbin 2.50 + cook_copy_folders var 2.51 }