# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/atftp/atftp-0.6.2.ebuild,v 1.4 2004/01/27 00:33:43 zul Exp $ inherit eutils DESCRIPTION="Advanced TFTP implementation client/server" HOMEPAGE="ftp://ftp.mamalinux.com/pub/atftp/" SRC_URI="ftp://ftp.mamalinux.com/pub/atftp/${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~x86 ~sparc" SLOT="0" DEPEND="tcpd? ( sys-apps/tcp-wrappers ) !virtual/tftp" PROVIDE="virtual/tfp" src_compile () { myconf="" use tcpd && myconf="${myconf} --enable-libwrap" \ || myconf="${myconf} --disable-libwrap" econf ${myconf} || die "./configure failed" cp Makefile Makefile.orig sed "s:CFLAGS = -g -Wall -D_REENTRANT -O2:CFLAGS = -g -Wall -D_REENTRANT ${CFLAGS}:" Makefile.orig >Makefile emake || die } src_install () { einstall || die "Installation failed" exeinto /etc/init.d newexe ${FILESDIR}/atftp.init atftp insinto /etc/conf.d newexe ${FILESDIR}/atftp.confd atftp }