blob: e99f4860980a9e91ea05f181565d0eaa4a28f30d (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.2 2009/10/08 19:54:16 truedfx Exp $
inherit autotools db-use eutils flag-o-matic
DBVERS="4.7 4.6 4.5 4.4 4.3 4.2"
DESCRIPTION="Vi clone"
HOMEPAGE="http://www.bostic.com/vi/"
SRC_URI="http://www.kotnet.org/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="Sleepycat"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="perl tcl unicode"
DEPEND="|| ( $(printf "=sys-libs/db-%s*\n" ${DBVERS}) )
perl? ( dev-lang/perl )
tcl? ( !unicode? ( >=dev-lang/tcl-8.5 ) )"
RDEPEND="${DEPEND}
app-admin/eselect-vi"
S=${WORKDIR}/${P}/build.unix
pkg_setup() {
if use tcl && use unicode
then
ewarn "nvi does not support tcl+unicode. tcl support will not be included."
ewarn "If you need tcl support, please disable the unicode flag."
fi
}
src_unpack() {
unpack ${A}
cd "${S}" || die
epatch "${FILESDIR}"/${P}-db44.patch
epatch "${FILESDIR}"/${P}-db.patch
epatch "${FILESDIR}"/${P}-perl-as-needed.patch
cd ../dist || die
chmod +x findconfig || die
append-flags -I"$(db_includedir ${DBVERS})"
sed -i -e "s@-ldb@-l$(db_libname ${DBVERS})@" configure.in || die
rm -f configure || die
eautoreconf -Im4
}
src_compile() {
local myconf
use perl && myconf="${myconf} --enable-perlinterp"
use tcl && ! use unicode && myconf="${myconf} --enable-tclinterp"
use unicode && myconf="${myconf} --enable-widechar"
append-flags '-D_PATH_MSGCAT="\"/usr/share/vi/catalog/\""'
ECONF_SOURCE=../dist econf \
--program-prefix=n \
${myconf} \
|| die "configure failed"
emake OPTFLAG="${CFLAGS}" || die "make failed"
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "install failed"
}
pkg_postinst() {
einfo "Setting /usr/bin/vi symlink"
eselect vi update --if-unset
}
pkg_postrm() {
einfo "Updating /usr/bin/vi symlink"
eselect vi update --if-unset
}
|