blob: e9461de8b8f112e081bc2bf4d253a6e2f0a375d8 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Yet another small httpd"
HOMEPAGE="http://www.fefe.de/fnord/"
SRC_URI="http://www.fefe.de/fnord/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~riscv ~sparc ~x86"
IUSE="auth"
RDEPEND="
acct-group/nofiles
acct-user/fnord
acct-user/fnordlog
sys-apps/ucspi-tcp
virtual/daemontools
"
DOCS=( TODO README README.auth SPEED CHANGES )
PATCHES=(
"${FILESDIR}/${PN}"-1.10-gentoo.diff
"${FILESDIR}/${PN}"-1.11-clang-16-build-fix.patch
)
src_compile() {
# Fix for bug #45716
use sparc && replace-sparc64-flags
use auth && append-flags -DAUTH
emake DIET="" CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin fnord-conf fnord
einstalldocs
}
|