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 B07CF13832E for ; Wed, 10 Aug 2016 04:43:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA267E0AD7; Wed, 10 Aug 2016 04:43:42 +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 4EDFBE0A86 for ; Wed, 10 Aug 2016 04:43:41 +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 C3E04340B30 for ; Wed, 10 Aug 2016 04:43:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C98F2434 for ; Wed, 10 Aug 2016 04:43:37 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1470804197.95f338849ca7de74a3c97ada366ed4b99f677c88.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunistring/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libunistring/libunistring-0.9.6.ebuild X-VCS-Directories: dev-libs/libunistring/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 95f338849ca7de74a3c97ada366ed4b99f677c88 X-VCS-Branch: master Date: Wed, 10 Aug 2016 04:43:37 +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: b50238ac-e897-406a-ba3d-8d9e6f0979ad X-Archives-Hash: afb4ceee75fc7ab46926f82ddcbc9d3a commit: 95f338849ca7de74a3c97ada366ed4b99f677c88 Author: Mike Frysinger gentoo org> AuthorDate: Wed Aug 10 04:32:36 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Aug 10 04:43:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f33884 dev-libs/libunistring: clean up code to use more EAPI=5 logic dev-libs/libunistring/libunistring-0.9.6.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dev-libs/libunistring/libunistring-0.9.6.ebuild b/dev-libs/libunistring/libunistring-0.9.6.ebuild index a276a20..08f726a 100644 --- a/dev-libs/libunistring/libunistring-0.9.6.ebuild +++ b/dev-libs/libunistring/libunistring-0.9.6.ebuild @@ -1,6 +1,5 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ EAPI="5" @@ -24,13 +23,11 @@ src_configure() { } src_install() { - dodoc AUTHORS README ChangeLog || die "dodoc failed" + default if use doc; then - dohtml doc/*.html || die "dohtml failed" - doinfo doc/*.info || die "doinfo failed" + dohtml doc/*.html + doinfo doc/*.info fi - emake DESTDIR="${D}" install || die "Install failed" - prune_libtool_files }