blob: 5b7c093a942855b8312fd83dfe4d670e652b0c9a (
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 Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbgrab/fbgrab-1.0.ebuild,v 1.5 2004/06/24 22:36:26 agriffis Exp $
IUSE=""
DESCRIPTION="Framebuffer screenshot utility"
HOMEPAGE="http://hem.bredband.net/gmogmo/fbgrab/"
SRC_URI="http://hem.bredband.net/gmogmo/fbgrab/${PN}-1.0.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~hppa"
DEPEND="media-libs/libpng
>=sys-apps/sed-4"
S=${WORKDIR}/${PN}-1.0
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "s:splint:#splint:" \
-e "s:-Wall:-Wall ${CFLAGS}:" \
Makefile
}
src_compile() {
emake || die
}
src_install() {
dobin fbgrab || die
newman fbgrab.1.man fbgrab.1
}
|