blob: 0e86b1a011996e921325a08c0d454741c28605dc (
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
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools eutils flag-o-matic multilib toolchain-funcs
DESCRIPTION="Extension to Tk, adding new widgets, geometry managers, and misc commands"
HOMEPAGE="https://sourceforge.net/projects/wize/"
SRC_URI="mirror://sourceforge/wize/${PN}-src-${PV}.zip
https://dev.gentoo.org/~tupone/distfiles/${P}-debian-patches.tar.gz"
IUSE="jpeg static-libs X"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
DEPEND="
dev-lang/tk:0=
jpeg? ( virtual/jpeg:0= )
X? ( x11-libs/libX11 )"
RDEPEND="${DEPEND}"
BDEPEND="app-arch/unzip"
S="${WORKDIR}"/${PN}2.5
MAKEOPTS+=" -j1"
PATCHES=(
"${WORKDIR}"/patches/02-debian-all.patch
"${WORKDIR}"/patches/03-fedora-patch-2.patch
"${WORKDIR}"/patches/04-fedora-tk8.5.6.patch
"${WORKDIR}"/patches/05-tk8.5-zoomstack.patch
"${WORKDIR}"/patches/doc-typos.patch
"${WORKDIR}"/patches/tcl8.6.patch
"${WORKDIR}"/patches/tk8.6.patch
"${WORKDIR}"/patches/install.patch
"${WORKDIR}"/patches/usetclint.patch
"${WORKDIR}"/patches/usetkint.patch
"${WORKDIR}"/patches/table.patch
"${WORKDIR}"/patches/ldflags.patch
"${WORKDIR}"/patches/pkgindex.patch
"${WORKDIR}"/patches/decls.patch
"${WORKDIR}"/patches/bltnsutil.patch
"${WORKDIR}"/patches/blthash.patch
"${WORKDIR}"/patches/const.patch
"${WORKDIR}"/patches/uninitialized.patch
"${WORKDIR}"/patches/unused.patch
"${WORKDIR}"/patches/pointertoint.patch
"${WORKDIR}"/patches/autoreconf.patch
"${WORKDIR}"/patches/switch.patch
"${FILESDIR}"/${P}-gentoo.patch
"${FILESDIR}"/${P}-darwin.patch
"${FILESDIR}"/${P}-gbsd.patch
)
src_prepare() {
default
rm acconfig.h || die
# Set the correct libdir and drop RPATH
sed \
-e "s:\(^libdir=\${exec_prefix}/\)lib:\1$(get_libdir):" \
-e 's:LD_RUN_PATH=.*$:LD_RUN_PATH="":g' \
-i configure.in || die "sed configure* failed"
sed \
-e "/^scriptdir =/s:lib:$(get_libdir):" \
-i Makefile.in demos/Makefile.in || die "sed Makefile.in failed"
sed \
-e "/AR/s:ar:$(tc-getAR):g" \
-e 's:0444:0644:g' \
-i generic/Makefile.in || die
append-cflags -fPIC
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
LC_ALL=C \
econf \
--x-includes="${EPREFIX}/usr/include" \
--x-libraries="${EPREFIX}/usr/$(get_libdir)" \
--with-blt="${EPREFIX}/usr/$(get_libdir)" \
--with-tcl="${EPREFIX}/usr/$(get_libdir)" \
--with-tk="${EPREFIX}/usr/$(get_libdir)" \
--with-tclincls="${EPREFIX}/usr/include" \
--with-tkincls="${EPREFIX}/usr/include" \
--with-tcllibs="${EPREFIX}/usr/$(get_libdir)" \
--with-tklibs="${EPREFIX}/usr/$(get_libdir)" \
--with-cflags="${CFLAGS}" \
--with-gnu-ld \
$(use_enable jpeg) \
$(use_with X x) \
CC="$(tc-getCC)"
}
src_compile() {
emake LDFLAGS="${LDFLAGS}"
}
src_install() {
sed \
-e "s:\.\./src/bltwish:${EPREFIX}/usr/bin/bltwish:g" \
-e "s:\.\./bltwish:${EPREFIX}/usr/bin/bltwish:g" \
-e "s:/usr/local/bin/bltwish:${EPREFIX}/usr/bin/bltwish:g" \
-e "s:/usr/local/bin/tclsh:${EPREFIX}/usr/bin/tclsh:g" \
-i demos/{,scripts/}*.tcl || die
dodir \
/usr/bin \
/usr/$(get_libdir)/blt2.4/demos/bitmaps \
/usr/share/man/mann \
/usr/include
emake INSTALL_ROOT="${D}" install
dodoc NEWS PROBLEMS README
docinto html
dodoc html/*.html
for f in `ls "${ED}"/usr/share/man/mann` ; do
mv "${ED}"/usr/share/man/mann/${f} "${ED}"/usr/share/man/mann/${f/.n/.nblt} || die
done
# fix for linking against shared lib with -lBLT or -lBLTlite
dosym libBLT24$(get_libname) /usr/$(get_libdir)/libBLT$(get_libname)
dosym libBLTlite24$(get_libname) /usr/$(get_libdir)/libBLTlite$(get_libname)
use static-libs || \
find "${ED}"/usr/$(get_libdir) -name "*.a" -print0 | \
xargs -r -0 rm -fv
}
|