diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-07-07 18:27:17 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-07-07 18:27:17 +0000 |
commit | 7ad23d09dc0090758498b9473dc21694b58c5db3 (patch) | |
tree | 5160558aa9f6c1ed40c06ee51881cae842757b5a /dev-libs/apr | |
parent | Add the latest 21.5 beta version from the xemacs overlay. (diff) | |
download | gentoo-2-7ad23d09dc0090758498b9473dc21694b58c5db3.tar.gz gentoo-2-7ad23d09dc0090758498b9473dc21694b58c5db3.tar.bz2 gentoo-2-7ad23d09dc0090758498b9473dc21694b58c5db3.zip |
Version bump.
(Portage version: 13804-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/apr')
-rw-r--r-- | dev-libs/apr/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/apr/apr-1.3.6.ebuild | 73 |
2 files changed, 80 insertions, 1 deletions
diff --git a/dev-libs/apr/ChangeLog b/dev-libs/apr/ChangeLog index 2c0685b1a6dd..a9f900b196a0 100644 --- a/dev-libs/apr/ChangeLog +++ b/dev-libs/apr/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/apr # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/ChangeLog,v 1.129 2009/06/21 14:12:24 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr/ChangeLog,v 1.130 2009/07/07 18:27:17 arfrever Exp $ + +*apr-1.3.6 (07 Jul 2009) + + 07 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +apr-1.3.6.ebuild: + Version bump. 21 Jun 2009; Brent Baude <ranger@gentoo.org> apr-1.3.5.ebuild: Marking apr-1.3.5 ppc for bug 272260 diff --git a/dev-libs/apr/apr-1.3.6.ebuild b/dev-libs/apr/apr-1.3.6.ebuild new file mode 100644 index 000000000000..bdbd97c75230 --- /dev/null +++ b/dev-libs/apr/apr-1.3.6.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.6.ebuild,v 1.1 2009/07/07 18:27:17 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" +} |