blob: bab74ced788460d62779c13dc3cd657cd0a27551 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools flag-o-matic toolchain-funcs
if [[ ${PV} = 9999* ]]
then
EGIT_REPO_URI="https://github.com/blueness/sthttpd.git"
inherit git-r3
else
MY_P="s${P}"
S="${WORKDIR}/${MY_P}"
SRC_URI="https://github.com/blueness/sthttpd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
fi
DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"
HOMEPAGE="https://github.com/blueness/sthttpd http://opensource.dyc.edu/sthttpd"
LICENSE="BSD GPL-2"
SLOT="0"
RDEPEND="
acct-group/thttpd
acct-user/thttpd
virtual/libcrypt:=
"
DEPEND="${RDEPEND}"
WEBROOT="/var/www/localhost"
src_prepare() {
eapply "${FILESDIR}"/thttpd-renamed-htpasswd.patch
mv "${S}"/extras/{htpasswd.c,th_htpasswd.c} || die
eapply_user
eautoreconf -f -i
}
src_configure() {
econf WEBDIR="${EPREFIX}/${WEBROOT}/htdocs"
}
src_install() {
default
newinitd "${FILESDIR}"/thttpd.init.1 thttpd
newconfd "${FILESDIR}"/thttpd.confd.1 thttpd
insinto /etc/logrotate.d
newins "${FILESDIR}/thttpd.logrotate" thttpd
insinto /etc/thttpd
doins "${FILESDIR}"/thttpd.conf.sample
# move htdocs to docdir, bug #429632
docompress -x /usr/share/doc/"${PF}"/htdocs.dist
mv "${ED}"/${WEBROOT}/htdocs "${ED}"/usr/share/doc/"${PF}"/htdocs.dist || die
mkdir "${ED}"/${WEBROOT}/htdocs || die
keepdir ${WEBROOT}/htdocs
chown root:thttpd "${ED}/usr/sbin/makeweb" || die
chmod 2751 "${ED}/usr/sbin/makeweb" || die
chmod 755 "${ED}/usr/share/doc/${PF}/htdocs.dist/cgi-bin/printenv" || die
}
|