diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-09-22 20:08:28 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-09-22 20:08:28 +0000 |
commit | 519b9d2dd7f3c24fdf4ec1a625c3e57e9d1c5096 (patch) | |
tree | 551f191dca8b1081fa0a86d710005d809f136bf3 /net-libs/axtls | |
parent | Version bump (diff) | |
download | gentoo-2-519b9d2dd7f3c24fdf4ec1a625c3e57e9d1c5096.tar.gz gentoo-2-519b9d2dd7f3c24fdf4ec1a625c3e57e9d1c5096.tar.bz2 gentoo-2-519b9d2dd7f3c24fdf4ec1a625c3e57e9d1c5096.zip |
Fix build with USE=doc
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'net-libs/axtls')
-rw-r--r-- | net-libs/axtls/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/axtls/axtls-1.4.9-r1.ebuild | 9 |
2 files changed, 7 insertions, 7 deletions
diff --git a/net-libs/axtls/ChangeLog b/net-libs/axtls/ChangeLog index d886a32ecbef..fe2cf2e7d216 100644 --- a/net-libs/axtls/ChangeLog +++ b/net-libs/axtls/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/axtls # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.28 2014/09/14 21:57:46 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/ChangeLog,v 1.29 2014/09/22 20:08:28 blueness Exp $ + + 22 Sep 2014; Anthony G. Basile <blueness@gentoo.org> axtls-1.4.9-r1.ebuild: + Fix build with USE=doc 14 Sep 2014; Jeroen Roovers <jer@gentoo.org> axtls-1.4.9-r1.ebuild: Stable for HPPA (bug #522502). diff --git a/net-libs/axtls/axtls-1.4.9-r1.ebuild b/net-libs/axtls/axtls-1.4.9-r1.ebuild index bc97f42dcdda..376d0da6944c 100644 --- a/net-libs/axtls/axtls-1.4.9-r1.ebuild +++ b/net-libs/axtls/axtls-1.4.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.2 2014/09/14 21:57:46 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.3 2014/09/22 20:08:28 blueness Exp $ EAPI="5" @@ -144,11 +144,6 @@ multilib_src_configure() { fi } -multilib_src_compile() { - default - multilib_is_native_abi && use doc && emake docs -} - multilib_src_install() { if multilib_is_native_abi && use savedconfig; then save_config config/.config @@ -160,7 +155,9 @@ multilib_src_install() { rm -f "${ED}"/usr/$(get_libdir)/libaxtls.a || die fi + # The build system needs to install before it builds docs if use doc; then + emake docs dodoc -r docsrc/html fi } |