Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/aqua/
Date: Tue, 05 Feb 2019 18:46:19
Message-Id: 1549392306.1141e6d1a270217df532295bf5c7b55f5abaec8a.bkohler@gentoo
1 commit: 1141e6d1a270217df532295bf5c7b55f5abaec8a
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 5 18:15:32 2019 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 5 18:45:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1141e6d1
7
8 sci-chemistry/aqua: don't reference ${DISTDIR} in pkg_nofetch
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 sci-chemistry/aqua/aqua-3.2-r3.ebuild | 8 +++++---
14 1 file changed, 5 insertions(+), 3 deletions(-)
15
16 diff --git a/sci-chemistry/aqua/aqua-3.2-r3.ebuild b/sci-chemistry/aqua/aqua-3.2-r3.ebuild
17 index 74e4e60416f..78d987ec146 100644
18 --- a/sci-chemistry/aqua/aqua-3.2-r3.ebuild
19 +++ b/sci-chemistry/aqua/aqua-3.2-r3.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26 @@ -29,9 +29,11 @@ PATCHES=(
27
28 pkg_nofetch() {
29 elog "Please visit http://www.ebi.ac.uk/thornton-srv/software/PROCHECK/download.html"
30 - elog "And follow the instruction for downloading ${PN}${PV}.tar.gz -> ${DISTDIR}/${PN}${PV}.tar.gz."
31 + elog "And follow the instructions for downloading the following into your DISTDIR"
32 + elog "directory:"
33 + elog " ${PN}${PV}.tar.gz"
34 if use doc; then
35 - elog "nmr_manual.tar.gz -> ${DISTDIR}/${P}-nmr_manual.tar.gz"
36 + elog " nmr_manual.tar.gz -> ${P}-nmr_manual.tar.gz"
37 fi
38 }