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 C0A57138806 for ; Mon, 25 Dec 2017 20:01:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA854E0E77; Mon, 25 Dec 2017 20:01:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 B9657E0E77 for ; Mon, 25 Dec 2017 20:01:41 +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 D898F33BF01 for ; Mon, 25 Dec 2017 20:01:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C946A1A0 for ; Mon, 25 Dec 2017 20:01:38 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1514232041.409a86b6b39ecec910a27f0e6d464fc84cb60ff6.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ssvnc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ssvnc/ssvnc-1.0.29-r1.ebuild X-VCS-Directories: net-misc/ssvnc/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 409a86b6b39ecec910a27f0e6d464fc84cb60ff6 X-VCS-Branch: master Date: Mon, 25 Dec 2017 20:01:38 +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: 0bc2cc80-4d6f-4748-8115-bb10c23ec587 X-Archives-Hash: b530730197a7b81f49fa2d966d2711ea commit: 409a86b6b39ecec910a27f0e6d464fc84cb60ff6 Author: Manuel Rüger gentoo org> AuthorDate: Mon Dec 25 20:00:41 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Dec 25 20:00:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=409a86b6 net-misc/ssvnc: Update EAPI Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-misc/ssvnc/ssvnc-1.0.29-r1.ebuild | 63 +++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/net-misc/ssvnc/ssvnc-1.0.29-r1.ebuild b/net-misc/ssvnc/ssvnc-1.0.29-r1.ebuild new file mode 100644 index 00000000000..d0524154cc1 --- /dev/null +++ b/net-misc/ssvnc/ssvnc-1.0.29-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="VNC viewer that adds encryption security to VNC connections" +HOMEPAGE="http://www.karlrunge.com/x11vnc/ssvnc.html" +SRC_URI="mirror://sourceforge/ssvnc/${P}.src.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~arm-linux ~x86-linux" +IUSE="java" + +RDEPEND="sys-libs/zlib + virtual/jpeg + dev-libs/openssl + dev-lang/tk + net-misc/stunnel + java? ( virtual/jre ) + x11-terms/xterm + x11-libs/libICE + x11-libs/libSM + x11-libs/libXaw + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXmu + x11-libs/libXp + x11-libs/libXpm + x11-libs/libXt" +DEPEND="${RDEPEND} + java? ( virtual/jdk )" + +PATCHES=( "${FILESDIR}"/${PN}-1.0.29-build.patch ) + +src_prepare() { + default + + sed -i \ + -e "/^LIB/s:lib/:$(get_libdir)/:" \ + -e "$(use java || echo '/^JSRC/s:=.*:=:')" \ + Makefile || die + sed -i \ + -e '/^CC/s:=.*:+= $(CFLAGS) $(CPPFLAGS) $(LDFLAGS):' \ + vncstorepw/Makefile || die + + cp "${FILESDIR}"/Makefile.libvncauth vnc_unixsrc/libvncauth/Makefile || die + cd "${S}"/vnc_unixsrc/vncviewer || die + sed -n '/^SRCS/,/^$/p' Imakefile > Makefile.in || die + cp "${FILESDIR}"/Makefile.vncviewer Makefile || die +} + +src_compile() { + tc-export AR CC CXX RANLIB + emake all +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + dodoc README +}