blob: f3500fba2629438e3765b3f87f6b72142b8b2872 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xv/xv-3.10a-r3.ebuild,v 1.9 2003/09/12 02:41:54 vapier Exp $
inherit ccc 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
png? http://www.ibiblio.org/gentoo/distfiles/xv-png-patch.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha"
IUSE="png"
DEPEND="virtual/x11
png? ( media-libs/jpeg
media-libs/tiff
media-libs/libpng
>=sys-libs/zlib-1.1.4 )"
src_unpack() {
unpack ${A}
cd ${S}
[ `use png` ] && epatch ${WORKDIR}/${P}-naz-gentoo.patch
[ `use ppc` ] && [ -z `use png` ] && epatch ${FILESDIR}/xv-${PV}-ppc.patch
}
src_compile() {
sed -i "s:CCOPTS = -O:CCOPTS = ${CFLAGS}:" Makefile
sed -i "s:COPTS=\t-O:COPTS= ${CFLAGS}:" tiff/Makefile
is-ccc && replace-cc-hardcode
make || die
}
src_install() {
dodir /usr/bin
dodir /usr/share/man/man1
make \
DESTDIR=${D} \
BINDIR=${D}/usr/bin \
MANDIR=${D}/usr/share/man/man1 \
LIBDIR=${D}/usr/lib \
install || die
dodoc README INSTALL CHANGELOG BUGS IDEAS docs/*.ps docs/*.doc
}
|