diff options
author | Christian Parpart <trapni@gentoo.org> | 2005-04-08 22:47:39 +0000 |
---|---|---|
committer | Christian Parpart <trapni@gentoo.org> | 2005-04-08 22:47:39 +0000 |
commit | 326bf6b7efde08e4e496d240acde15852e9075f8 (patch) | |
tree | 84f528322d2cc14871fcb8f6593715c30734ead0 /www-apache/mod_gnutls | |
parent | Version bump. (diff) | |
download | gentoo-2-326bf6b7efde08e4e496d240acde15852e9075f8.tar.gz gentoo-2-326bf6b7efde08e4e496d240acde15852e9075f8.tar.bz2 gentoo-2-326bf6b7efde08e4e496d240acde15852e9075f8.zip |
initial import
(Portage version: 2.0.51.19)
Diffstat (limited to 'www-apache/mod_gnutls')
-rw-r--r-- | www-apache/mod_gnutls/ChangeLog | 10 | ||||
-rw-r--r-- | www-apache/mod_gnutls/Manifest | 5 | ||||
-rw-r--r-- | www-apache/mod_gnutls/files/47_mod_gnutls.conf | 39 | ||||
-rw-r--r-- | www-apache/mod_gnutls/files/digest-mod_gnutls-0.1.0 | 1 | ||||
-rw-r--r-- | www-apache/mod_gnutls/metadata.xml | 8 | ||||
-rw-r--r-- | www-apache/mod_gnutls/mod_gnutls-0.1.0.ebuild | 40 |
6 files changed, 103 insertions, 0 deletions
diff --git a/www-apache/mod_gnutls/ChangeLog b/www-apache/mod_gnutls/ChangeLog new file mode 100644 index 000000000000..0695ed465989 --- /dev/null +++ b/www-apache/mod_gnutls/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for www-apache/mod_gnutls +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_gnutls/ChangeLog,v 1.1 2005/04/08 22:47:39 trapni Exp $ + +*mod_gnutls-0.1.0 (08 Apr 2005) + + 08 Apr 2005; Christian Parpart <trapni@gentoo.org> +metadata.xml, + +mod_gnutls-0.1.0.ebuild: + initial import + diff --git a/www-apache/mod_gnutls/Manifest b/www-apache/mod_gnutls/Manifest new file mode 100644 index 000000000000..fd15412ead51 --- /dev/null +++ b/www-apache/mod_gnutls/Manifest @@ -0,0 +1,5 @@ +MD5 36eaebc8fd4d606fc814473af3308bc8 mod_gnutls-0.1.0.ebuild 918 +MD5 6c2da3fbe0e91b0bd6ea3b723760487a ChangeLog 269 +MD5 288302f1a17e60b9dc4ad242b6e85fe7 metadata.xml 229 +MD5 668cd19c29432aee3d683536dfd6d917 files/digest-mod_gnutls-0.1.0 69 +MD5 d6265605a9ce067809d303ace2091eda files/47_mod_gnutls.conf 1345 diff --git a/www-apache/mod_gnutls/files/47_mod_gnutls.conf b/www-apache/mod_gnutls/files/47_mod_gnutls.conf new file mode 100644 index 000000000000..14ab98160373 --- /dev/null +++ b/www-apache/mod_gnutls/files/47_mod_gnutls.conf @@ -0,0 +1,39 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_gnutls/files/47_mod_gnutls.conf,v 1.1 2005/04/08 22:47:39 trapni Exp $ + +<IfDefine GNUTLS> + LoadModule gnutls_module modules/mod_gnutls.so +</IfDefine> + +<IfDefine mod_gnutls.c> + # mod_gnutls can optionaly use a memcached server to store it's SSL Sessions. + # This is useful in a cluster enviroment, where you want all of your servers + # to share a single SSL Session Cache. + #GnuTLSCache memcache "127.0.0.1 server2.example.com server3.example.com" + + # The Default method is to use a DBM backed Cache. It isn't super fast, but + # it is portable and does not require another server to be running like memcached. + GnuTLSCache dbm conf/gnutls_cache +</IfDefine> + +# the following is an example virtual-host as you could configure it. +# however, this is just an example. You should always put your own +# configuration stuff inside your own files within vhosts.d/ directory. +# +<IfDefine GNUTLS_EXAMPLE> + <VirtualHost 1.2.3.4:443> + # insert other directives ... here ... + + # This enables the mod_gnutls Handlers for this Virtual Host + GnuTLSEnable On + + # This is the Private key for your server. + GnuTLSKeyFile conf/server.key + + # This is the Server Certificate. + GnuTLSCertificateFile conf/server.cert + </VirtualHost> +</IfDefine> + +# vim:ai:noet:ts=4:nowrap:syntax=apache diff --git a/www-apache/mod_gnutls/files/digest-mod_gnutls-0.1.0 b/www-apache/mod_gnutls/files/digest-mod_gnutls-0.1.0 new file mode 100644 index 000000000000..f22e1575dc59 --- /dev/null +++ b/www-apache/mod_gnutls/files/digest-mod_gnutls-0.1.0 @@ -0,0 +1 @@ +MD5 0a6ee9e1f6e091e74683f58750752de2 mod_gnutls-0.1.0.tar.bz2 165582 diff --git a/www-apache/mod_gnutls/metadata.xml b/www-apache/mod_gnutls/metadata.xml new file mode 100644 index 000000000000..b2bacb8d4b0b --- /dev/null +++ b/www-apache/mod_gnutls/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>apache</herd> + <maintainer> + <email>trapni@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/www-apache/mod_gnutls/mod_gnutls-0.1.0.ebuild b/www-apache/mod_gnutls/mod_gnutls-0.1.0.ebuild new file mode 100644 index 000000000000..2673e1ad1fe8 --- /dev/null +++ b/www-apache/mod_gnutls/mod_gnutls-0.1.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_gnutls/mod_gnutls-0.1.0.ebuild,v 1.1 2005/04/08 22:47:39 trapni Exp $ + +inherit apache-module + +DESCRIPTION="mod_gnutls uses the GnuTLS library to provide SSL v3, TLS 1.0 and \ +TLS 1.1 encryption for Apache HTTPD. It is similar to mod_ssl in purpose, but \ +does not use OpenSSL." +SRC_URI="http://www.outoforder.cc/downloads/mod_gnutls/${P}.tar.bz2" +HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_gnutls/" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND=">=net-libs/gnutls-1.2.0" + +APACHE2_MOD_CONF="47_${PN}" +APACHE2_MOD_DEFINE="GNUTLS" + +DOCFILES="LICENSE NOTICE README" + +need_apache2 + +src_compile() { + ./autogen.sh || die "couldn't create autotool files" + + econf --with-apxs=/usr/sbin/apxs2 || die "configure failed" + + emake || die "make failed" +} + +src_install() { + mv src/.libs/{lib,}mod_gnutls.so + apache-module_src_install +} + +# vim:ts=4 |