You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apache/mod_gnutls/mod_gnutls-0.5.9.ebuild

41 lines
957 B

# Copyright 1999-2011 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.5.9.ebuild,v 1.3 2011/06/19 15:30:38 maekke Exp $
EAPI="3"
inherit apache-module ssl-cert
DESCRIPTION="mod_gnutls uses GnuTLS to provide SSL/TLS encryption for Apache2, similarly to mod_ssl"
HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_gnutls/"
SRC_URI="http://www.outoforder.cc/downloads/${PN}/${P}.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~sparc x86"
IUSE=""
DEPEND=">=net-libs/gnutls-2.10.0"
RDEPEND="${DEPEND}"
APACHE2_MOD_CONF="47_${PN}"
APACHE2_MOD_DEFINE="GNUTLS"
DOCFILES="NEWS NOTICE README README.ENV"
need_apache2
src_configure() {
econf --with-apxs="${APXS}"
}
src_compile() {
emake || die "emake failed"
}
src_install() {
mv -f src/.libs/libmod_gnutls.so src/.libs/${PN}.so
keepdir /var/cache/${PN}
apache-module_src_install
}