blob: 181bda7402b0045e3c8cdf53f0e6df3c4eb9cf3e (
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
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/easypg/easypg-0.0.11-r2.ebuild,v 1.1 2007/05/23 17:31:47 opfer Exp $
inherit elisp
MY_PN=epg
DESCRIPTION="GnuPG interface for Emacs"
HOMEPAGE="http://www.easypg.org/"
SRC_URI="mirror://sourceforge.jp/epg/24683/${MY_PN}-${PV}.tar.gz
gnus? ( mirror://sourceforge.jp/epg/24683/pgg-${MY_PN}.el )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnus"
DEPEND="app-crypt/gnupg"
RDEPEND="${DEPEND}
gnus? ( virtual/gnus )"
SITEFILE=50${PN}-gentoo.el
S=${WORKDIR}/${MY_PN}-${PV}
src_compile(){
econf
emake || die "emake failed"
elisp-make-autoload-file \
|| die "elisp-make-autoload-file failed"
if use gnus; then
cp "${DISTDIR}/pgg-epg.el" "${WORKDIR}"
elisp-compile "${WORKDIR}/pgg-epg.el" || die "elisp-compile failed"
fi
}
src_install() {
einstall || die "einstall failed"
elisp-install ${MY_PN} ${PN}-autoloads.el
elisp-site-file-install "${FILESDIR}/${SITEFILE}" ${MY_PN}
if use gnus; then
elisp-install ${MY_PN} "${WORKDIR}"/pgg-epg.el{,c}
fi
}
elisp_pkg_postinst() {
elog "See the epa info page for more information"
if use gnus; then
elog "To use, add (setq pgg-scheme 'epg) to your ~/.gnus"
fi
elisp-site-regen
}
|