On 11/02/2015 09:17 AM, Leno Hou wrote: > -DEPEND=">=dev-lang/go-1.4:= > +DEPEND="|| ( > + >=dev-lang/go-1.4:= > + >=sys-devel/gcc-5.1.0:=[go] > + )
Note that the council has recently decided that the := operator is explicitly forbidden inside || ( ) constructs. The closest alternative would be to use a USE flag as follows: !gccgo? ( >=dev-lang/go-1.4:= ) gccgo? ( >=sys-devel/gcc-5.1.0:=[go] ) -- Thanks, Zac