# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # net-ftp/bftpd/bftpd-1.5.ebuild inherit eutils KEYWORDS="~x86 ~amd64" DESCRIPTION="easy configurable FTP server." HOMEPAGE="http://www.bftpd.sourceforge.net/" SRC_URI="http://bftpd.sourceforge.net/downloads/src/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" src_unpack() { unpack ${A} cd "${S}" } src_compile() { econf || die emake || die } src_install() { dosbin bftpd doman bftpd.8 newdoc bftpd.conf bftpd.conf.example dodoc CHANGELOG README TODO } pkg_postinst() { echo einfo "bftpd runs either with inetd or standalone." einfo "An example for /etc/bftpd.conf is in /usr/share/doc/bftpd-1.5" echo }