# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-servers/fnord/fnord-1.8.ebuild,v 1.3 2004/10/02 00:00:23 pyrania Exp $ # flag-o-matic needed for replace-sparc64-flags inherit flag-o-matic eutils DESCRIPTION="Yet another small httpd." SRC_URI="http://www.fefe.de/fnord/${P}.tar.bz2 mirror://gentoo/${P}-gentoo.diff" HOMEPAGE="http://www.fefe.de/fnord/" KEYWORDS="~x86 ~sparc ppc" SLOT="0" LICENSE="GPL-2" IUSE="" 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() { # Fix for bug #45716 replace-sparc64-flags unpack ${A} ; cd ${S} sed -i "s:^CFLAGS=-O.*:CFLAGS=${CFLAGS}:" Makefile epatch ${DISTDIR}/${PF}-gentoo.diff || die "epatch failed." } src_compile() { emake || die } src_install () { exeinto /usr/bin doexe fnord-conf fnord dodoc TODO README SPEED COPYING CHANGES }