blob: 55d9a06c5f97c106fa305fd8188d6f6af9846da9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2004 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.6 2004/07/01 12:01:31 eradicator Exp $
inherit eutils
DESCRIPTION="Pep is a 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="~x86 ~ppc ~sparc ~mips"
IUSE=""
DEPEND="app-arch/unzip
virtual/libc"
RDEPEND="virtual/libc"
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 || die "epatch failed"
}
src_compile() {
# make man page too
make Doc/pep.1 || die "make man page failed"
emake || die "emake failed"
}
src_install() {
dobin pep || die
doman Doc/pep.1
insinto /usr/share/pep
doins Filters/*
dodoc aareadme.txt file_id.diz
}
|