forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nvi-1.81.6-r7.ebuild
89 lines (68 loc) · 2.01 KB
/
nvi-1.81.6-r7.ebuild
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
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools db-use flag-o-matic
DESCRIPTION="Vi clone"
HOMEPAGE="https://sites.google.com/a/bostic.com/keithbostic/vi"
SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x64-macos"
IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
>=sys-libs/ncurses-5.6-r2:=
perl? ( dev-lang/perl )
tcl? ( >=dev-lang/tcl-8.5:0= )"
DEPEND="${CDEPEND}
virtual/pkgconfig"
RDEPEND="${CDEPEND}
app-eselect/eselect-vi"
REQUIRED_USE="tcl? ( !unicode )"
PATCHES=(
"${FILESDIR}"/${P}-strlen-macro-renaming.patch
"${FILESDIR}"/${P}-db44.patch
"${FILESDIR}"/${P}-db.patch
"${FILESDIR}"/${P}-perl-as-needed.patch
"${FILESDIR}"/${P}-perl-shortnames.patch
"${FILESDIR}"/${P}-ac_config_header.patch
"${FILESDIR}"/${P}-use_pkgconfig_for_ncurses.patch
"${FILESDIR}"/${P}-printf-types.patch
)
src_prepare() {
default
cd dist || die
chmod +x findconfig || die
mv configure.{in,ac} || die
sed -i -e "s@-ldb@-l$(db_libname)@" configure.ac || die
sed -i -e "s@^install-\(.*\)-local:@install-\1-hook:@" Makefile.am || die
eautoreconf -Im4
}
src_configure() {
local myconf
use perl && myconf="${myconf} --enable-perlinterp"
use unicode && myconf="${myconf} --enable-widechar"
use tcl && myconf="${myconf} --enable-tclinterp"
append-cppflags "-D_PATH_MSGCAT=\"\\\"${EPREFIX%/}/usr/share/vi/catalog/\\\"\""
append-cppflags -I"$(db_includedir)"
# Darwin doesn't have stropts.h, bug #619416
[[ ${CHOST} == *-darwin* ]] && export vi_cv_sys5_pty=no
pushd dist 2>/dev/null || die
econf \
--program-prefix=n \
${myconf}
popd 2>/dev/null || die
}
src_compile() {
emake -C dist
}
src_install() {
emake -C dist DESTDIR="${D}" install
}
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
}