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 167C7138806 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 04724E0E63; Mon, 25 Dec 2017 20:01:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A4D3CE0E61 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 31F6833BF3C for ; Mon, 25 Dec 2017 20:01:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7039DAE85 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: <1514232062.f1f06216e9288bd6bea68a3df5543cd3e2e29c66.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.ebuild X-VCS-Directories: net-misc/ssvnc/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: f1f06216e9288bd6bea68a3df5543cd3e2e29c66 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: e7ce3a3b-1aef-4d4d-b8f4-bc37253a17c9 X-Archives-Hash: 3916aeb18a00a05efe60614ac194b899 commit: f1f06216e9288bd6bea68a3df5543cd3e2e29c66 Author: Manuel Rüger gentoo org> AuthorDate: Mon Dec 25 20:01:02 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Dec 25 20:01:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f06216 net-misc/ssvnc: Remove old Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-misc/ssvnc/ssvnc-1.0.29.ebuild | 61 -------------------------------------- 1 file changed, 61 deletions(-) diff --git a/net-misc/ssvnc/ssvnc-1.0.29.ebuild b/net-misc/ssvnc/ssvnc-1.0.29.ebuild deleted file mode 100644 index f240e4e6599..00000000000 --- a/net-misc/ssvnc/ssvnc-1.0.29.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="3" - -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 )" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.0.29-build.patch - - sed -i \ - -e "/^LIB/s:lib/:$(get_libdir)/:" \ - -e "$(use java || echo '/^JSRC/s:=.*:=:')" \ - Makefile - sed -i \ - -e '/^CC/s:=.*:+= $(CFLAGS) $(CPPFLAGS) $(LDFLAGS):' \ - vncstorepw/Makefile - - cp "${FILESDIR}"/Makefile.libvncauth vnc_unixsrc/libvncauth/Makefile - cd "${S}"/vnc_unixsrc/vncviewer - sed -n '/^SRCS/,/^$/p' Imakefile > Makefile.in - cp "${FILESDIR}"/Makefile.vncviewer Makefile -} - -src_compile() { - tc-export AR CC CXX RANLIB - emake all || die -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die - dodoc README -}