blob: 757f6652ec204125a60e58a84316956548a0490e (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_suphp/mod_suphp-0.6.2-r3.ebuild,v 1.4 2008/03/23 12:02:17 hollow Exp $
inherit apache-module autotools eutils
MY_P="${P/mod_/}"
SETIDMODES="mode-force mode-owner mode-paranoid"
KEYWORDS="~amd64 ~ppc ~x86"
DESCRIPTION="A PHP wrapper for Apache2"
HOMEPAGE="http://www.suphp.org/"
SRC_URI="http://www.suphp.org/download/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE="checkpath ${SETIDMODES}"
S="${WORKDIR}/${MY_P}"
APXS2_S="${S}/src/apache2"
APACHE2_MOD_CONF="70_${PN}"
APACHE2_MOD_DEFINE="SUPHP"
need_apache2_2
pkg_setup() {
modecnt=0
for mode in ${SETIDMODES} ; do
if use ${mode} ; then
if [[ ${modecnt} -eq 0 ]] ; then
SUPHP_SETIDMODE=${mode/mode-}
let modecnt++
elif [[ ${modecnt} -ge 1 ]] ; then
die "You can only select ONE mode in your USE flags!"
fi
fi
done
if [[ ${modecnt} -eq 0 ]] ; then
ewarn
ewarn "No mode selected, defaulting to paranoid!"
ewarn
ewarn "If you want to choose another mode, put mode-force OR mode-owner"
ewarn "into your USE flags and run emerge again."
ewarn
SUPHP_SETIDMODE=paranoid
fi
elog
elog "Using ${SUPHP_SETIDMODE/mode-} mode"
elog
elog "You can manipulate several configure options of this"
elog "ebuild through environment variables:"
elog
elog "SUPHP_MINUID: Minimum UID, which is allowed to run scripts (default: 1000)"
elog "SUPHP_MINGID: Minimum GID, which is allowed to run scripts (default: 100)"
elog "SUPHP_APACHEUSER: Name of the user Apache is running as (default: apache)"
elog "SUPHP_LOGFILE: Path to suPHP logfile (default: /var/log/apache2/suphp_log)"
elog
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-handler.patch
eautoreconf
}
src_compile() {
local myargs=""
use checkpath || myargs="${myargs} --disable-checkpath"
: ${SUPHP_MINUID:=1000}
: ${SUPHP_MINGID:=100}
: ${SUPHP_APACHEUSER:="apache"}
: ${SUPHP_LOGFILE:="/var/log/apache2/suphp_log"}
myargs="${myargs} \
--with-setid-mode=${SUPHP_SETIDMODE} \
--with-min-uid=${SUPHP_MINUID} \
--with-min-gid=${SUPHP_MINGID} \
--with-apache-user=${SUPHP_APACHEUSER} \
--with-logfile=${SUPHP_LOGFILE} \
--with-apxs=${APXS} \
--with-apr=/usr/bin/apr-1-config"
econf ${myargs} || die "econf failed"
emake || die "make failed"
}
src_install() {
apache-module_src_install
dosbin src/suphp
fperms 4755 /usr/sbin/suphp
dodoc ChangeLog doc/CONFIG
docinto apache
dodoc doc/apache/CONFIG doc/apache/INSTALL
insinto /etc
doins "${FILESDIR}/suphp.conf"
}
pkg_postinst() {
# Make sure the suphp binary is set setuid
chmod 4755 "${ROOT}"/usr/sbin/suphp
apache-module_pkg_postinst
}
|