blob: 1b25010cff7455f09aaf5a9e6a7983c3f97e9cf8 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools edos2unix prefix toolchain-funcs virtualx
MYP=Img-${PV}
DESCRIPTION="Adds a lot of image formats to Tcl/Tk"
HOMEPAGE="http://tkimg.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}/$(ver_cut 1-2)/${PN}%20${PV}/${MYP}-Source.tar.gz
https://dev.gentoo.org/~tupone/distfiles/${PN}-1.4.14-patchset-1.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test static-libs"
RDEPEND="
dev-lang/tk:=
dev-tcltk/tcllib
media-libs/tiff:=
media-libs/libpng:0=
sys-libs/zlib:=
x11-libs/libX11
media-libs/libjpeg-turbo:="
DEPEND="${RDEPEND}
test? (
x11-apps/xhost
media-fonts/font-misc-misc
media-fonts/font-cursor-misc )"
RESTRICT="!test? ( test )"
S="${WORKDIR}/${MYP}"
PATCHES=(
"${WORKDIR}"/patchset-1
"${FILESDIR}"/${PN}-1.4.15-gcc11.patch
)
QA_CONFIG_IMPL_DECL_SKIP=(
opendir64 rewinddir64 closedir64 stat64 # used on AIX
glBegin # used to test for openGL support
glutMainLoop # used to test for glut support
)
src_prepare() {
edos2unix \
libjpeg/jpegtclDecls.h \
zlib/zlibtclDecls.h \
libpng/pngtclDecls.h \
tiff/tiffZip.c \
tiff/tiffPixar.c \
libtiff/tifftclDecls.h
# libtiff/jpeg unbundle is problematic
rm ../patchset-1/tkimg-1.4.12-tiff.patch || die
rm ../patchset-1/tkimg-1.4.10-jpeg.patch || die
default
echo "unknown" > manifest.uuid || die
find compat/libtiff/config -name ltmain.sh -delete || die
sed -i \
-e 's:"--with-CC=$TIFFCC"::' \
libtiff/configure.ac || die
eautoreconf
for dir in zlib libpng libtiff libjpeg base bmp gif ico jpeg pcx pixmap png\
ppm ps sgi sun tga tiff window xbm xpm dted raw flir compat/libtiff ; do
(cd ${dir}; AT_NOELIBTOOLIZE=yes eautoreconf)
done
eprefixify */*.h
tc-export AR
}
src_configure() {
default
sed -i \
-e "/PACKAGE_/d" \
libtiff/libtiff/tif_config.h \
|| die
}
src_test() {
virtx default
}
src_install() {
local l bl
emake \
DESTDIR="${D}" \
INSTALL_ROOT="${D}" \
install
if ! use static-libs; then
find "${ED}"/usr/$(get_libdir)/ -type f -name "*\.a" -delete || die
fi
# Make library links
for l in "${ED}"/usr/lib*/Img*/*tcl*.so; do
bl=$(basename ${l})
dosym Img${PV}/${bl} /usr/$(get_libdir)/${bl}
done
dodoc ChangeLog README Reorganization.Notes.txt changes ANNOUNCE
if use doc; then
docompress -x usr/share/doc/${PF}/demo.tcl
dodoc demo.tcl
docinto html
dodoc -r doc/*
fi
}
|