blob: 7ee6c03ea99c58d7fb0d97143e727be9d26de4a1 (
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
49
50
51
52
53
54
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/prime-el/prime-el-1.3.1.ebuild,v 1.3 2004/06/24 22:20:23 agriffis Exp $
inherit elisp
IUSE=""
DESCRIPTION="PRIME Client for Emacs"
HOMEPAGE="http://taiyaki.org/prime/"
SRC_URI="http://prime.sourceforge.jp/src/${P/_/-}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
S="${WORKDIR}/${P/_/-}"
DEPEND="app-emacs/apel
app-emacs/mell
dev-libs/suikyo"
RDEPEND="${DEPEND}
app-i18n/prime"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "s: debian/emacsen-startup::" configure.ac
}
src_compile() {
autoconf || die
econf --with-prime-initdir=/usr/share/emacs/site-lisp \
--with-prime-docdir=usr/share/doc/${PF} \
|| die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
make DESTDIR=${D} install-etc || die
elisp-site-file-install ${FILESDIR}/50prime-el-gentoo.el
dodoc [A-Z][A-Z]* ChangeLog
mv ${D}/usr/share/doc/${PF}/{emacs,html}
}
|