From 4d9e80d34f6b4e6aa520b8e92c3a0b613b4e547e Mon Sep 17 00:00:00 2001 From: Kiyoshi Aman Date: Tue, 1 Mar 2011 23:17:57 -0500 Subject: testing/apache-mod-fcgid: new aport --- testing/apache-mod-fcgid/APKBUILD | 34 +++++++++++++++++++++++++++++++++ testing/apache-mod-fcgid/mod_fcgid.conf | 9 +++++++++ 2 files changed, 43 insertions(+) create mode 100644 testing/apache-mod-fcgid/APKBUILD create mode 100644 testing/apache-mod-fcgid/mod_fcgid.conf (limited to 'testing') diff --git a/testing/apache-mod-fcgid/APKBUILD b/testing/apache-mod-fcgid/APKBUILD new file mode 100644 index 000000000..7f9c1d7c6 --- /dev/null +++ b/testing/apache-mod-fcgid/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Kiyoshi Aman +# Maintainer: +pkgname=apache-mod-fcgid +pkgver=2.3.6 +pkgrel=0 +pkgdesc="FastCGI module for Apache 2.2" +url="http://httpd.apache.org/mod_fcgid/" +arch="all" +license="Apache" +depends= +makedepends="apache2-dev" +install="" +subpackages="$pkgname-doc" +source="http://apache.cyberuse.com//httpd/mod_fcgid/mod_fcgid-$pkgver.tar.bz2 + mod_fcgid.conf + " + +_builddir="$srcdir/mod_fcgid-$pkgver" + +build() { + cd "$_builddir" + ./configure.apxs || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + mkdir "$pkgdir"/etc/apache2/conf.d/ || return 1 + install -m644 "$srcdir"/mod_fcgid.conf "$pkgdir"/etc/apache2/conf.d/ || return 1 +} + +md5sums="30ee138f3f0eb1c55303400748f128a2 mod_fcgid-2.3.6.tar.bz2 +df658a483cf016112d75bbd1d92d7fb0 mod_fcgid.conf" diff --git a/testing/apache-mod-fcgid/mod_fcgid.conf b/testing/apache-mod-fcgid/mod_fcgid.conf new file mode 100644 index 000000000..01529b068 --- /dev/null +++ b/testing/apache-mod-fcgid/mod_fcgid.conf @@ -0,0 +1,9 @@ + + Alias /fcgi-bin/ "/usr/lib/fcgi-bin/" + + SetHandler fcgid-script + Options +ExecCGI + Order allow,deny + Allow from all + + -- cgit v1.2.3