blob: bf43a577ec064afcc620719857b61bd25e913b14 (
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
55
56
57
58
59
60
61
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.79.ebuild,v 1.2 2006/07/23 12:04:12 truedfx Exp $
inherit eutils
DESCRIPTION="Vi clone"
HOMEPAGE="http://www.bostic.com/vi/"
SRC_URI="ftp://ftp.sleepycat.com/pub/${P}.tar.gz
mirror://debian/pool/main/n/${PN}/${P/-/_}-24.diff.gz"
LICENSE="Sleepycat"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~hppa ~amd64 ~ppc64"
IUSE=""
DEPEND=""
RDEPEND="!app-editors/vim
!app-editors/gvim"
PROVIDE="virtual/editor"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${DISTDIR}"/${P/-/_}-24.diff.gz
epatch "${FILESDIR}"/${P}-build.patch
# Fix bug 23888
epatch "${FILESDIR}"/${PN}-1.81.5-tcsetattr.patch
}
src_compile() {
cd build
econf --program-prefix=n \
--disable-curses \
--disable-re \
|| die "configure failed"
emake || die "make failed"
}
src_install() {
cd build
einstall || die "install failed"
}
pkg_postinst() {
[[ ! -e "${ROOT}"/usr/bin/vi ]] &&
ln -sf nvi "${ROOT}"/usr/bin/vi
[[ ! -e "${ROOT}"/usr/bin/ex ]] &&
ln -sf nvi "${ROOT}"/usr/bin/ex
[[ ! -e "${ROOT}"/usr/bin/view ]] &&
ln -sf nvi "${ROOT}"/usr/bin/view
}
pkg_postrm() {
[[ -L "${ROOT}"/usr/bin/vi && ! -f "${ROOT}"/usr/bin/vi ]] &&
rm -f "${ROOT}"/usr/bin/vi
[[ -L "${ROOT}"/usr/bin/ex && ! -f "${ROOT}"/usr/bin/ex ]] &&
rm -f "${ROOT}"/usr/bin/ex
[[ -L "${ROOT}"/usr/bin/view && ! -f "${ROOT}"/usr/bin/view ]] &&
rm -f "${ROOT}"/usr/bin/view
}
|