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 D0C211381F3 for ; Sat, 27 Jul 2013 17:31:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81636E09CB; Sat, 27 Jul 2013 17:31:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 21250E09CB for ; Sat, 27 Jul 2013 17:31:51 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1019333E66D for ; Sat, 27 Jul 2013 17:31:50 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2139) id 665322171C; Sat, 27 Jul 2013 17:31:47 +0000 (UTC) From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: multilib-build.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: multilib-build.eclass X-VCS-Directories: eclass X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130727173148.665322171C@flycatcher.gentoo.org> Date: Sat, 27 Jul 2013 17:31:47 +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: be724f76-4a49-4ce2-88dd-2cdf4a650f1a X-Archives-Hash: 18bd33dd59c9269f4382cbc0bc231cd5 aballier 13/07/27 17:31:47 Modified: multilib-build.eclass Log: Add support for freebsd, bug #475294 by Yuta SATOH Revision Changes Path 1.16 eclass/multilib-build.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.15&r2=1.16 Index: multilib-build.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- multilib-build.eclass 11 Jul 2013 06:57:18 -0000 1.15 +++ multilib-build.eclass 27 Jul 2013 17:31:47 -0000 1.16 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.15 2013/07/11 06:57:18 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.16 2013/07/27 17:31:47 aballier Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -33,6 +33,8 @@ abi_x86_32:x86 abi_x86_64:amd64 abi_x86_x32:x32 + abi_x86_32:x86_fbsd + abi_x86_64:amd64_fbsd ) # @ECLASS-VARIABLE: MULTILIB_USEDEP @@ -293,9 +295,9 @@ # XXX: get abi_* directly local abi_flag case "${ABI}" in - amd64) + amd64|amd64_fbsd) abi_flag=abi_x86_64;; - x86) + x86|x86_fbsd) abi_flag=abi_x86_32;; x32) abi_flag=abi_x86_x32;;