blob: 57b2e81f46adcc987e16f2ff51ca7f67fc17d16f (
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
|
# 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.7.ebuild,v 1.3 2005/05/03 11:42:38 usata Exp $
inherit elisp eutils
DESCRIPTION="attach to an already running Emacs"
HOMEPAGE="http://meltin.net/hacks/emacs/"
SRC_URI="http://meltin.net/hacks/emacs/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="virtual/libc
virtual/emacs"
SITEFILE=50gnuserv-gentoo.el
src_compile() {
# bug #83112
unset LDFLAGS
econf \
--x-includes=/usr/X11R6/include \
--x-libraries=/usr/X11R6/lib || die
emake || die
}
src_install() {
dodir /usr/share/man/man1
einstall man1dir=${D}/usr/share/man/man1 || die
elisp-install ${PN} *.el *.elc
elisp-site-file-install ${FILESDIR}/${SITEFILE}
dodoc ChangeLog INSTALL README README.orig
}
|