diff options
Diffstat (limited to 'net-www/fnord/fnord-1.7.ebuild')
-rw-r--r-- | net-www/fnord/fnord-1.7.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/net-www/fnord/fnord-1.7.ebuild b/net-www/fnord/fnord-1.7.ebuild new file mode 100644 index 000000000000..dbc013fd9a5e --- /dev/null +++ b/net-www/fnord/fnord-1.7.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/fnord/fnord-1.7.ebuild,v 1.1 2003/01/17 10:08:34 aliz 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/" + +KEYWORDS="x86 sparc " +SLOT="0" +LICENSE="GPL-2" + +DEPEND="dev-libs/dietlibc" +RDEPEND="sys-apps/daemontools" + +pkg_setup() { + + if ! grep -q ^fnord: /etc/passwd ; then + useradd -g nofiles -s /bin/false -d /etc/fnord -c "fnord" fnord\ + || die "problem adding user fnord" + fi + if ! grep -q ^fnordlog: /etc/passwd ; then + useradd -g nofiles -s /bin/false -d /etc/fnord -c "fnordlog" fnordlog\ + || die "problem adding user fnordlog" + fi +} + +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 + + dodoc TODO README SPEED COPYING CHANGES + +} |