blob: 4cbbeea9403bb810e7f3efe0687738fb7b684f97 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PV=$(ver_rs 3 -)
DESCRIPTION="Text User Interface that implements the well known CUA widgets"
HOMEPAGE="http://tvision.sourceforge.net/"
SRC_URI="mirror://sourceforge/tvision/rhtvision_${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+X debug gpm"
DOCS=( readme.txt THANKS TODO )
HTML_DOCS=( www-site/. )
S=${WORKDIR}/${PN}
# installed lib links to those
RDEPEND="
dev-libs/libbsd
sys-apps/util-linux
sys-libs/ncurses:0=
gpm? ( sys-libs/gpm )
X? (
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libXext
x11-libs/libXmu
x11-libs/libXt
x11-libs/libxcb:=
)"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-fix-dot-INC.patch"
"${FILESDIR}/${P}-ldconfig.patch"
"${FILESDIR}/${P}-build-system.patch"
"${FILESDIR}/${P}-gcc6.patch"
"${FILESDIR}/${P}-flags.patch"
"${FILESDIR}/${P}-fix-overloaded-abs.patch"
)
src_configure() {
# Note: Do not use econf here, this isn't an autoconf configure script,
# but a perl based script which simply calls config.pl
./configure --fhs \
$(use_with debug debug) \
--without-static \
|| die
}
src_install() {
emake DESTDIR="${D}" install \
prefix="\${DESTDIR}/${EPREFIX}/usr" \
libdir="\$(prefix)/$(get_libdir)"
einstalldocs
dosym rhtvision /usr/include/tvision
# remove CVS directory which gets copied over
rm -r "${ED}/usr/share/doc/${P}/html/CVS" || die
}
|