blob: 6291919212a7fcbd5eb1ae55f8cabfc114a830db (
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
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/vm-7.19.ebuild,v 1.2 2004/10/18 12:25:02 dholm Exp $
inherit elisp eutils
DESCRIPTION="An emacs major mode for reading and writing e-mail with support for GPG and MIME."
HOMEPAGE="http://www.wonderworks.com/vm/"
SRC_URI="ftp://ftp.uni-mainz.de/pub/software/gnu/${PN}/${P}.tar.gz
ftp://ftp.uu.net/networking/mail/${PN}/${P}.tar.gz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc"
IUSE=""
DEPEND="virtual/libc
virtual/emacs"
SITEFILE=50vm-gentoo.el
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/vm-direntry-fix-gentoo.patch
}
src_compile() {
make prefix=${D}/usr \
INFODIR=${D}/usr/share/info \
LISPDIR=${D}/${SITELISP}/vm \
PIXMAPDIR=${D}/${SITELISP}/etc/${PN} \
all || die
}
src_install() {
make prefix=${D}/usr \
INFODIR=${D}/usr/share/info \
LISPDIR=${D}/${SITELISP}/vm \
PIXMAPDIR=${D}/${SITELISP}/etc/${PN} \
install || die
elisp-install ${PN} *.el
elisp-site-file-install ${FILESDIR}/50vm-gentoo.el
dodoc README
}
|