|
|
LICENSE="Apache-2.0" | LICENSE="Apache-2.0" |
SLOT="0" | SLOT="0" |
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" | KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" |
IUSE="ipv6" |
IUSE="ipv6 no-urandom" |
RESTRICT="test" | RESTRICT="test" |
| |
DEPEND="" | DEPEND="" |
|
|
myconf="${myconf} $(use_enable ipv6)" | myconf="${myconf} $(use_enable ipv6)" |
myconf="${myconf} --enable-threads" | myconf="${myconf} --enable-threads" |
myconf="${myconf} --enable-nonportable-atomics" | myconf="${myconf} --enable-nonportable-atomics" |
myconf="${myconf} --with-devrandom=/dev/random" |
if use no-urandom ; then |
|
einfo "Using /dev/random as random device." |
|
myconf="${myconf} --with-devrandom=/dev/random" |
|
else |
|
einfo "Using /dev/urandom as random device." |
|
myconf="${myconf} --with-devrandom=/dev/urandom" |
|
fi |
| |
econf ${myconf} || die | econf ${myconf} || die |
emake || die | emake || die |