blob: 934152d97ff6ccd623535802bfaf4952b2a3fcdf (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/run-mailcap/run-mailcap-3.23_p1.ebuild,v 1.4 2003/09/15 21:59:26 dholm Exp $
MY_PV="${PV/_p/-}"
DESCRIPTION="Execute programs via entries in the mailcap file"
HOMEPAGE="http://packages.debian.org/unstable/net/mime-support.html"
SRC_URI="http://ftp.debian.org/debian/pool/main/m/mime-support/mime-support_${MY_PV}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~alpha ~arm ~hppa ~mips ~sparc ~ppc x86"
IUSE=""
DEPEND=""
RDEPEND=">=perl-5.6*"
S=${WORKDIR}/mime-support
src_compile() {
cp run-mailcap.man run-mailcap.1 || die "cp failed"
}
src_install() {
dobin run-mailcap
doman run-mailcap.1
}
|