blob: a5170be1270cb84d701300302760d09b8b2effce (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xv/xv-3.10a-r8.ebuild,v 1.6 2005/02/26 21:47:21 j4rg0n Exp $
inherit ccc flag-o-matic eutils
DESCRIPTION="An interactive image manipulation program for X which can deal with a wide variety of image formats"
HOMEPAGE="http://www.trilon.com/xv/index.html"
SRC_URI="ftp://ftp.cis.upenn.edu/pub/xv/${P}.tar.gz
mirror://gentoo/${P}-gentoo.tar.gz"
LICENSE="xv"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha mips hppa ia64 amd64 ppc64 ppc-macos"
IUSE="jpeg tiff png"
DEPEND="virtual/x11
jpeg? ( >=media-libs/jpeg-6b )
tiff? ( >=media-libs/tiff-3.6.1-r2 )
png? ( >=media-libs/libpng-1.2 >=sys-libs/zlib-1.1.4 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ../${P}-enhanced-Nu.patch || die
epatch ../${P}-gentoo-Nu.patch || die
use ppc && epatch ${FILESDIR}/${P}-ppc.patch
# This patch is needed to get xv to stop segfaulting on amd64
use amd64 && epatch ${FILESDIR}/xv-use-getcwd.patch
# fix security issues #61619
epatch ${FILESDIR}/${P}-security.diff || die
if use ppc-macos; then
epatch ${FILESDIR}/${P}-xv-osx.patch
epatch ${FILESDIR}/${P}-vdcomp-osx.patch
epatch ${FILESDIR}/${P}-makefile-osx.patch
fi
}
src_compile() {
if use jpeg; then
append-flags -DDOJPEG
else
sed -i -e "s:JPEGLIB = -ljpeg:JPEGLIB =:" Makefile || die "sed jpeg failed"
fi
if use png; then
append-flags -DDOPNG
else
sed -i -e "s:PNGLIB = -lpng:PNGLIB =:" Makefile || die "sed png failed"
sed -i -e "s:ZLIBLIB = -lz:ZLIBLIB =:" Makefile || die "sed zlib failed"
fi
if use tiff; then
append-flags -DDOTIFF
else
sed -i -e "s:TIFFLIB = -ltiff:TIFFLIB =:" Makefile || die "sed tiff failed"
fi
sed -i 's:CCOPTS = -O:CCOPTS = $(E_CFLAGS):' Makefile || die "sed Makefile failed"
sed -i 's:COPTS=\t-O:COPTS= $(E_CFLAGS):' tiff/Makefile || die "sed tiff/Makefile failed"
is-ccc && replace-cc-hardcode
echo make E_CFLAGS="${CFLAGS}" > go.sh
make E_CFLAGS="${CFLAGS}" || die
}
src_install() {
dodir /usr/bin
dodir /usr/share/man/man1
# LIBDIR is where xv installs xvdocs.ps and we dodoc it below
make \
DESTDIR=${D} \
BINDIR=${D}/usr/bin \
MANDIR=${D}/usr/share/man/man1 \
LIBDIR=/dev/null \
install || die
dodoc README INSTALL CHANGELOG BUGS IDEAS docs/*.ps docs/*.doc
}
|