blob: 3de3663dda7baef6f305751fde025db63df4e8c2 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/media-gfx/qiv/qiv-1.6.ebuild,v 1.3 2001/06/22 22:28:20 thread Exp $
#P=
S=${WORKDIR}/${P}
DESCRIPTION="Quick Image Viewer"
SRC_URI="http://www.klografx.net/qiv/download/${P}-src.tgz"
HOMEPAGE="http://www.klograft.net/qiv"
DEPEND="virtual/glibc sys-devel/gcc
>=media-libs/tiff-3.5.5
>=media-libs/libpng-1.0.7
virtual/x11"
src_compile() {
try make
}
src_install () {
dodir /usr/bin
dodir /usr/man/man1
try make PREFIX=${D}usr install
}
|