From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail.thorsis.com ([92.198.35.195]) by metis.ext.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jHTtD-0002VY-2H for ptxdist@pengutronix.de; Thu, 26 Mar 2020 15:53:48 +0100 Received: from localhost (localhost [127.0.0.1]) by mail.thorsis.com (Postfix) with ESMTP id 80D9236BB for ; Thu, 26 Mar 2020 15:53:45 +0100 (CET) Received: from mail.thorsis.com ([127.0.0.1]) by localhost (mail.thorsis.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iIpvw08EB02j for ; Thu, 26 Mar 2020 15:53:41 +0100 (CET) Received: from adahl by ada.ifak-system.com with local (Exim 4.89) (envelope-from ) id 1jHTt4-0003P7-0n for ptxdist@pengutronix.de; Thu, 26 Mar 2020 15:53:38 +0100 From: Alexander Dahl Date: Thu, 26 Mar 2020 15:53:38 +0100 Message-Id: <20200326145338.13032-1-ada@thorsis.com> Subject: [ptxdist] [PATCH] spawn-fcgi: Add new package List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Signed-off-by: Alexander Dahl --- rules/spawn-fcgi.in | 11 +++++++++ rules/spawn-fcgi.make | 56 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 rules/spawn-fcgi.in create mode 100644 rules/spawn-fcgi.make diff --git a/rules/spawn-fcgi.in b/rules/spawn-fcgi.in new file mode 100644 index 000000000..9cf6489bc --- /dev/null +++ b/rules/spawn-fcgi.in @@ -0,0 +1,11 @@ +## SECTION=networking + +config SPAWN_FCGI + tristate + prompt "spawn-fcgi" + help + spawn-fcgi is used to spawn FastCGI applications + + https://redmine.lighttpd.net/projects/spawn-fcgi + +# vim: ft=kconfig noet tw=72 ts=8 sw=8 diff --git a/rules/spawn-fcgi.make b/rules/spawn-fcgi.make new file mode 100644 index 000000000..f6aa45dd5 --- /dev/null +++ b/rules/spawn-fcgi.make @@ -0,0 +1,56 @@ +# -*-makefile-*- +# +# Copyright (C) 2020 by Alexander Dahl +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +PACKAGES-$(PTXCONF_SPAWN_FCGI) += spawn-fcgi + +# +# Paths and names +# +SPAWN_FCGI_VERSION := 1.6.4 +SPAWN_FCGI_MD5 := a67c098a50cd625fd12adf61b5dd4c32 +SPAWN_FCGI := spawn-fcgi-$(SPAWN_FCGI_VERSION) +SPAWN_FCGI_SUFFIX := tar.xz +SPAWN_FCGI_URL := https://download.lighttpd.net/spawn-fcgi/releases-1.6.x/$(SPAWN_FCGI).$(SPAWN_FCGI_SUFFIX) +SPAWN_FCGI_SOURCE := $(SRCDIR)/$(SPAWN_FCGI).$(SPAWN_FCGI_SUFFIX) +SPAWN_FCGI_DIR := $(BUILDDIR)/$(SPAWN_FCGI) +SPAWN_FCGI_LICENSE := BSD-3-Clause +SPAWN_FCGI_LICENSE_FILES := file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579 + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +SPAWN_FCGI_CONF_TOOL := autoconf +SPAWN_FCGI_CONF_OPT := \ + $(CROSS_AUTOCONF_USR) \ + $(GLOBAL_IPV6_OPTION) \ + --enable-extra-warnings + +# ---------------------------------------------------------------------------- +# Target-Install +# ---------------------------------------------------------------------------- + +$(STATEDIR)/spawn-fcgi.targetinstall: + @$(call targetinfo) + + @$(call install_init, spawn-fcgi) + @$(call install_fixup, spawn-fcgi,PRIORITY,optional) + @$(call install_fixup, spawn-fcgi,SECTION,base) + @$(call install_fixup, spawn-fcgi,AUTHOR,"Alexander Dahl ") + @$(call install_fixup, spawn-fcgi,DESCRIPTION,missing) + + @$(call install_copy, spawn-fcgi, 0, 0, 0755, -, /usr/bin/spawn-fcgi) + + @$(call install_finish, spawn-fcgi) + + @$(call touch) + +# vim: ft=make noet tw=72 ts=8 sw=8 -- 2.20.1 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de