public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Yuta SATOH" <nigoro.gentoo@0x100.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gentoo-bsd:master commit in: sys-freebsd/freebsd-lib/
Date: Tue,  1 Jan 2013 15:10:20 +0000 (UTC)	[thread overview]
Message-ID: <1357052965.5b6a4f39d2e6be501e61569eab1f1bc243dddc24.yuta_satoh@gentoo> (raw)

commit:     5b6a4f39d2e6be501e61569eab1f1bc243dddc24
Author:     Yuta SATOH <nigoro <AT> gentoo <DOT> gr <DOT> jp>
AuthorDate: Tue Jan  1 15:09:25 2013 +0000
Commit:     Yuta SATOH <nigoro.gentoo <AT> 0x100 <DOT> com>
CommitDate: Tue Jan  1 15:09:25 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-bsd.git;a=commit;h=5b6a4f39

freebsd-lib-9.9999: fixed build fails with USE=build

"/usr/share/mk/bsd.compiler.mk", line 17: Unable to determine compiler type for

---
 sys-freebsd/freebsd-lib/Manifest                  |    2 +-
 sys-freebsd/freebsd-lib/freebsd-lib-9.9999.ebuild |    7 +++++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sys-freebsd/freebsd-lib/Manifest b/sys-freebsd/freebsd-lib/Manifest
index 7132d3c..067bf14 100644
--- a/sys-freebsd/freebsd-lib/Manifest
+++ b/sys-freebsd/freebsd-lib/Manifest
@@ -39,4 +39,4 @@ DIST freebsd-usbin-9.1_rc3.tar.bz2 2669370 SHA256 de606bb756c413e85a302bc9103395
 EBUILD freebsd-lib-9.0-r3.ebuild 16910 SHA256 ef1c239e4650515a31fc0745ff66fbb9d6e482a3a955db066d61378cd4e4fe9d SHA512 95816399828aab69bf1b327cb350e116d8a4b94362445704694bb8e6d8ab3872648e02d1b624216749cff7b8832dc6657560cc503b41d08d542228f3d079c212 WHIRLPOOL acdadd9dab02b5e6ece319463ffb9d70dc018ad2c542fe8abd281f95c1db761aadd6d60e36ac04ab3181ffa987b98f5ced9e17d9e7865a5f4229e6da941a8b6e
 EBUILD freebsd-lib-9.1.9999.ebuild 17079 SHA256 05e7823c472a6c9e790cb8732f50e73afb8951174cd2aa00031aa785010ba2b2 SHA512 02434be57352c8b8783ece8b5a78540a022acf61e898dee503557bf5453c380fbce002a9d2c49dcd0f131f543aed51d94280841ee7b0fc55a17b4b0e50693855 WHIRLPOOL 07479d3642a12d6230a05c9d55b8e69f780a78b03a42ba0294ea5df43ca98653f7e32ef882c96f275c5f9fddf031e3255d4e75692f2ae2cbf1ecb410432712fa
 EBUILD freebsd-lib-9.1_rc3-r1.ebuild 17032 SHA256 a07d1533ff8a2603707b713d15da3415025f7e72e5216ef5ce06b1b72e6fef71 SHA512 b196c593bfcff4281510e111048a41181942242d5b8cd04bfe3bad3d827bd6ac217962b4840cc6aadb19bfc72f9e2760531ca4777961f69bb9953dd5c886be78 WHIRLPOOL 7faf123963dd2057e13bd1814540e684f89624c32b454679129fcb32721e4b26596479d96c24649d2c75f263f02a00e888153b68890f61258e08d959a914d305
-EBUILD freebsd-lib-9.9999.ebuild 17079 SHA256 05e7823c472a6c9e790cb8732f50e73afb8951174cd2aa00031aa785010ba2b2 SHA512 02434be57352c8b8783ece8b5a78540a022acf61e898dee503557bf5453c380fbce002a9d2c49dcd0f131f543aed51d94280841ee7b0fc55a17b4b0e50693855 WHIRLPOOL 07479d3642a12d6230a05c9d55b8e69f780a78b03a42ba0294ea5df43ca98653f7e32ef882c96f275c5f9fddf031e3255d4e75692f2ae2cbf1ecb410432712fa
+EBUILD freebsd-lib-9.9999.ebuild 17217 SHA256 5137d9cfe751cdbc08cfe8959f20b119b580c28d8337a0499d3ed228b9f1c7a0 SHA512 46807f57adafb50b2d2a3834dacdd061bc319b94b22a36059a5fda16747af6ecea09d0f5da29418934e65cba8f0b4a18ae61bb716b5aff6bfc30d57caaa3198c WHIRLPOOL 341f49eae3be48644b38903943a317dba9089a0e14386864acb0b8c1f558844cdd1a4ae36596a960b0fdeb3e592f40108ef9d80d74d35165f0a69d6d3e6a8fda

