blob: d5d41b5dfda6223b1d0c5e80fb9071dafff8405b (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-emacs/erc/erc-3.0.ebuild,v 1.1 2002/11/20 06:23:12 mkennedy Exp $
inherit elisp
IUSE=""
DESCRIPTION="ERC - The Emacs IRC Client"
SRC_URI="mirror://sourceforge/erc/${P}.tar.gz"
HOMEPAGE="http://emacswiki.org/cgi-bin/wiki.pl?EmacsIRCClient"
DEPEND="virtual/emacs"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
S=${WORKDIR}/${P}
src_install() {
elisp-install ${PN} *.el
elisp-site-file-install ${FILESDIR}/50erc-gentoo.el
dodoc AUTHORS CREDITS HISTORY ChangeLog servers.pl README
}
pkg_postinst() {
elisp-site-regen
}
pkg_postrm() {
elisp-site-regen
}
|