From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A48EA13888F for ; Tue, 27 Oct 2015 20:26:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1CE421C029; Tue, 27 Oct 2015 20:26:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9976421C029 for ; Tue, 27 Oct 2015 20:26:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA3AC340942 for ; Tue, 27 Oct 2015 20:26:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2F3D181E for ; Tue, 27 Oct 2015 20:26:17 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1445977565.2060e0e33641dbf54e129161777425f1b4797f6a.zorry@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/orc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/orc/metadata.xml dev-lang/orc/orc-0.4.24.ebuild X-VCS-Directories: dev-lang/orc/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 2060e0e33641dbf54e129161777425f1b4797f6a X-VCS-Branch: master Date: Tue, 27 Oct 2015 20:26:17 +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: 50f416bc-1f20-47e4-9c7f-9438e114266a X-Archives-Hash: fc51d9e25b4c7ad17e14428479af231c commit: 2060e0e33641dbf54e129161777425f1b4797f6a Author: Magnus Granberg gentoo org> AuthorDate: Tue Oct 27 20:24:55 2015 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Tue Oct 27 20:26:05 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2060e0e3 dev-lang/orc: change hardened to pax_kernel use flag #554596 Package-Manager: portage-2.2.23 dev-lang/orc/metadata.xml | 3 +++ dev-lang/orc/orc-0.4.24.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-lang/orc/metadata.xml b/dev-lang/orc/metadata.xml index 9e260ce..e8002d5 100644 --- a/dev-lang/orc/metadata.xml +++ b/dev-lang/orc/metadata.xml @@ -2,4 +2,7 @@ gstreamer + + Apply patch needed for pax enabled kernels. + diff --git a/dev-lang/orc/orc-0.4.24.ebuild b/dev-lang/orc/orc-0.4.24.ebuild index de2d36c..f3b4701 100644 --- a/dev-lang/orc/orc-0.4.24.ebuild +++ b/dev-lang/orc/orc-0.4.24.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.xz" LICENSE="BSD BSD-2" SLOT="0" KEYWORDS="amd64 arm hppa ~ppc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="examples hardened static-libs" +IUSE="examples pax_kernel static-libs" RDEPEND="" DEPEND="${RDEPEND} @@ -40,7 +40,7 @@ src_configure() { src_install() { autotools-multilib_src_install - if use hardened; then + if use pax_kernel; then pax-mark m "${ED}"usr/bin/orc-bugreport pax-mark m "${ED}"usr/bin/orcc pax-mark m "${ED}"usr/$(get_libdir)/liborc*.so* @@ -48,7 +48,7 @@ src_install() { } pkg_postinst() { - if use hardened; then + if use pax_kernel; then ewarn "Please run \"revdep-pax\" after installation". ewarn "It's provided by sys-apps/elfix." fi