blob: 415a8ddad2537128904d5043d3b9f81c00d2798d (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/gnus-5.10.3.ebuild,v 1.6 2004/06/24 22:12:22 agriffis Exp $
inherit elisp
IUSE="emacs-w3"
DESCRIPTION="The Gnus newsreader and mail-reader"
HOMEPAGE="http://www.gnus.org/"
SRC_URI="http://quimby.gnus.org/gnus/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~alpha ~sparc"
DEPEND="virtual/emacs
emacs-w3? ( app-emacs/w3 )"
src_compile() {
local myconf
if use emacs-w3 ; then
myconf="${myconf} --with-w3=/usr/share/emacs/site-lisp/w3"
myconf="${myconf} --with-url=/usr/share/emacs/site-lisp/w3"
else
myconf="${myconf} --without-w3 --without-url"
fi
econf \
--with-emacs \
--with-lispdir=/usr/share/emacs/site-lisp/gnus-cvs \
--with-etcdir=/usr/share/emacs/etc \
${myconf} || die "econf failed"
emake || die
}
src_install() {
einstall \
lispdir=${D}/usr/share/emacs/site-lisp/gnus-cvs \
etcdir=${D}/usr/share/emacs/etc \
|| die
elisp-site-file-install ${FILESDIR}/70${PN}-gentoo.el
dodoc ChangeLog GNUS-NEWS README todo
# fix info documentation
find ${D}/usr/share/info -type f -exec mv {} {}.info \;
}
|