blob: 0a3dfecb8ca4128d257036b4df48705ca9f7209b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/erc-cvs/erc-cvs-4.1.ebuild,v 1.5 2004/09/03 21:57:06 slarti Exp $
ECVS_SERVER="cvs.sourceforge.net:/cvsroot/erc"
ECVS_MODULE="erc"
ECVS_USER="anonymous"
ECVS_CVS_OPTIONS="-dP"
inherit elisp cvs
S=${WORKDIR}/${ECVS_MODULE}
DESCRIPTION="ERC - The Emacs IRC Client - CVS"
HOMEPAGE="http://emacswiki.org/cgi-bin/wiki.pl?EmacsIRCClient"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
# Never use the sandbox, it causes Emacs to segfault on startup
SANDBOX_DISABLED="1"
RESTRICT="$RESTRICT nostrip"
DEPEND="virtual/emacs"
SITEFILE="50${PN}-gentoo.el"
src_compile() {
make || die
}
src_install() {
elisp_src_install
dodoc AUTHORS CREDITS HISTORY ChangeLog servers.pl README
}
|