blob: 4b54abe52677789a4134fc145d7435a6aa30026e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/ripmime/ripmime-1.4.0.6.ebuild,v 1.1 2006/03/18 00:40:25 ticho Exp $
DESCRIPTION="extract attachment files out of a MIME-encoded email pack"
HOMEPAGE="http://pldaniels.com/ripmime/"
SRC_URI="http://www.pldaniels.com/ripmime/${P}.tar.gz"
LICENSE="Sendmail"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
dobin ripmime || die
doman ripmime.1
dodoc CHANGELOG INSTALL README TODO
}
|