summaryrefslogtreecommitdiff
blob: 3dfb1ae8e2848fca512223baedac8bd6ae9f4717 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/fnord/fnord-1.9.ebuild,v 1.4 2005/05/22 15:26:50 swegener Exp $

inherit flag-o-matic eutils

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="~hppa ppc ~sparc ~x86"
IUSE="diet"

DEPEND="diet? ( dev-libs/dietlibc )
	!diet? ( virtual/libc )"

RDEPEND="${DEPEND}
	sys-process/daemontools
	sys-apps/ucspi-tcp"

pkg_setup() {
	enewuser fnord -1 /bin/false /etc/fnord nofiles
	enewuser fnordlog -1 /bin/false /etc/fnord nofiles
}

src_unpack() {
	unpack ${A} && cd ${S}
	epatch ${FILESDIR}/${P}-gentoo.diff
}

src_compile() {
	local DIET=""
	use diet && DIET="diet"

	# Fix for bug #45716
	replace-sparc64-flags

	emake DIET="${DIET}" CFLAGS="${CFLAGS}" || die "emake failed"
}

src_install () {
	dobin fnord-conf fnord || die
	dodoc TODO README SPEED COPYING CHANGES
}