diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..a2c1a82 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,11 @@ +scgi-cgi (0.1.0-1) unstable; urgency=low + + * Initial release + + -- Stefan Bühler Thu, 03 Oct 2013 13:33:47 +0200 + +scgi-cgi (0.1.0-0) unstable; urgency=low + + * Initial release + + -- Stefan Bühler Thu, 03 Oct 2013 13:33:46 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3734883 --- /dev/null +++ b/debian/control @@ -0,0 +1,31 @@ +Source: scgi-cgi +Section: web +Priority: extra +Maintainer: Stefan Bühler +Build-Depends: debhelper (>= 7), cmake, libevent-dev (>= 2.0), pkg-config, cdbs +Standards-Version: 3.9.4 +Homepage: http://redmine.lighttpd.net/projects/scgi-cgi + +Package: scgi-cgi +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: SCGI application to run cgi applications + SCGI application to run normal cgi applications; this allows one to run + cgi applications with different user permissions than the webserver + without using suExec wrappers. + And the webserver doesn't need to fork, and it may be easier to get + the webserver running in a chroot. + +Package: scgi-cgi-dbg +Architecture: any +Section: debug +Priority: extra +Depends: scgi-cgi (=${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: SCGI application to run cgi applications + SCGI application to run normal cgi applications; this allows one to run + cgi applications with different user permissions than the webserver + without using suExec wrappers. + And the webserver doesn't need to fork, and it may be easier to get + the webserver running in a chroot. + . + This package contains the debug symbols. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..bdb91d3 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by Stefan Bühler on +Thu, 03 Oct 2013 13:32:58 +0200. + +It was downloaded from http://redmine.lighttpd.net/projects/scgi-cgi + +Upstream Author: + + Stefan Bühler + +Copyright: + + + +License: + + The MIT License + + Copyright (c) 2013 Stefan Bühler + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +The Debian packaging is: + + Copyright (C) 2013 Stefan Bühler + +and is licensed under the GPL version 3, +see `/usr/share/common-licenses/GPL-3'. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f09850d --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk + +CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) +LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) + +DEB_CMAKE_EXTRA_FLAGS=-DCMAKE_BUILD_TYPE="RelWithDebInfo" +DEB_CMAKE_EXTRA_FLAGS+=-DCMAKE_SHARED_LINKER_FLAGS="$(LDFLAGS)" -DCMAKE_EXE_LINKER_FLAGS="$(LDFLAGS)" diff --git a/debian/scgi-cgi.install b/debian/scgi-cgi.install new file mode 100644 index 0000000..a2716ec --- /dev/null +++ b/debian/scgi-cgi.install @@ -0,0 +1,2 @@ +debian/tmp/usr/bin/scgi-cgi /usr/bin/ +debian/tmp/usr/share/man/man1/scgi-cgi.1 /usr/share/man/man1/ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)