blob: 50ad115027a0649b16e8668cbb1a4733e06d0be0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnuplot-mode/gnuplot-mode-0.6.0.ebuild,v 1.7 2006/01/29 19:44:03 cryos Exp $
inherit elisp
IUSE=""
MY_P=${PN}.${PV}
DESCRIPTION="Gnuplot mode for Emacs"
HOMEPAGE="http://feff.phys.washington.edu/~ravel/gnuplot/"
SRC_URI="http://feff.phys.washington.edu/~ravel/gnuplot/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
DEPEND="virtual/emacs
sci-visualization/gnuplot"
S="${WORKDIR}/${MY_P}"
SITEFILE=50gnuplot-gentoo.el
src_compile() {
econf || die
emake || die
}
src_install() {
PATH=./:$PATH make install lispdir=$D/usr/share/emacs/site-lisp/${PN} || die
elisp-site-file-install ${FILESDIR}/${SITEFILE} || die
dodoc ChangeLog README
}
pkg_postinst() {
elisp-site-regen
einfo "Please see ${SITELISP}/${PN}/${PN}.el for the complete documentation."
}
pkg_postrm() {
elisp-site-regen
}
|