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 0CBBB139694 for ; Thu, 23 Feb 2017 11:22:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E67FCE0CC8; Thu, 23 Feb 2017 11:22:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C140FE0CC8 for ; Thu, 23 Feb 2017 11:22:19 +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 7C71D3415B7 for ; Thu, 23 Feb 2017 11:22:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAAA251BF for ; Thu, 23 Feb 2017 11:22:16 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1487848466.e952d558c72b6929b058f4bf084379c9005e646b.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/checkpolicy/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/checkpolicy/checkpolicy-9999.ebuild X-VCS-Directories: sys-apps/checkpolicy/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: e952d558c72b6929b058f4bf084379c9005e646b X-VCS-Branch: master Date: Thu, 23 Feb 2017 11:22:16 +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: a4dd8a28-fbb8-4e8d-b07f-32a40ea1cd0a X-Archives-Hash: da13082668567ec1ea2960802b332817 commit: e952d558c72b6929b058f4bf084379c9005e646b Author: Jason Zaman gentoo org> AuthorDate: Thu Feb 23 07:26:10 2017 +0000 Commit: Jason Zaman gentoo org> CommitDate: Thu Feb 23 11:14:26 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e952d558 sys-apps/checkpolicy: update live ebuild need to pass the path to libsepol.a Package-Manager: portage-2.3.3 sys-apps/checkpolicy/checkpolicy-9999.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/sys-apps/checkpolicy/checkpolicy-9999.ebuild b/sys-apps/checkpolicy/checkpolicy-9999.ebuild index ae94993763..f27b7d320b 100644 --- a/sys-apps/checkpolicy/checkpolicy-9999.ebuild +++ b/sys-apps/checkpolicy/checkpolicy-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -37,11 +37,16 @@ DEPEND=">=sys-libs/libsepol-${SEPOL_VER} RDEPEND=">=sys-libs/libsemanage-${SEMNG_VER}" src_compile() { - emake CC="$(tc-getCC)" YACC="bison -y" LIBDIR="\$(PREFIX)/$(get_libdir)" + emake \ + CC="$(tc-getCC)" \ + YACC="bison -y" \ + LIBDIR="\$(PREFIX)/$(get_libdir)" } src_install() { - emake DESTDIR="${D}" install + emake DESTDIR="${D}" \ + LIBSEPOLA="/usr/$(get_libdir)/libsepol.a" \ + install if use debug; then dobin "${S}/test/dismod"