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 1ACAD13832E for ; Thu, 21 Jul 2016 01:32:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50F6421C289; Thu, 21 Jul 2016 01:32:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2B80221C17A for ; Thu, 21 Jul 2016 01:32:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8B9B1340DE5 for ; Thu, 21 Jul 2016 01:32:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8081C7DF for ; Thu, 21 Jul 2016 01:32:00 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1469064650.2b2a76fd22d1521b5fe4c079b87f2a0c82da874e.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/tinc/tinc-1.1_pre14.ebuild X-VCS-Directories: net-misc/tinc/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 2b2a76fd22d1521b5fe4c079b87f2a0c82da874e X-VCS-Branch: master Date: Thu, 21 Jul 2016 01:32:00 +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: 708174d0-d149-45ad-8461-b70e5e99bc45 X-Archives-Hash: 5cca4098befd549c59ec17a8372e0f74 commit: 2b2a76fd22d1521b5fe4c079b87f2a0c82da874e Author: Yixun Lan gentoo org> AuthorDate: Thu Jul 21 01:29:32 2016 +0000 Commit: Yixun Lan gentoo org> CommitDate: Thu Jul 21 01:30:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2a76fd net-misc/tinc: use use_enable() to correct USE=upnp Gentoo-Bug: 589256 Package-Manager: portage-2.3.0 net-misc/tinc/tinc-1.1_pre14.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-misc/tinc/tinc-1.1_pre14.ebuild b/net-misc/tinc/tinc-1.1_pre14.ebuild index 0f2a9ae..96313dc 100644 --- a/net-misc/tinc/tinc-1.1_pre14.ebuild +++ b/net-misc/tinc/tinc-1.1_pre14.ebuild @@ -42,6 +42,7 @@ src_configure() { econf \ --enable-jumbograms \ --disable-silent-rules \ + --enable-legacy-protocol \ --disable-tunemu \ --with-systemd=/usr/$(get_libdir)/systemd/system \ $(use_enable lzo) \ @@ -50,8 +51,8 @@ src_configure() { $(use_enable uml) \ $(use_enable vde) \ $(use_enable zlib) \ - $(use_with ssl openssl) \ - $(use_with upnp miniupnpc ) + $(use_enable upnp miniupnpc) \ + $(use_with ssl openssl) #--without-libgcrypt \ }