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 9F8A4139086 for ; Fri, 30 Dec 2016 21:04:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6E9521C060; Fri, 30 Dec 2016 21:04:56 +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 C75AE21C060 for ; Fri, 30 Dec 2016 21:04:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 CBA743416D5 for ; Fri, 30 Dec 2016 21:04:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0639C24EE for ; Fri, 30 Dec 2016 21:04:54 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1483130700.4fa23210635c5b299113fa6f7a765dc1179f7c55.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cryptlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cryptlib/cryptlib-3.4.3-r1.ebuild X-VCS-Directories: dev-libs/cryptlib/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 4fa23210635c5b299113fa6f7a765dc1179f7c55 X-VCS-Branch: master Date: Fri, 30 Dec 2016 21:04:54 +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: 793e05fc-ea83-451b-9585-9cf33eed6309 X-Archives-Hash: 747ea16caf1e07808938b042939f970d commit: 4fa23210635c5b299113fa6f7a765dc1179f7c55 Author: Alon Bar-Lev gentoo org> AuthorDate: Fri Dec 30 20:44:42 2016 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Fri Dec 30 20:45:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa23210 dev-libs/cryptlib: more EAPI6 Package-Manager: Portage-2.3.0, Repoman-2.3.1 dev-libs/cryptlib/cryptlib-3.4.3-r1.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-libs/cryptlib/cryptlib-3.4.3-r1.ebuild b/dev-libs/cryptlib/cryptlib-3.4.3-r1.ebuild index 8902c50..7c8d48a 100644 --- a/dev-libs/cryptlib/cryptlib-3.4.3-r1.ebuild +++ b/dev-libs/cryptlib/cryptlib-3.4.3-r1.ebuild @@ -31,6 +31,11 @@ RDEPEND="sys-libs/zlib DEPEND="${RDEPEND} app-arch/unzip" +PATCHES=( + "${FILESDIR}/${P}-build.patch" + "${FILESDIR}/${P}-zlib.patch" +) + src_unpack() { # we need the -a option, so we can not use 'unpack' unzip -qoa "${DISTDIR}/cl${MY_PV}.zip" || die @@ -66,12 +71,6 @@ src_prepare() { # Fix version number of shared library. sed -i -e 's/PLV="2"/PLV="3"/' tools/buildall.sh || die "sed tools/buildall.sh failed" - # Respect LDFLAGS and fix soname and strip issues. - epatch "${FILESDIR}/${P}-build.patch" - - # Use external zlib. - epatch "${FILESDIR}/${P}-zlib.patch" - wrap_python ${FUNCNAME} }