blob: 9be1171df92f05ff70e36043d5c3ef570f83b3cf (
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
48
49
50
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnuserv/gnuserv-3.12.5.ebuild,v 1.1 2002/11/11 10:49:33 mkennedy Exp $
inherit elisp
IUSE=""
DESCRIPTION="Gnuserv allows you to 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"
DEPEND="virtual/glibc
virtual/emacs"
S="${WORKDIR}/${P}"
SITEFILE=50gnuserv-gentoo.el
src_compile() {
./configure --host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
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 COPYING INSTALL README README.orig
}
pkg_postinst() {
elisp-site-regen
}
pkg_postrm() {
elisp-site-regen
}
|