diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-08 21:09:06 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-08 21:09:06 +0000 |
commit | d20dd06d88e4e011bb59c743cd3f2028586af674 (patch) | |
tree | 6785870241b0c7f6f0e2440f0b452c4119aad178 /dev-libs/apr | |
parent | Version bump #273232 by Rodrigo Severo. (diff) | |
download | gentoo-2-d20dd06d88e4e011bb59c743cd3f2028586af674.tar.gz gentoo-2-d20dd06d88e4e011bb59c743cd3f2028586af674.tar.bz2 gentoo-2-d20dd06d88e4e011bb59c743cd3f2028586af674.zip |
Version bump.
(Portage version: 13634-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/apr')
-rw-r--r-- | dev-libs/apr/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/apr/apr-1.3.5.ebuild | 73 |
2 files changed, 81 insertions, 2 deletions
diff --git a/dev-libs/apr/ChangeLog b/dev-libs/apr/ChangeLog index fc5e14adf9c6..1a0a30358556 100644 --- a/dev-libs/apr/ChangeLog +++ b/dev-libs/apr/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/apr -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/ChangeLog,v 1.121 2009/01/23 11:41:20 armin76 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/ChangeLog,v 1.122 2009/06/08 21:09:06 arfrever Exp $ + +*apr-1.3.5 (08 Jun 2009) + + 08 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +apr-1.3.5.ebuild: + Version bump. 23 Jan 2009; Raúl Porcel <armin76@gentoo.org> apr-1.3.3.ebuild: arm/ia64/s390/sh stable wrt #246003 diff --git a/dev-libs/apr/apr-1.3.5.ebuild b/dev-libs/apr/apr-1.3.5.ebuild new file mode 100644 index 000000000000..bd4cb4021a78 --- /dev/null +++ b/dev-libs/apr/apr-1.3.5.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/apr-1.3.5.ebuild,v 1.1 2009/06/08 21:09:06 arfrever Exp $ + +EAPI="2" + +inherit autotools eutils libtool multilib + +DESCRIPTION="Apache Portable Runtime Library" +HOMEPAGE="http://apr.apache.org/" +SRC_URI="mirror://apache/apr/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="debug doc +urandom" +RESTRICT="test" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="" + +src_prepare() { + AT_M4DIR="build" eautoreconf + elibtoolize + + epatch "${FILESDIR}/config.layout.patch" +} + +src_configure() { + local myconf + + if use debug; then + myconf+=" --enable-maintainer-mode --enable-pool-debug=all" + fi + + if use urandom; then + myconf+=" --with-devrandom=/dev/urandom" + else + myconf+=" --with-devrandom=/dev/random" + fi + + econf --enable-layout=gentoo \ + --enable-nonportable-atomics \ + --enable-threads \ + ${myconf} + + # Make sure we use the system libtool. + sed -i 's,$(apr_builddir)/libtool,/usr/bin/libtool,' build/apr_rules.mk + sed -i 's,${installbuilddir}/libtool,/usr/bin/libtool,' apr-1-config + rm -f libtool +} + +src_compile() { + emake || die "emake failed" + + if use doc; then + emake dox || die "emake dox failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc CHANGES NOTICE + + if use doc; then + dohtml docs/dox/html/* || die "dohtml failed" + fi + + # This file is only used on AIX systems, which Gentoo is not, + # and causes collisions between the SLOTs, so remove it. + rm -f "${D}usr/$(get_libdir)/apr.exp" +} |