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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ncurses-5.7.ebuild,v 1.5 2009/04/29 22:17:49 ssuominen Exp $
inherit eutils flag-o-matic toolchain-funcs
MY_PV=${PV:0:3}
PV_SNAP=${PV:4}
MY_P=${PN}-${MY_PV}
DESCRIPTION="console display library"
HOMEPAGE="http://www.gnu.org/software/ncurses/ http://dickey.his.com/ncurses/"
SRC_URI="mirror://gnu/ncurses/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="5"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="ada debug doc gpm minimal nocxx profile trace unicode"
DEPEND="gpm? ( sys-libs/gpm )"
# berkdb? ( sys-libs/db )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
[[ -n ${PV_SNAP} ]] && epatch "${WORKDIR}"/${MY_P}-${PV_SNAP}-patch.sh
epatch "${FILESDIR}"/${PN}-5.6-gfbsd.patch
}
src_compile() {
tc-export BUILD_CC
# Protect the user from themselves #115036
unset TERMINFO
local myconf=""
use nocxx && myconf="${myconf} --without-cxx --without-cxx-binding"
use ada || myconf="${myconf} --without-ada"
# First we build the regular ncurses ...
mkdir "${WORKDIR}"/narrowc
cd "${WORKDIR}"/narrowc
do_compile ${myconf}
# Then we build the UTF-8 version
if use unicode ; then
mkdir "${WORKDIR}"/widec
cd "${WORKDIR}"/widec
do_compile ${myconf} --enable-widec --includedir=/usr/include/ncursesw
fi
}
do_compile() {
ECONF_SOURCE=${S}
# The chtype/mmask-t settings below are to retain ABI compat
# with ncurses-5.4 so dont change em !
local conf_abi="
--with-chtype=long \
--with-mmask-t=long \
--disable-ext-colors \
--disable-ext-mouse \
--without-pthread \
--without-reentrant \
"
# We need the basic terminfo files in /etc, bug #37026. We will
# add '--with-terminfo-dirs' and then populate /etc/terminfo in
# src_install() ...
# $(use_with berkdb hashed-db)
econf \
--libdir="/$(get_libdir)" \
--with-terminfo-dirs="/etc/terminfo:/usr/share/terminfo" \
--with-shared \
--without-hashed-db \
$(use_with debug) \
$(use_with profile) \
$(use_with gpm) \
--disable-termcap \
--enable-symlinks \
--with-rcs-ids \
--with-manpage-format=normal \
--enable-const \
--enable-colorfgbg \
--enable-echo \
$(use_enable !ada warnings) \
$(use_with debug assertions) \
$(use_with !debug leaks) \
$(use_with debug expanded) \
$(use_with !debug macros) \
$(use_with trace) \
${conf_abi} \
"$@" \
|| die "configure failed"
# A little hack to fix parallel builds ... they break when
# generating sources so if we generate the sources first (in
# non-parallel), we can then build the rest of the package
# in parallel. This is not really a perf hit since the source
# generation is quite small. -vapier
emake -j1 sources || die "make sources failed"
emake || die "make failed"
}
src_install() {
# install unicode version second so that the binaries in /usr/bin
# support both wide and narrow
cd "${WORKDIR}"/narrowc
emake DESTDIR="${D}" install || die "make narrowc install failed"
if use unicode ; then
cd "${WORKDIR}"/widec
emake DESTDIR="${D}" install || die "make widec install failed"
fi
# Move static and extraneous ncurses libraries out of /lib
dodir /usr/$(get_libdir)
cd "${D}"/$(get_libdir)
mv lib{form,menu,panel}.so* *.a "${D}"/usr/$(get_libdir)/
gen_usr_ldscript lib{,n}curses.so
if use unicode ; then
mv lib{form,menu,panel}w.so* "${D}"/usr/$(get_libdir)/
gen_usr_ldscript libncursesw.so
fi
# if ! use berkdb ; then
# We need the basic terminfo files in /etc, bug #37026
einfo "Installing basic terminfo files in /etc..."
for x in ansi console dumb linux rxvt screen sun vt{52,100,102,200,220} \
xterm xterm-color xterm-xfree86
do
local termfile=$(find "${D}"/usr/share/terminfo/ -name "${x}" 2>/dev/null)
local basedir=$(basename $(dirname "${termfile}"))
if [[ -n ${termfile} ]] ; then
dodir /etc/terminfo/${basedir}
mv ${termfile} "${D}"/etc/terminfo/${basedir}/
dosym ../../../../etc/terminfo/${basedir}/${x} \
/usr/share/terminfo/${basedir}/${x}
fi
done
# Build fails to create this ...
dosym ../share/terminfo /usr/$(get_libdir)/terminfo
# fi
echo "CONFIG_PROTECT_MASK=\"/etc/terminfo\"" > "${T}"/50ncurses
doenvd "${T}"/50ncurses
use minimal && rm -r "${D}"/usr/share/terminfo*
# Because ncurses5-config --terminfo returns the directory we keep it
keepdir /usr/share/terminfo #245374
cd "${S}"
dodoc ANNOUNCE MANIFEST NEWS README* TO-DO doc/*.doc
use doc && dohtml -r doc/html/
}
|