blob: 8eb6eb9f1b88f900d17ffc3c89bb9cd8d7f320f4 (
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
77
78
79
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
MY_P="Tix${PV}"
DESCRIPTION="A widget library for Tcl/Tk"
HOMEPAGE="http://tix.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/tix/${MY_P}-src.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
RESTRICT="test"
DEPEND="
dev-lang/tk:=
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}"/${P}-tcl8.5.patch
"${FILESDIR}"/${P}-tcl8.6.patch
"${FILESDIR}"/${P}-wimplicit-int.patch
"${FILESDIR}"/${P}-clang6.patch
"${FILESDIR}"/${P}-noopt.patch
)
QA_CONFIG_IMPL_DECL_SKIP=(
stat64 # used to test for Large File Support
)
src_prepare() {
[[ ${CHOST} == *-darwin* ]] || eapply "${FILESDIR}"/${P}-link.patch
sed \
-e 's:-Os::g' \
-i configure tclconfig/tcl.m4 || die
default
eautoreconf
}
src_configure() {
econf \
--with-tcl="${EPREFIX}/usr/$(get_libdir)" \
--with-tk="${EPREFIX}/usr/$(get_libdir)"
}
src_install() {
DOCS=( ChangeLog README.txt docs/*.txt )
HTML_DOCS=(
index.html
ABOUT.html
docs/*.html
docs/html
docs/img
docs/tix-book
)
default
# Bug #168897
doheader generic/tix.h
# Bug #201138
if [[ ${CHOST} == *-darwin* ]] ; then
mv "${ED}"/usr/$(get_libdir)/${MY_P}/libTix{,.}${PV}.dylib || die
dosym ${MY_P}/libTix.${PV}.dylib /usr/$(get_libdir)/libTix.${PV}.dylib
else
dosym ${MY_P}/lib${MY_P}.so /usr/$(get_libdir)/lib${MY_P}.so
fi
}
|