blob: c1ab80af7801125474e1a5db166e5a39473f770e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/eps/eps-1.5.ebuild,v 1.3 2005/03/05 10:59:20 josejx Exp $
DESCRIPTION="Inter7 Email Processing and mht System library"
HOMEPAGE="http://www.inter7.com/eps"
SRC_URI="http://www.inter7.com/eps/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND="virtual/libc
sys-apps/sed"
RDEPEND="virtual/libc"
src_compile() {
sed -i -e 's/\/usr/\$\(DESTDIR\)\$\(prefix\)/g' \
-e 's/\-O3/\$\(CFLAGS\)/g' \
-e 's/cp -pf/cp -f/g' \
Makefile
make || die "compile failed"
}
src_install() {
make prefix=/usr DESTDIR=${D} install || die "install failed"
dodoc ChangeLog TODO doc/*
}
|