View | Details | Raw Unified
Collapse All | Expand All

(-) apr-0.9.6-r3.ebuild (-2 / +8 lines)
 Lines 11-17    Link Here 
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=""
 Lines 24-30    Link Here 
	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