blob: b42324ad1c1a5486401d94e12c3c4133bb1f1d37 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xv/xv-3.10a-r2.ebuild,v 1.3 2002/07/11 06:30:38 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="An interactive image manipulation program for X which can
deal with a wide variety of image formats"
SRC_URI="ftp://ftp.cis.upenn.edu/pub/xv/${P}.tar.gz
png? http://www.ibiblio.org/gentoo/distfiles/xv-png-patch.tar.bz2"
HOMEPAGE="http://www.trilon.com/xv/index.html"
DEPEND="virtual/x11
png? ( media-libs/jpeg
media-libs/tiff
media-libs/libpng
>=sys-libs/zlib-1.1.4 )"
PATCHDIR=${WORKDIR}/patches
src_unpack() {
unpack ${A}
use png && ( \
cd ${S}
patch -p1 < ${WORKDIR}/${P}-naz-gentoo.patch || die
)
if [ ${ARCH} = "ppc" ]
then
cd ${S}
patch -p1 < ${FILESDIR}/xv-${PV}-ppc.patch || die
fi
}
src_compile() {
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
}
|