blob: 637d7b187495a154e228bd274c052e15c4183ad9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xloadimage/xloadimage-4.1-r5.ebuild,v 1.2 2008/01/15 18:37:57 grobian Exp $
inherit alternatives eutils toolchain-funcs
MY_P="${P/-/.}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="utility to view many different types of images under X11"
HOMEPAGE="http://world.std.com/~jimf/xloadimage.html"
SRC_URI="ftp://ftp.x.org/R5contrib/${MY_P}.tar.gz
mirror://gentoo/${P}-gentoo.diff.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="tiff jpeg png"
RDEPEND="x11-libs/libX11
tiff? ( media-libs/tiff )
png? ( media-libs/libpng )
jpeg? ( media-libs/jpeg )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4.0.5"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/${P}-gentoo.diff
epatch "${FILESDIR}"/${P}-zio-shell-meta-char.diff
epatch "${FILESDIR}"/${P}-endif.patch
# Do not define errno extern, but rather include errno.h
# <azarah@gentoo.org> (1 Jan 2003)
epatch "${FILESDIR}"/${P}-include-errno_h.patch
epatch "${FILESDIR}"/xloadimage-gentoo.patch
sed -i "s:OPT_FLAGS=:OPT_FLAGS=$CFLAGS:" Make.conf
sed -i "s:^#include <varargs.h>:#include <stdarg.h>:" "${S}"/rlelib.c
# On FreeBSD systems malloc.h is a false header asking for fixes.
# On MacOSX it would require malloc/malloc.h
# On other systems it's simply unneeded
sed -i -e 's,<malloc.h>,<stdlib.h>,' vicar.c
epatch "${FILESDIR}"/${P}-unaligned-access.patch
chmod +x "${S}"/configure
}
src_compile() {
tc-export CC
econf || die "econf failed."
emake || die "emake failed."
}
src_install() {
dobin xloadimage uufilter
insinto /etc/X11
doins xloadimagerc
newman xloadimage.man xloadimage.1
newman uufilter.man uufilter.1
dodoc README
}
update_alternatives() {
local mansuffix=$(ecompress --suffix)
alternatives_makesym /usr/bin/xview \
/usr/bin/{xloadimage,xli}
alternatives_makesym /usr/bin/xsetbg \
/usr/bin/{xloadimage,xli}
alternatives_makesym /usr/share/man/man1/xview.1${mansuffix} \
/usr/share/man/man1/{xloadimage,xli}.1${mansuffix}
alternatives_makesym /usr/share/man/man1/xsetbg.1${mansuffix} \
/usr/share/man/man1/{xloadimage,xli}.1${mansuffix}
}
pkg_postinst() {
update_alternatives
}
pkg_postrm() {
update_alternatives
}
|