blob: b97b2f7ad02941b81f0cde76cbd59c8b4f627d82 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/liece/liece-1.4.7-r1.ebuild,v 1.5 2004/06/24 22:16:45 agriffis Exp $
inherit elisp eutils
IUSE=""
DESCRIPTION="Liece is a client implementation of IRC (Internet Relay Chat, RFC 1459)."
HOMEPAGE="http://www.unixuser.org/~ueno/liece/"
SRC_URI="http://www.unixuser.org/~ueno/liece/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/emacs
app-emacs/apel"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_compile() {
./configure --host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--with-lispdir=${SITELISP} \
--mandir=/usr/share/man || die "./configure failed"
emake || die
}
src_install () {
make PREFIX=${D}/usr prefix=${D}/usr \
infodir=${D}/usr/share/info \
lispdir=${D}/${SITELISP} install || die
elisp-site-file-install ${FILESDIR}/60liece-gentoo.el
}
pkg_postinst() {
elisp-site-regen
}
pkg_postrm() {
elisp-site-regen
}
|