From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D906138331 for ; Thu, 1 Mar 2018 18:28:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83C77E0A7C; Thu, 1 Mar 2018 18:28:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62621E0A70 for ; Thu, 1 Mar 2018 18:28:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C0D1335C38 for ; Thu, 1 Mar 2018 18:28:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EBDA213 for ; Thu, 1 Mar 2018 18:28:08 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1519928875.7a3dac0e836ff1c43accdfa20cd0118596da848a.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/vncrec/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/vncrec/vncrec-0.2-r2.ebuild X-VCS-Directories: net-misc/vncrec/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 7a3dac0e836ff1c43accdfa20cd0118596da848a X-VCS-Branch: master Date: Thu, 1 Mar 2018 18:28:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0ccf4132-3baf-49ee-b86b-e52867b21398 X-Archives-Hash: 12361a571ee0fe013818382856270a18 commit: 7a3dac0e836ff1c43accdfa20cd0118596da848a Author: Pacho Ramos gentoo org> AuthorDate: Thu Mar 1 18:15:56 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Mar 1 18:27:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3dac0e net-misc/vncrec: x11-libs/libXp is not really needed Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-misc/vncrec/vncrec-0.2-r2.ebuild | 50 ++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/net-misc/vncrec/vncrec-0.2-r2.ebuild b/net-misc/vncrec/vncrec-0.2-r2.ebuild new file mode 100644 index 00000000000..759d2b27ac5 --- /dev/null +++ b/net-misc/vncrec/vncrec-0.2-r2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="VNC session recorder and player" +HOMEPAGE="http://www.sodan.org/~penny/vncrec/" +SRC_URI="http://www.sodan.org/~penny/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=" + x11-libs/libXaw + x11-libs/libXext + x11-libs/libXmu + x11-libs/libXpm + x11-libs/libXt +" +DEPEND="${RDEPEND} + app-text/rman + x11-misc/gccmakedep + x11-misc/imake + x11-proto/xextproto +" + +DOCS=( README README.vnc ) + +src_prepare() { + default + + eapply "${FILESDIR}"/${P}-includes.patch + touch vncrec/vncrec.man || die + sed -i Imakefile -e '/make Makefiles/d' || die +} + +src_configure() { + xmkmf -a || die +} + +src_compile() { + emake \ + CC=$(tc-getCC) \ + CCOPTIONS="${CXXFLAGS}" \ + EXTRA_LDOPTIONS="${LDFLAGS}" \ + World +}