blob: 5b67aebf258eb5b030342981d37b313e92ee3648 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.13.ebuild,v 1.2 2009/02/25 08:57:50 ulm Exp $
NEED_EMACS=23
inherit elisp
DESCRIPTION="Gentoo support for Emacs running as a server in the background"
HOMEPAGE="http://www.gentoo.org/proj/en/lisp/emacs/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=sys-apps/openrc-0.4"
SITEFILE="10${PN}-gentoo.el"
src_compile() { :; }
src_install() {
newinitd emacs.rc emacs || die
newconfd emacs.conf emacs || die
exeinto /usr/libexec/emacs
doexe emacs-wrapper.sh || die
elisp-site-file-install "${SITEFILE}" || die
keepdir /var/run/emacs || die
dodoc README ChangeLog || die
}
|