blob: 0196c9ee18029f4d7d6b6108ef215fc37b82b588 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellshoot/gkrellshoot-0.3.2.ebuild,v 1.4 2004/03/26 23:10:05 aliz Exp $
IUSE=""
S=${WORKDIR}/${P/s/S}
DESCRIPTION="A GKrellM plugin to snap screenshots."
SRC_URI="mirror://sourceforge/gkrellshoot/${P}.tar.gz"
HOMEPAGE="http://gkrellshoot.sf.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc "
DEPEND="=app-admin/gkrellm-1.2*
>=media-libs/imlib-1.9.10-r1"
# It uses "import" which comes with imagemagick to snap the screenshots
RDEPEND="media-gfx/imagemagick"
src_compile() {
export CFLAGS="${CFLAGS/-O?/}"
emake || die
}
src_install () {
insinto /usr/lib/gkrellm/plugins
doins gkrellshoot.so
dodoc ChangeLog README
}
|