From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2B2BE138330 for ; Sat, 24 Sep 2016 22:01:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58F6521C09F; Sat, 24 Sep 2016 22:01:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 099EE21C09F for ; Sat, 24 Sep 2016 22:01:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9F90340775 for ; Sat, 24 Sep 2016 22:01:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D930248C for ; Sat, 24 Sep 2016 22:01:33 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1474754467.06f33e5de5cc74a3cc21b74ebeb92a1db6440556.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libtasn1/libtasn1-4.9-r1.ebuild dev-libs/libtasn1/libtasn1-4.9.ebuild X-VCS-Directories: dev-libs/libtasn1/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 06f33e5de5cc74a3cc21b74ebeb92a1db6440556 X-VCS-Branch: master Date: Sat, 24 Sep 2016 22:01:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 86fe5aa9-fb92-49ac-b0e4-3843aa615e67 X-Archives-Hash: 0583e8f0f6ede932f5c31daae610601d commit: 06f33e5de5cc74a3cc21b74ebeb92a1db6440556 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Sep 24 22:00:16 2016 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Sep 24 22:01:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06f33e5d dev-libs/libtasn1: eap6 cleanups + eautoreconf Bug: 595062 Package-Manager: portage-2.2.28 ...{libtasn1-4.9.ebuild => libtasn1-4.9-r1.ebuild} | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/dev-libs/libtasn1/libtasn1-4.9.ebuild b/dev-libs/libtasn1/libtasn1-4.9-r1.ebuild similarity index 85% rename from dev-libs/libtasn1/libtasn1-4.9.ebuild rename to dev-libs/libtasn1/libtasn1-4.9-r1.ebuild index e227f89..eb4054f 100644 --- a/dev-libs/libtasn1/libtasn1-4.9.ebuild +++ b/dev-libs/libtasn1/libtasn1-4.9-r1.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit multilib-minimal +inherit autotools multilib-minimal DESCRIPTION="ASN.1 library" HOMEPAGE="https://www.gnu.org/software/libtasn1/" @@ -29,16 +29,20 @@ PATCHES=( ) DOCS=( AUTHORS ChangeLog NEWS README THANKS ) +pkg_setup() { + if use doc; then + DOCS+=( doc/libtasn1.pdf ) + HTML_DOCS=( doc/reference/html/. ) + fi +} + +src_prepare() { + default + eautoreconf +} + multilib_src_configure() { local myeconfargs [[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=( --disable-valgrind-tests ) ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } - -multilib_src_install_all() { - einstalldocs - if use doc ; then - dodoc doc/libtasn1.pdf - dohtml doc/reference/html/* - fi -}