summaryrefslogtreecommitdiff
blob: df4be8a63f0910299a291108640760dd236b7756 (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.1 2005/01/05 19:15:21 ticho 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/*
}