blob: 6962f0e47fd90c91e6a5dafff3cf2e9bba9994e9 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit elisp
DESCRIPTION="library that implements user-interfaces for in-buffer completion"
HOMEPAGE="http://www.dr-qubit.org/emacs.php#completion"
# Upstream ships this as 0.11.8, but it contains version 0.11.10
SRC_URI="mirror://gentoo/${P}.tar.gz
http://dev.gentoo.org/~tomka/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}/${PN}"
SITEFILE="50${PN}-gentoo.el"
pkg_postinst() {
elisp-site-regen
elog "This package ships completion for dabbrev, etags, elisp, "
elog "files, semantic, and nxml. You may want to bind the complete-? "
elog "functions to a key in your .emacs file."
}
|