blob: 2cf9ea6f3b290dcb4f348984b106c392482db7c4 (
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
36
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/vncrec/vncrec-0.2.ebuild,v 1.5 2006/03/19 22:18:04 joshuabaergen Exp $
DESCRIPTION="VNC session recorder and player"
HOMEPAGE="http://www.sodan.org/~penny/vncrec/"
SRC_URI="http://www.sodan.org/~penny/vncrec/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
RDEPEND="|| ( ( x11-libs/libXaw
x11-libs/libXp )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( ( app-text/rman
x11-misc/gccmakedep
x11-misc/imake
x11-proto/xextproto )
virtual/x11 )"
src_compile() {
touch vncrec/vncrec.man
xmkmf || die
emake \
CDEBUGFLAGS="${CFLAGS}" \
CXXDEBUGFLAGS="${CXXFLAGS}" \
World || die
}
src_install() {
make install DESTDIR=${D} || die
dodoc ChangeLog README README.vnc
}
|