blob: 6cb5feaad4667fe8d88966f813a39b0fe0a31b4f (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/undo-tree/undo-tree-0.1.7.ebuild,v 1.1 2010/12/01 11:45:14 tomka Exp $
NEED_EMACS=22
inherit elisp
DESCRIPTION="undo trees and visualization"
HOMEPAGE="http://www.dr-qubit.org/emacs.php#undo-tree"
SRC_URI="mirror://gentoo/${P}.el.bz2
http://dev.gentoo.org/~tomka/files/${P}.el.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
SITEFILE="50${PN}-gentoo.el"
pkg_postinst() {
elisp-site-regen
elog "To enable undo trees globally, place '(global-undo-tree-mode)'"
elog "in your .emacs file."
}
|