blob: b1b686294aaffe0ced87af7bd39d6f7b825826d8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-1.7_alpha6.ebuild,v 1.9 2004/06/24 22:05:05 agriffis Exp $
DESCRIPTION="tiny emacs clone"
HOMEPAGE="http://zile.sourceforge.net/"
SRC_URI="mirror://sourceforge/zile/${P/_alpha/-a}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
RDEPEND=">=sys-libs/ncurses-5.2"
S="${WORKDIR}/${P/_alpha/-a}"
src_compile() {
econf || die
make || die
}
src_install() {
dodir /usr/share/man
keepdir /var/lib/{exrecover,expreserve}
make INSTALL=/usr/bin/install \
DESTDIR=${D} \
infodir=/usr/share/info\
MANDIR=/usr/share/man \
TERMLIB=termlib \
PRESERVEDIR=${D}/var/lib/expreserve \
RECOVER="-DEXRECOVER=\\\"/var/lib/exrecover\\\" \
-DEXPRESERVE=\\\"/var/lib/expreserve\\\"" \
install || die
dodoc COPYRIGHT CREDITS HISTORY KNOWNBUGS NEWS README* TODO LICENSE
}
|