blob: 0cd732b442b26147c89d11cd4b653ce814af35b0 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils flag-o-matic multilib toolchain-funcs
DESCRIPTION="the Utah Raster Toolkit is a library for dealing with raster images"
HOMEPAGE="http://www.cs.utah.edu/gdc/projects/urt/"
SRC_URI="ftp://ftp.iastate.edu/pub/utah-raster/${P}.tar.Z"
LICENSE="URT gif? ( free-noncomm )"
SLOT="0/3.1b-r2"
KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="gif postscript static-libs tiff tools X"
RDEPEND="
X? ( x11-libs/libXext )
gif? ( media-libs/giflib )
postscript? ( app-text/ghostscript-gpl )
tiff? ( media-libs/tiff:= )
"
DEPEND="
${RDEPEND}
X? ( x11-base/xorg-proto )
"
S=${WORKDIR}
urt_config() {
use $1 && echo "#define $2" || echo "##define $2"
}
PATCHES=(
"${FILESDIR}"/${P}-rle-fixes.patch
"${FILESDIR}"/${P}-compile-updates.patch
"${FILESDIR}"/${P}-tempfile.patch
"${FILESDIR}"/${P}-r2-build-fixes.patch
"${FILESDIR}"/${P}-make.patch
"${FILESDIR}"/${P}-solaris.patch
"${FILESDIR}"/${P}-librle-toolchain.patch
"${FILESDIR}"/${P}-implicit-function-declarations.patch
)
src_prepare() {
rm -f bin/README
default
# punt bogus manpage #109511
rm -f man/man1/template.1
# stupid OS X declares a stack_t type already #107428
sed -i -e 's:stack_t:_urt_stack:g' tools/clock/rleClock.c || die
}
src_configure() {
append-cflags -fPIC
sed -i -e '/^CFLAGS/s: -O : :' makefile.hdr
cp "${FILESDIR}"/gentoo-config config/gentoo
cat >> config/gentoo <<-EOF
$(urt_config X X11)
$(urt_config postscript POSTSCRIPT)
$(urt_config tiff TIFF)
ExtraCFLAGS = ${CFLAGS}
MFLAGS = ${MAKEOPTS}
# prevent circular depend #111455
$(has_version media-libs/giflib && urt_config gif GIF)
EOF
./Configure config/gentoo || die "config"
}
src_compile() {
tc-export AR RANLIB
emake CC=$(tc-getCC) -C lib buildlibso
emake CC=$(tc-getCC)
}
src_install() {
mkdir -p man-dest/man{1,3,5}
# this just installs it into some local dirs
make install || die
use tools && dobin bin/*
use static-libs && dolib.a lib/librle.a
dolib.so lib/librle.so
dosym librle.so /usr/$(get_libdir)/librle-0.0.0.so
insinto /usr/include
doins include/rle*.h
doman man-dest/man?/*.[135]
dodoc *-changes CHANGES* README blurb
}
|