From patchwork Tue Apr 22 08:25:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sagaert Johan X-Patchwork-Id: 341232 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 90F68140285 for ; Tue, 22 Apr 2014 18:25:37 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A759C8B924; Tue, 22 Apr 2014 08:25:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H20Fi4Mr8d1j; Tue, 22 Apr 2014 08:25:33 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 13AA58B907; Tue, 22 Apr 2014 08:25:33 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 28A181BF99F for ; Tue, 22 Apr 2014 08:25:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2378B8C06D for ; Tue, 22 Apr 2014 08:25:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yO+0Vnqz0+JG for ; Tue, 22 Apr 2014 08:25:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailrelay007.isp.belgacom.be (mailrelay007.isp.belgacom.be [195.238.6.173]) by whitealder.osuosl.org (Postfix) with ESMTP id 214D38BF8C for ; Tue, 22 Apr 2014 08:25:29 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AnAGAOQmVlNbtZdu/2dsb2JhbABZgwZPvTOHO4ETF3SDAiNPSzcJiDwBCMxIjC6CKB2CGA+BewSVAwWDaIE3kRuDMzs Received: from 110.151-181-91.adsl-dyn.isp.belgacom.be (HELO debian605.apex) ([91.181.151.110]) by relay.skynet.be with ESMTP; 22 Apr 2014 10:25:25 +0200 From: Sagaert Johan To: buildroot@busybox.net Date: Tue, 22 Apr 2014 10:25:22 +0200 Message-Id: <1398155122-6872-1-git-send-email-sagaert.johan@skynet.be> X-Mailer: git-send-email 1.9.2 Cc: Sagaert Johan Subject: [Buildroot] [PATCH 1/1 v2] qdecoder : new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net qDecoder is a powerful CGI library. Features: Supports parsing a request encoded by GET/POST method Supports parsing multipart/form-data encoding.(in-memory and direct disk) Supports COOKIE handling. Supports Session management. Supports FastCGI Signed-off-by: Sagaert Johan --- v2: Changed License to BSD-2 package/Config.in | 1 + package/qdecoder/Config.in | 7 +++++++ package/qdecoder/qdecoder.mk | 18 ++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 package/qdecoder/Config.in create mode 100644 package/qdecoder/qdecoder.mk diff --git a/package/Config.in b/package/Config.in index abfc3cc..998f990 100644 --- a/package/Config.in +++ b/package/Config.in @@ -765,6 +765,7 @@ source "package/nss-mdns/Config.in" source "package/omniorb/Config.in" source "package/openpgm/Config.in" source "package/ortp/Config.in" +source "package/qdecoder/Config.in" source "package/rtmpdump/Config.in" source "package/slirp/Config.in" source "package/snmppp/Config.in" diff --git a/package/qdecoder/Config.in b/package/qdecoder/Config.in new file mode 100644 index 0000000..2bd2a2f --- /dev/null +++ b/package/qdecoder/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_QDECODER + bool "qdecoder" + help + qDecoder is a simple and powerful CGI library + for the C/C++ programming language. + + http://www.qdecoder.org/wiki/qdecoder diff --git a/package/qdecoder/qdecoder.mk b/package/qdecoder/qdecoder.mk new file mode 100644 index 0000000..46b986e --- /dev/null +++ b/package/qdecoder/qdecoder.mk @@ -0,0 +1,18 @@ +################################################################################ +# +# qdecoder +# +################################################################################ + +QDECODER_VERSION = r12.0.5 +QDECODER_SITE = $(call github,wolkykim,qdecoder,$(QDECODER_VERSION)) +QDECODER_LICENSE = BSD-2 +QDECODER_LICENSE_FILES = COPYING + +QDECODER_INSTALL_STAGING = YES + +QDECODER_CONF_OPT = \ + --prefix=$(STAGING_DIR)/usr \ + --libdir=$(STAGING_DIR)/usr/lib + +$(eval $(autotools-package))