blob: ab06ae3419051914e27213205964807674ed6ffc (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbi/fbi-1.21.ebuild,v 1.6 2002/10/20 18:48:56 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="fbi a framebuffer image viewer"
SRC_URI="http://www.strusel007.de/linux/misc/${P/-/_}.tar.gz"
HOMEPAGE="http://www.strusel007.de/linux/fbi.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND=">=media-libs/jpeg-6b"
src_compile() {
export CFLAGS="${CFLAGS}"
make CC=gcc || die
}
src_install() {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man/man1 \
install || die
dodoc COPYING README
}
|