Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/fnord/
Date: Sat, 17 Apr 2021 19:20:39
Message-Id: 1618687180.bbcd67dcbe68efb0eecb6df18913aff063c20d02.conikost@gentoo
1 commit: bbcd67dcbe68efb0eecb6df18913aff063c20d02
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 19:17:07 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 19:19:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbcd67dc
7
8 www-servers/fnord: migrate to glep 81
9
10 Closes: https://bugs.gentoo.org/781536
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 www-servers/fnord/fnord-1.11-r2.ebuild | 40 ++++++++++++++++++++++++++++++++++
15 1 file changed, 40 insertions(+)
16
17 diff --git a/www-servers/fnord/fnord-1.11-r2.ebuild b/www-servers/fnord/fnord-1.11-r2.ebuild
18 new file mode 100644
19 index 00000000000..0465b9d94b8
20 --- /dev/null
21 +++ b/www-servers/fnord/fnord-1.11-r2.ebuild
22 @@ -0,0 +1,40 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit flag-o-matic toolchain-funcs
29 +
30 +DESCRIPTION="Yet another small httpd"
31 +HOMEPAGE="http://www.fefe.de/fnord/"
32 +SRC_URI="http://www.fefe.de/fnord/${P}.tar.bz2"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~hppa ppc sparc x86"
37 +IUSE="auth"
38 +
39 +RDEPEND="
40 + acct-group/nofiles
41 + acct-user/fnord
42 + acct-user/fnordlog
43 + sys-apps/ucspi-tcp
44 + virtual/daemontools
45 +"
46 +
47 +DOCS=( TODO README README.auth SPEED CHANGES )
48 +
49 +PATCHES=( "${FILESDIR}/${PN}"-1.10-gentoo.diff )
50 +
51 +src_compile() {
52 + # Fix for bug #45716
53 + use sparc && replace-sparc64-flags
54 + use auth && append-flags -DAUTH
55 +
56 + emake DIET="" CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
57 +}
58 +
59 +src_install() {
60 + dobin fnord-conf fnord
61 + einstalldocs
62 +}