blob: f6119a727280abb303cd18001e90e6a378bbdafd (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbi/fbi-1.31.ebuild,v 1.5 2004/04/13 10:07:26 spock Exp $
inherit gcc
DESCRIPTION="fbi a framebuffer image viewer"
HOMEPAGE="http://bytesex.org/fbi.html"
SRC_URI="http://bytesex.org/misc/${P/-/_}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="png jpeg gif tiff curl lirc X"
DEPEND="jpeg? ( >=media-libs/jpeg-6b )
png? ( media-libs/libpng )
gif? ( media-libs/libungif )
tiff? ( media-libs/tiff )
curl? ( net-misc/curl )
lirc? ( app-misc/lirc )
X? ( virtual/x11 )"
src_compile() {
export CFLAGS="${CFLAGS}"
make CC="$(gcc-getCC)" || die
}
src_install() {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
install || die
dodoc README
}
|