# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/pep/pep-2.8.ebuild,v 1.11 2008/03/27 16:03:46 fmccor Exp $ inherit eutils toolchain-funcs DESCRIPTION="General purpose filter and file cleaning program" HOMEPAGE="http://folk.uio.no/gisle/enjoy/pep.html" SRC_URI="http://folk.uio.no/gisle/enjoy/${PN}${PV//./}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="mips ppc sparc x86" IUSE="" DEPEND="app-arch/unzip" RDEPEND="" S=${WORKDIR} src_unpack() { unpack ${A} # pep does not come with autconf so here's a patch to configure # Makefile with the correct path epatch "${FILESDIR}"/${P}-gentoo.patch } src_compile() { # make man page too make Doc/pep.1 || die "make man page failed" emake CC="$(tc-getCC)" || die "emake failed" } src_install() { dobin pep doman Doc/pep.1 insinto /usr/share/pep doins Filters/* dodoc aareadme.txt file_id.diz }