You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-ftp/oftpd/oftpd-0.3.7-r3.ebuild

42 lines
1.0 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/oftpd/oftpd-0.3.7-r3.ebuild,v 1.7 2009/05/29 13:23:35 rbu Exp $
inherit eutils
DESCRIPTION="Secure, small, anonymous only ftpd"
HOMEPAGE="http://www.time-travellers.org/oftpd"
SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 arm ~ppc ppc64 sh sparc x86"
IUSE=""
DEPEND="net-ftp/ftpbase"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
# Don't crash when using an unsupported address family, #159178.
epatch "${FILESDIR}"/oftpd-0.3.7-family.patch
}
src_compile() {
# local myconf
# ipv6 support busted according to lamer
# use ipv6 && myconf="${myconf} --enable-ipv6"
econf --bindir=/usr/sbin || die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS BUGS FAQ NEWS README TODO
keepdir /home/ftp
newinitd "${FILESDIR}"/init.d.oftpd oftpd
newconfd "${FILESDIR}"/conf.d.oftpd oftpd
}