blob: 1416151ef5d29447acc82de88af839c5e02dacf8 (
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/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild,v 1.5 2004/07/15 15:12:06 slarti Exp $
inherit elisp
MY_P="${PN}-all-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Elisp client for the LysKOM conference system"
HOMEPAGE="http://www.lysator.liu.se/lyskom/klienter/emacslisp/index.en.html"
SRC_URI="http://www.lysator.liu.se/lyskom/klienter/emacslisp/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND="virtual/emacs"
SITEFILE=50lyskom-elisp-client-gentoo.el
src_unpack() {
unpack ${A}
cd ${S}
mv lyskom-all-${PV}.el lyskom.el
}
src_install() {
elisp-install ${PN} *.el*
elisp-site-file-install ${FILESDIR}/${SITEFILE}
dodoc NEWS-* README
}
pkg_postinst() {
elisp-site-regen
ewarn
ewarn "If you prefer Swedish language environment, add"
ewarn "\t(setq-default kom-default-language 'sv)"
ewarn "to your emacs configuration file."
ewarn
}
pkg_postrm() {
elisp-site-regen
}
|