diff options
author | 2021-04-17 21:17:07 +0200 | |
---|---|---|
committer | 2021-04-17 21:19:40 +0200 | |
commit | bbcd67dcbe68efb0eecb6df18913aff063c20d02 (patch) | |
tree | 9107b34721c19c892b8b5d4be7422d2be15792a2 /www-servers/fnord | |
parent | net-proxy/wwwoffle: drop old version (diff) | |
download | gentoo-bbcd67dcbe68efb0eecb6df18913aff063c20d02.tar.gz gentoo-bbcd67dcbe68efb0eecb6df18913aff063c20d02.tar.bz2 gentoo-bbcd67dcbe68efb0eecb6df18913aff063c20d02.zip |
www-servers/fnord: migrate to glep 81
Closes: https://bugs.gentoo.org/781536
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'www-servers/fnord')
-rw-r--r-- | www-servers/fnord/fnord-1.11-r2.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www-servers/fnord/fnord-1.11-r2.ebuild b/www-servers/fnord/fnord-1.11-r2.ebuild new file mode 100644 index 000000000000..0465b9d94b84 --- /dev/null +++ b/www-servers/fnord/fnord-1.11-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 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 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 ) + +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 +} |