blob: cacf8ac5226553686f8328fa41301ac8e2fc3af8 (
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
|
# Copyright 1999-2006 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.8 2006/05/13 04:36:02 dragonheart Exp $
ECVS_SERVER="erc.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=""
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
}
|