diff --git a/sys-freebsd/freebsd-lib/freebsd-lib-9.9999.ebuild b/sys-freebsd/freebsd-lib/freebsd-lib-9.9999.ebuild
index 1b97025..5111925 100644
--- a/sys-freebsd/freebsd-lib/freebsd-lib-9.9999.ebuild
+++ b/sys-freebsd/freebsd-lib/freebsd-lib-9.9999.ebuild
@@ -302,8 +302,11 @@ do_bootstrap() {
 do_compile() {
 	export MAKEOBJDIRPREFIX="${WORKDIR}/${CHOST}"
 	mkdir "${MAKEOBJDIRPREFIX}" || die "Could not create ${MAKEOBJDIRPREFIX}."
-	need_bootstrap && do_bootstrap
-
+	if need_bootstrap ; then
+		[[ "$(tc-getCC)" == *gcc* ]] && export COMPILER_TYPE="gcc"
+		[[ "$(tc-getCC)" == *clang* ]] && export COMPILER_TYPE="clang"
+		do_bootstrap
+	fi
 	export RAW_LDFLAGS=$(raw-ldflags)
 
 	# Everything is now setup, build it!


             reply	other threads:[~2013-01-01 15:10 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-01 15:10 Yuta SATOH [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-10-09  8:28 [gentoo-commits] proj/gentoo-bsd:master commit in: sys-freebsd/freebsd-lib/ Yuta SATOH
2015-02-23 12:23 Yuta SATOH
2014-12-12 14:30 Yuta SATOH
2014-09-13  7:20 Yuta SATOH
2014-08-31  5:07 Yuta SATOH
2014-08-31  5:07 Yuta SATOH
2014-08-31  5:07 Yuta SATOH
2014-07-13  3:14 Yuta SATOH
2014-05-11  9:57 Yuta SATOH
2014-01-25 12:51 Yuta SATOH
2013-12-19 11:17 Yuta SATOH
2013-10-28 14:12 Yuta SATOH
2013-10-22 14:14 Yuta SATOH
2013-09-29 14:43 Yuta SATOH
2013-09-29 14:43 Yuta SATOH
2013-09-22 12:41 Yuta SATOH
2013-09-16 13:14 Yuta SATOH
2013-08-31 16:01 Yuta SATOH
2013-08-30 18:30 Yuta SATOH
2013-07-27 12:39 Yuta SATOH
2013-07-23 12:44 Yuta SATOH
2013-07-05 11:12 Yuta SATOH
2013-06-28 13:36 Yuta SATOH
2013-06-20 15:30 Yuta SATOH
2013-06-20 15:30 Yuta SATOH
2013-06-20 12:20 Yuta SATOH
2013-06-18 12:57 Yuta SATOH
2013-06-04 11:11 Yuta SATOH
2013-05-16 11:17 Yuta SATOH
2013-02-07 13:14 Yuta SATOH
2013-01-26 13:16 Yuta SATOH
2013-01-12 11:09 Yuta SATOH
2013-01-10 11:58 Yuta SATOH
2012-12-31  9:51 Yuta SATOH
2012-12-11 15:07 Yuta SATOH
2012-12-02 12:01 Yuta SATOH
2012-12-01 14:24 Yuta SATOH
2012-09-19 15:25 Yuta SATOH
2012-09-18 15:46 Yuta SATOH
2012-08-04 10:10 Yuta SATOH
2012-07-27 12:25 Yuta SATOH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1357052965.5b6a4f39d2e6be501e61569eab1f1bc243dddc24.yuta_satoh@gentoo \
    --to=nigoro.gentoo@0x100.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox