blob: c759a1786e7c559b67080b70ffb72d33e4a2c6ed (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.1 2004/03/13 21:45:55 usata 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="~x86"
DEPEND="virtual/emacs
media-gfx/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
mv gnuplot.info gnuplot-mode.info
doinfo gnuplot-mode.info
dodoc ChangeLog README
}
pkg_postinst() {
elisp-site-regen
einfo "Please see ${SITELISP}/${PN}/${PN}.el for the complete documentation."
}
pkg_postrm() {
elisp-site-regen
}
|