blob: 40a9f47132323edfbe21f65408f6cb9bfc317203 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/scmail/scmail-0.2.ebuild,v 1.3 2004/03/28 10:48:03 hattya Exp $
IUSE=""
HOMEPAGE="http://namazu.org/~satoru/scmail/"
DESCRIPTION="a mail filter written in Scheme"
SRC_URI="http://namazu.org/~satoru/scmail/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND=">=dev-lisp/gauche-0.6.3"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
emake || die
}
src_install() {
einstall PREFIX=${D}/usr || die
dodoc scmailrc*.sample doc/*
}
|