# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/apr-0.9.13.ebuild,v 1.4 2007/03/03 22:29:34 genone Exp $ inherit eutils flag-o-matic libtool DESCRIPTION="Apache Portable Runtime Library" HOMEPAGE="http://apr.apache.org/" SRC_URI="mirror://apache/apr/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" IUSE="ipv6 urandom" RESTRICT="test" DEPEND="" RDEPEND="" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/apr-0.9.12-linking.patch elibtoolize || die "elibtoolize failed" } src_compile() { myconf="--datadir=/usr/share/apr-0" myconf="${myconf} $(use_enable ipv6)" myconf="${myconf} --enable-threads" myconf="${myconf} --enable-nonportable-atomics" if use urandom; then elog "Using /dev/urandom as random device" myconf="${myconf} --with-devrandom=/dev/urandom" else elog "Using /dev/random as random device" myconf="${myconf} --with-devrandom=/dev/random" fi # We pre-load the cache with the correct answer! This avoids # it violating the sandbox. This may have to be changed for # non-Linux systems or if sem_open changes on Linux. This # hack is built around documentation in /usr/include/semaphore.h # and the glibc (pthread) source # See bugs 24215 and 133573 echo 'ac_cv_func_sem_open=${ac_cv_func_sem_open=no}' >> "${S}"/config.cache econf ${myconf} || die "econf failed!" emake || die "emake failed!" } src_install() { make DESTDIR="${D}" installbuilddir=/usr/share/apr-0/build install || die "make install failed!" # bogus values pointing at /var/tmp/portage sed -i -e 's:APR_SOURCE_DIR=.*:APR_SOURCE_DIR=/usr/share/apr-0:g' "${D}"/usr/bin/apr-config sed -i -e 's:APR_BUILD_DIR=.*:APR_BUILD_DIR=/usr/share/apr-0/build:g' "${D}"/usr/bin/apr-config sed -i -e 's:apr_builddir=.*:apr_builddir=/usr/share/apr-0/build:g' "${D}"/usr/share/apr-0/build/apr_rules.mk sed -i -e 's:apr_builders=.*:apr_builders=/usr/share/apr-0/build:g' "${D}"/usr/share/apr-0/build/apr_rules.mk cp -p build/*.awk "${D}"/usr/share/apr-0/build cp -p build/*.sh "${D}"/usr/share/apr-0/build cp -p build/*.pl "${D}"/usr/share/apr-0/build dodoc CHANGES LICENSE NOTICE # This file is only used on AIX systems, which gentoo is not, # and causes collisions between the SLOTs, so kill it rm "${D}"/usr/$(get_libdir)/apr.exp }