Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/vncrec/
Date: Thu, 01 Mar 2018 18:28:12
Message-Id: 1519928875.7a3dac0e836ff1c43accdfa20cd0118596da848a.pacho@gentoo
1 commit: 7a3dac0e836ff1c43accdfa20cd0118596da848a
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 1 18:15:56 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 18:27:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3dac0e
7
8 net-misc/vncrec: x11-libs/libXp is not really needed
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 net-misc/vncrec/vncrec-0.2-r2.ebuild | 50 ++++++++++++++++++++++++++++++++++++
13 1 file changed, 50 insertions(+)
14
15 diff --git a/net-misc/vncrec/vncrec-0.2-r2.ebuild b/net-misc/vncrec/vncrec-0.2-r2.ebuild
16 new file mode 100644
17 index 00000000000..759d2b27ac5
18 --- /dev/null
19 +++ b/net-misc/vncrec/vncrec-0.2-r2.ebuild
20 @@ -0,0 +1,50 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit toolchain-funcs
26 +
27 +DESCRIPTION="VNC session recorder and player"
28 +HOMEPAGE="http://www.sodan.org/~penny/vncrec/"
29 +SRC_URI="http://www.sodan.org/~penny/${PN}/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~x86"
34 +IUSE=""
35 +
36 +RDEPEND="
37 + x11-libs/libXaw
38 + x11-libs/libXext
39 + x11-libs/libXmu
40 + x11-libs/libXpm
41 + x11-libs/libXt
42 +"
43 +DEPEND="${RDEPEND}
44 + app-text/rman
45 + x11-misc/gccmakedep
46 + x11-misc/imake
47 + x11-proto/xextproto
48 +"
49 +
50 +DOCS=( README README.vnc )
51 +
52 +src_prepare() {
53 + default
54 +
55 + eapply "${FILESDIR}"/${P}-includes.patch
56 + touch vncrec/vncrec.man || die
57 + sed -i Imakefile -e '/make Makefiles/d' || die
58 +}
59 +
60 +src_configure() {
61 + xmkmf -a || die
62 +}
63 +
64 +src_compile() {
65 + emake \
66 + CC=$(tc-getCC) \
67 + CCOPTIONS="${CXXFLAGS}" \
68 + EXTRA_LDOPTIONS="${LDFLAGS}" \
69 + World
70 +}