blob: 10e02c3f42128f2e9d2cfbbd3d1322d571cddeb5 (
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
44
45
46
47
48
49
50
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pep/pep-2.8-r1.ebuild,v 1.1 2010/08/26 22:05:21 jer Exp $
EAPI="2"
inherit eutils toolchain-funcs
DESCRIPTION="General purpose filter and file cleaning program"
HOMEPAGE="http://hannemyr.com/enjoy/pep.html"
SRC_URI="http://hannemyr.com/enjoy/${PN}${PV//./}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~mips ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}
src_prepare() {
# pep does not come with autconf so here's a patch to configure
# Makefile with the correct path
epatch \
"${FILESDIR}"/${P}-gentoo.patch \
"${FILESDIR}"/${P}-include.patch
# Darwin lacks stricmp
[[ ${CHOST} == *-darwin* ]] && \
sed -i -e '/^OBJS/s/^\(.*\)$/\1 bdmg.o/' Makefile
}
src_compile() {
[[ ${CHOST} == *-darwin* ]] && \
append-flags "-DDIRCHAR=\\'/\\'" -DSTRICMP
# make man page too
make Doc/pep.1 || die "make man page failed"
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
dobin pep || die "dobin failed"
doman Doc/pep.1 || die "doman failed"
insinto /usr/share/pep
doins Filters/* || die "doins failed"
dodoc aareadme.txt file_id.diz
}
|