From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1092270-garchives=archives.gentoo.org@lists.gentoo.org> 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 D24A0138334 for <garchives@archives.gentoo.org>; Thu, 23 May 2019 20:30:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0C9AE07F1; Thu, 23 May 2019 20:30:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2AA8E07F1 for <gentoo-commits@lists.gentoo.org>; Thu, 23 May 2019 20:30:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C604344ECF for <gentoo-commits@lists.gentoo.org>; Thu, 23 May 2019 20:30:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EEB25B5 for <gentoo-commits@lists.gentoo.org>; Thu, 23 May 2019 20:30:13 +0000 (UTC) From: "Anthony G. Basile" <blueness@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" <blueness@gentoo.org> Message-ID: <1558643407.7bb0251e339579c66670b2532df98d0b396ffb7c.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ntpsec/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ntpsec/ntpsec-1.1.3.ebuild net-misc/ntpsec/ntpsec-9999.ebuild X-VCS-Directories: net-misc/ntpsec/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 7bb0251e339579c66670b2532df98d0b396ffb7c X-VCS-Branch: master Date: Thu, 23 May 2019 20:30:13 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7ed82803-25f5-404b-b3ef-a0d9bf188918 X-Archives-Hash: db3d13936b975b597e2ed471c7e554fc commit: 7bb0251e339579c66670b2532df98d0b396ffb7c Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Thu May 23 20:29:54 2019 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Thu May 23 20:30:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb0251e net-misc/ntpsec: fix minor error when USE=-doc Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 net-misc/ntpsec/ntpsec-1.1.3.ebuild | 2 +- net-misc/ntpsec/ntpsec-9999.ebuild | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/net-misc/ntpsec/ntpsec-1.1.3.ebuild b/net-misc/ntpsec/ntpsec-1.1.3.ebuild index 9a7db4869a3..b227382f452 100644 --- a/net-misc/ntpsec/ntpsec-1.1.3.ebuild +++ b/net-misc/ntpsec/ntpsec-1.1.3.ebuild @@ -145,7 +145,7 @@ src_install() { cp -Rv "${S}"/etc/ntp.d/ "${ED}"/etc/ # move doc files to /usr/share/doc/"${P}" - mv "${ED}"/usr/share/doc/"${PN}" "${ED}"/usr/share/doc/"${P}"/html + use doc && mv -v "${ED}"/usr/share/doc/"${PN}" "${ED}"/usr/share/doc/"${P}"/html } pkg_postinst() { diff --git a/net-misc/ntpsec/ntpsec-9999.ebuild b/net-misc/ntpsec/ntpsec-9999.ebuild index 44675355356..b227382f452 100644 --- a/net-misc/ntpsec/ntpsec-9999.ebuild +++ b/net-misc/ntpsec/ntpsec-9999.ebuild @@ -143,6 +143,9 @@ src_install() { # Install the configuration file and sample configuration cp -v "${FILESDIR}"/ntp.conf "${ED}"/etc/ntp.conf cp -Rv "${S}"/etc/ntp.d/ "${ED}"/etc/ + + # move doc files to /usr/share/doc/"${P}" + use doc && mv -v "${ED}"/usr/share/doc/"${PN}" "${ED}"/usr/share/doc/"${P}"/html } pkg_postinst() {