From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1049474-garchives=archives.gentoo.org@lists.gentoo.org> 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 F07DF138334 for <garchives@archives.gentoo.org>; Sun, 30 Sep 2018 12:57:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98EF8E085E; Sun, 30 Sep 2018 12:57:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6B069E085E for <gentoo-commits@lists.gentoo.org>; Sun, 30 Sep 2018 12:57:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 83712335CDA for <gentoo-commits@lists.gentoo.org>; Sun, 30 Sep 2018 12:57:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B34193AB for <gentoo-commits@lists.gentoo.org>; Sun, 30 Sep 2018 12:57:18 +0000 (UTC) From: "Jeroen Roovers" <jer@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" <jer@gentoo.org> Message-ID: <1538312234.5670bda2daa5d150d0638db28bd480b69daa6187.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/botan/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/botan/botan-2.7.0.ebuild X-VCS-Directories: dev-libs/botan/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 5670bda2daa5d150d0638db28bd480b69daa6187 X-VCS-Branch: master Date: Sun, 30 Sep 2018 12:57:18 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4d490a89-bb6f-497b-8ca4-f479054ccf20 X-Archives-Hash: ffedd0e0fa8584cbf0f47b506f304d97 commit: 5670bda2daa5d150d0638db28bd480b69daa6187 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Sun Sep 30 12:56:32 2018 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Sun Sep 30 12:57:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5670bda2 dev-libs/botan: Fix HPPA build. Package-Manager: Portage-2.3.50, Repoman-2.3.11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org> dev-libs/botan/botan-2.7.0.ebuild | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/dev-libs/botan/botan-2.7.0.ebuild b/dev-libs/botan/botan-2.7.0.ebuild index 9763cbe67a6..e6887c050c9 100644 --- a/dev-libs/botan/botan-2.7.0.ebuild +++ b/dev-libs/botan/botan-2.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -49,8 +49,12 @@ src_configure() { local myos= case ${CHOST} in - *-darwin*) myos=darwin ;; - *) myos=linux ;; + *-darwin*) myos=darwin ;; + *) myos=linux ;; + esac + + case ${CHOST} in + hppa*) CHOSTARCH=parisc ;; esac local pythonvers=() @@ -62,25 +66,26 @@ src_configure() { fi CXX="$(tc-getCXX)" AR="$(tc-getAR)" ./configure.py \ - --prefix="${EPREFIX}/usr" \ - --libdir=$(get_libdir) \ - --docdir=share/doc \ - --cc=gcc \ - --os=${myos} \ - --cpu=${CHOSTARCH} \ - --with-endian="$(tc-endian)" \ - --without-doxygen \ + $(use_enable static-libs static-library) \ + $(use_with boost) \ $(use_with bzip2) \ + $(use_with doc documentation) \ + $(use_with doc sphinx) \ $(use_with lzma) \ $(use_with sqlite sqlite3) \ $(use_with ssl openssl) \ $(use_with zlib) \ - $(use_with boost) \ - $(use_with doc sphinx) \ - $(use_with doc documentation) \ - $(use_enable static-libs static-library) \ - --with-python-version=$(IFS=","; echo "${pythonvers[*]}" ) \ + $(usex hppa --without-stack-protector '') \ + --cc=gcc \ + --cpu=${CHOSTARCH} \ --disable-modules=$(IFS=","; echo "${disable_modules[*]}" ) \ + --docdir=share/doc \ + --libdir=$(get_libdir) \ + --os=${myos} \ + --prefix="${EPREFIX}/usr" \ + --with-endian="$(tc-endian)" \ + --with-python-version=$(IFS=","; echo "${pythonvers[*]}" ) \ + --without-doxygen \ || die "configure.py failed" }