blob: 8d3862e6fef7d5676a2c94fe2ca10f13ebea6a40 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Author: Thilo Bangert <bangert@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-www/fnord/fnord-1.2.ebuild,v 1.2 2002/04/27 21:36:36 bangert Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Yet another small httpd."
SRC_URI="http://www.fefe.de/fnord/${P}.tar.bz2"
HOMEPAGE="http://www.fefe.de/fnord/"
DEPEND="dev-libs/dietlibc"
RDEPEND="sys-apps/daemontools"
src_unpack() {
unpack ${A} ; cd ${S}
mv Makefile Makefile.orig
sed -e "s:^CFLAGS=-O.*:CFLAGS=${CFLAGS}:" \
Makefile.orig > Makefile
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
emake || die
}
src_install () {
exeinto /usr/bin
doexe fnord-conf fnord fnord-cgi
dodoc TODO README SPEED COPYING CHANGES
}
|