blob: 210abc462add69a383ce0f815235927c14f18024 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnuserv/gnuserv-3.12.4.ebuild,v 1.8 2005/05/03 11:01:57 usata Exp $
inherit elisp
DESCRIPTION="attach to an already running Emacs"
HOMEPAGE="http://meltin.net/hacks/emacs/"
SRC_URI="http://meltin.net/hacks/emacs/src/OLD/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc
virtual/emacs"
SITEFILE=50gnuserv-gentoo.el
src_compile() {
unset LDFLAGS
econf || die
emake || die
}
src_install() {
dodir /usr/share/man/man1
make prefix=${D}/usr \
man1dir=${D}/usr/share/man/man1 \
infodir=${D}/usr/share/info \
install || die
elisp-install ${PN} *.el *.elc
elisp-site-file-install ${FILESDIR}/${SITEFILE}
dodoc ChangeLog INSTALL README README.orig
}
|