diff options
Diffstat (limited to 'www-apache/mod_gnutls/mod_gnutls-0.1.1-r1.ebuild')
-rw-r--r-- | www-apache/mod_gnutls/mod_gnutls-0.1.1-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/www-apache/mod_gnutls/mod_gnutls-0.1.1-r1.ebuild b/www-apache/mod_gnutls/mod_gnutls-0.1.1-r1.ebuild new file mode 100644 index 000000000000..d91bb9924758 --- /dev/null +++ b/www-apache/mod_gnutls/mod_gnutls-0.1.1-r1.ebuild @@ -0,0 +1,42 @@ +# 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.1-r1.ebuild,v 1.1 2005/04/09 22:10:53 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() { + econf --with-apxs=/usr/sbin/apxs2 || die "configure failed" + + emake || die "make failed" +} + +src_install() { + mv src/.libs/{lib,}mod_gnutls.so + + insinto ${APACHE2_CONFDIR} + doins data/rsafile data/dhfile + + apache-module_src_install +} + +# vim:ts=4 |