Magellan Linux

Diff of /smage/trunk/extras/rust/rust-1.19.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9608 by niro, Fri Jul 28 11:14:06 2017 UTC revision 9614 by niro, Fri Jul 28 13:01:16 2017 UTC
# Line 4  PNAME="rust" Line 4  PNAME="rust"
4  PVER="1.19.0"  PVER="1.19.0"
5  PBUILD="r1"  PBUILD="r1"
6    
7    STATE="disabled"
8  PCAT="dev-lang"  PCAT="dev-lang"
9    
10  DESCRIPTION="Systems programming language focused on safety, speed and concurrency."  DESCRIPTION="Systems programming language focused on safety, speed and concurrency."
# Line 21  SDEPEND=">= sys-dev/llvm-4.0 Line 22  SDEPEND=">= sys-dev/llvm-4.0
22   >= dev-libs/libffi-3.2   >= dev-libs/libffi-3.2
23   >= dev-libs/jemalloc-5   >= dev-libs/jemalloc-5
24   >= net-misc/curl-7   >= net-misc/curl-7
25   >= net-misc/curl-dev-7"   >= net-misc/curl-dev-7
26     >= app-arch/xz-utils-5"
27    
28  if [[ ${BOOTSTRAP} = 0 ]]  if [[ ${BOOTSTRAP} = 0 ]]
29  then  then
# Line 87  src_compile() Line 89  src_compile()
89   local myconf   local myconf
90    
91   # enforce rust-bin chost   # enforce rust-bin chost
92   myconf+=" --host=${ARCH}-unknown-linux-gnu --build=${ARCH}-unknown-linux-gnu"   local myARCH
93     [[ ${ARCH} = i*86 ]] && myARCH=i686
94     myconf+=" --host=${myARCH}-unknown-linux-gnu --build=${myARCH}-unknown-linux-gnu"
95    
96   if [[ ${BOOTSTRAP} = 0 ]]   if [[ ${BOOTSTRAP} = 0 ]]
97   then   then

Legend:
Removed from v.9608  
changed lines
  Added in v.9614