blob: 3c1492fb69ee0da9c90f063bf083113f3444e438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mod_ssl/mod_ssl-2.8.24-r1.ebuild,v 1.9 2005/10/07 18:05:56 gustavoz Exp $
inherit apache-module
MY_P=${P}-1.3.33
DESCRIPTION="An SSL module for the Apache 1.3 Web server"
HOMEPAGE="http://www.modssl.org/"
SRC_URI="http://www.modssl.org/source/${MY_P}.tar.gz"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86"
LICENSE="as-is"
SLOT="0"
IUSE=""
DEPEND=">=dev-libs/openssl-0.9.6k"
S=${WORKDIR}/${MY_P}
APACHE1_MOD_FILE="${S}/pkg.sslmod/libssl.so"
APACHE1_MOD_CONF="10_${PN}"
APACHE1_MOD_DEFINE="SSL"
VHOSTFILE="default-ssl"
DOCFILES="ANNOUNCE CHANGES CREDITS LICENSE NEWS README*"
need_apache1
src_unpack() {
unpack ${A} || die
cd ${S} || die
# proper path to openssl
sed -i -e 's:^\(openssl=\).*:\1"/usr/bin/openssl":' pkg.contrib/cca.sh
}
src_compile() {
if has_version '=sys-libs/gdbm-1.8.3*' ; then
myconf="--enable-rule=SSL_SDBM"
fi
SSL_BASE=SYSTEM \
./configure \
--with-apxs=${APXS1} ${myconf} || die "bad ./configure"
make || die "compile problem"
}
src_install() {
apache1_src_install
insinto ${APACHE1_VHOSTDIR}
doins ${FILESDIR}/${VHOSTFILE}.conf
exeinto /usr/lib/ssl/mod_ssl
doexe pkg.contrib/*.sh ${FILESDIR}/gentestcrt.sh
dodir /usr/share/doc/${PF}/html
cp -a pkg.ssldoc/* ${D}/usr/share/doc/${PF}/html
}
pkg_postinst() {
install -d -o root -g root -m0755 ${ROOT}${APACHE1_CONFDIR}/ssl
apache1_pkg_postinst
cd ${ROOT}${APACHE1_CONFDIR}/ssl
einfo "Generating self-signed test certificate in ${APACHE1_CONFDIR}/ssl..."
einfo "(Ignore any message from the yes command below)"
yes "" | ${ROOT}/usr/lib/ssl/mod_ssl/gentestcrt.sh >/dev/null 2>&1
einfo
}
|