blob: fc3fa77c148f373afb23c1807a3d9828a531fc60 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Thread <thread@threadbox.net>
# $Header: /var/cvsroot/gentoo-x86/media-gfx/qiv/qiv-1.7-r2.ebuild,v 1.1 2001/12/06 22:37:47 jerrya Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Quick Image Viewer"
SRC_URI="http://www.klografx.net/qiv/download/${P}-src.tgz"
HOMEPAGE="http://www.klografx.net/qiv"
DEPEND="virtual/glibc
>=media-libs/tiff-3.5.5
>=media-libs/libpng-1.0.7
>=media-libs/imlib-1.9.10
virtual/x11"
src_compile() {
make || die
}
src_install () {
into /usr
dobin qiv
doman qiv.1
dodoc README*
}
|