# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Text editor from FreeBSD" HOMEPAGE="http://www.freebsd.org/" MY_P="${PN}-${PV}.src.tgz" SRC_URI="ftp://ftp.openbsd.org/pub/OpenBSD/distfiles//${MY_P}" S="easyedit-${PV}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64 ~ppc ~x86-fbsd" IUSE="" DEPEND="" RDEPEND="${DEPEND}" src_unpack(){ unpack ${MY_P} cd "${S}" sed -i Makefile \ -e "s:/usr/local/bin/:/usr/bin/:" } src_compile() { cd "${S}" make || die } src_install() { cd "${S}" dobin ee || die doman ee.1 }