Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a9eb24e0e196bd947cb0f13641a50caacc071503)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a9eb24e0e196bd947cb0f13641a50caacc071503)
  • Date: Tue, 9 Nov 2010 23:17:36 -0600

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 3 +++
http/wt/BUILD | 1 +
http/wt/DEPENDS | 33 +++++++++++++++++++++++++++++++++
http/wt/DETAILS | 27 +++++++++++++++++++++++++++
http/wt/HISTORY | 3 +++
5 files changed, 67 insertions(+)

New commits:
commit a9eb24e0e196bd947cb0f13641a50caacc071503
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

wt: new spell, a C++ Web Toolkit

diff --git a/ChangeLog b/ChangeLog
index 5d5ea15..14dc27f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-11-09 Ismael Luceno <ismael AT sourcemage.org>
+ * http/wt: new spell, a C++ Web Toolkit
+
2010-11-09 Ladislav Hagara <hgr AT vabo.cz>
* kernels/linux-firmware: new spell, firmware used by the Linux kernel

diff --git a/http/wt/BUILD b/http/wt/BUILD
new file mode 100755
index 0000000..e013b8d
--- /dev/null
+++ b/http/wt/BUILD
@@ -0,0 +1 @@
+cmake_build
diff --git a/http/wt/DEPENDS b/http/wt/DEPENDS
new file mode 100755
index 0000000..fa22341
--- /dev/null
+++ b/http/wt/DEPENDS
@@ -0,0 +1,33 @@
+depends cmake &&
+depends g++ &&
+depends boost &&
+
+optional_depends libharu2 \
+ "-DENABLE_HARU=ON" \
+ "-DENABLE_HARU=OFF" \
+ "Support for painting to PDF" &&
+
+optional_depends IMAGE-CONVERSION \
+ "-DENABLE_GM=ON" \
+ "-DENABLE_GM=OFF" \
+ "Support for painting to raster image formats" &&
+
+optional_depends zlib \
+ "" \
+ "" \
+ "for compression over HTTP in wthttpd" &&
+
+optional_depends openssl \
+ "" \
+ "" \
+ "HTTPS support in wthttpd" &&
+
+optional_depends postgresql \
+ "-DENABLE_POSTGRES=ON" \
+ "-DENABLE_POSTGRES=OFF" \
+ "Build PostgreSQL backend for Wt::Dbo" &&
+
+optional_depends sqlite3 \
+ "-DENABLE_SQLITE=ON -DUSE_SYSTEM_SQLITE3=ON" \
+ "-DENABLE_SQLITE=OFF" \
+ "Build SQLite3 backend for Wt::Dbo" &&
diff --git a/http/wt/DETAILS b/http/wt/DETAILS
new file mode 100755
index 0000000..fe75c1f
--- /dev/null
+++ b/http/wt/DETAILS
@@ -0,0 +1,27 @@
+ SPELL=wt
+ VERSION=3.1.6
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+
SOURCE_URL[0]="$SOURCEFORGE_URL/project/witty/${SPELL}/${VERSION}/${SOURCE}"
+
SOURCE_HASH=sha512:a7f6ca1ae5d38c6e98a9b129bae25b64f95916820588f82e47c08fea78fb4c4592cefab0b8bedbd5ff315bc155212b5b13a7980ce3e98d5c937c3607b1afa53c
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://webtoolkit.eu";
+ LICENSE[0]=GPL
+ ENTERED=20101109
+ SHORT="a C++ Web Toolkit"
+cat << EOF
+Wt (we pronounce that as 'witty') is a C++ library for developing interactive
+web applications.
+
+The API is widget-centric and uses well-tested patterns of desktop GUI APIs,
+tailored to the web. To the developer, it offers complete abstraction of
+any web-specific implementation details, including event handling, graphics
+support, graceful degradation (or progressive enhancement), and pretty URLs.
+
+Unlike many page-based frameworks, Wt was designed for creating stateful
+applications that are at the same time highly interactive (leveraging
+techinques such as Ajax to their fullest) and accessible (supporting plain
HTML
+browsers), using automatic graceful degradation or progressive enhancement.
+
+The library comes with an application server that acts as a stand-alone web
+server or integrates through FastCGI with other web servers.
+EOF
diff --git a/http/wt/HISTORY b/http/wt/HISTORY
new file mode 100644
index 0000000..6319e59
--- /dev/null
+++ b/http/wt/HISTORY
@@ -0,0 +1,3 @@
+2010-11-09 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS: spell created
+



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a9eb24e0e196bd947cb0f13641a50caacc071503), Ismael Luceno, 11/10/2010

Archive powered by MHonArc 2.6.24.

Top of Page