blob: e1c48ff49163f5bfdf81abbb884d70dd97cbd5fa (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/virtual/gnus/gnus-5.10.ebuild,v 1.6 2007/10/15 18:21:53 ulm Exp $
inherit versionator
DESCRIPTION="Virtual for the Gnus newsreader"
HOMEPAGE="http://www.gentoo.org/proj/en/lisp/emacs/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ppc64 sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE=""
RDEPEND="|| (
>=app-emacs/gnus-5.10.8
>=app-emacs/ngnus-0.6
>=virtual/emacs-22
)"
DEPEND="${RDEPEND}
virtual/emacs"
pkg_setup () {
local gvn=$(emacs -batch -q \
--eval "(and (require 'gnus nil t) (princ gnus-version-number))")
if [ "${gvn}" ] && version_is_at_least ${PV} "${gvn}"; then
einfo "Gnus version ${gvn} detected."
elif has_version app-emacs/ngnus; then
# ngnus doesn't follow the usual versioning scheme
einfo "No Gnus version ${gvn} detected."
else
eerror "virtual/${P} requires at least Gnus version ${PV}."
eerror "You should either install package app-emacs/{gnus,ngnus},"
eerror "or use \"eselect emacs\" to select an Emacs version >= 22."
die "Gnus version ${gvn} is too low."
fi
}
|