blob: 8375f5f87958e3839da9a07828fc369dcb6462f9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/circe/circe-0_pre20070805.ebuild,v 1.1 2007/11/07 09:31:27 ulm Exp $
inherit elisp
DESCRIPTION="A great IRC client for Emacs"
HOMEPAGE="http://www.nongnu.org/circe/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2 FDL-1.2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
S="${WORKDIR}/${PN}"
SITEFILE="50${PN}-gentoo.el"
DOCS="FAQ README"
src_compile() {
emake compile circe.info || die "emake failed"
}
src_install() {
elisp_src_install
doinfo circe.info*
}
|