# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/fireftp/fireftp-0.9.4.ebuild,v 1.1 2005/12/22 18:23:53 egore Exp $ DESCRIPTION="an FTP server intended for Web hosting providers" HOMEPAGE="http://firestuff.org/" SRC_URI="http://firestuff.org/projects/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" DEPEND="virtual/libc dev-libs/firestring dev-libs/firedns" S=${WORKDIR}/${PN} src_compile() { econf || die "econf failed" emake PREFIX="/usr" CONFDIR="/etc" MANDIR="/usr/share/man" || die "emake failed" } src_install () { emake PREFIX="${D}usr" CONFDIR="${D}etc" MANDIR="${D}usr/share/man" install || die "emake install failed" dodoc README }