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 29EAD1382E0 for ; Sun, 3 Jul 2016 13:29:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F12BEE0A41; Sun, 3 Jul 2016 13:29:42 +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 56EF3E0A41 for ; Sun, 3 Jul 2016 13:29:42 +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 77098340CF2 for ; Sun, 3 Jul 2016 13:29:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0FE72432 for ; Sun, 3 Jul 2016 13:29:36 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1467552564.2c9e3ae1f1afaf8eefb25ed43ba4a077eab3d92f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/zpaq/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/zpaq/zpaq-7.13-r1.ebuild X-VCS-Directories: app-arch/zpaq/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2c9e3ae1f1afaf8eefb25ed43ba4a077eab3d92f X-VCS-Branch: master Date: Sun, 3 Jul 2016 13:29:36 +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: 7ae674c8-1de7-4579-94cf-18830a3180e4 X-Archives-Hash: 50ad140daf9c750745dd36a430bf58f0 commit: 2c9e3ae1f1afaf8eefb25ed43ba4a077eab3d92f Author: Michał Górny gentoo org> AuthorDate: Sun Jul 3 13:27:43 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 3 13:29:24 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c9e3ae1 app-arch/zpaq: Fix Hardened w/ USE=jit, #411521 app-arch/zpaq/zpaq-7.13-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-arch/zpaq/zpaq-7.13-r1.ebuild b/app-arch/zpaq/zpaq-7.13-r1.ebuild index a05100b..d4dbbe9 100644 --- a/app-arch/zpaq/zpaq-7.13-r1.ebuild +++ b/app-arch/zpaq/zpaq-7.13-r1.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit flag-o-matic toolchain-funcs +inherit flag-o-matic pax-utils toolchain-funcs MY_P=${PN}${PV/./} DESCRIPTION="Journaling incremental deduplicating archiving compressor" @@ -38,11 +38,13 @@ src_compile() { src_test() { local -x LD_LIBRARY_PATH=".${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" + use jit && pax-mark m zpaq default } src_install() { emake install PREFIX="${ED%/}"/usr LIBDIR="\$(PREFIX)/$(get_libdir)" + use jit && pax-mark m "${ED%/}"/usr/bin/zpaq einstalldocs }