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 901E61381F1 for ; Wed, 4 Apr 2018 21:10:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26F2BE0A96; Wed, 4 Apr 2018 21:10:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 048B6E09E1 for ; Wed, 4 Apr 2018 21:10:16 +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 1A0E3335CDD for ; Wed, 4 Apr 2018 21:10:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 463BE278 for ; Wed, 4 Apr 2018 21:10:08 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1522876171.dda86851c294b8efd0c3b5f7dbfab53f9980ce15.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/dawn/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/dawn/dawn-3.90b-r1.ebuild X-VCS-Directories: media-gfx/dawn/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: dda86851c294b8efd0c3b5f7dbfab53f9980ce15 X-VCS-Branch: master Date: Wed, 4 Apr 2018 21:10:08 +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: 2de44f03-1a3e-4c63-a2ab-2e92b658c272 X-Archives-Hash: 72a5f86071d2a81d0c2005fb2f019448 commit: dda86851c294b8efd0c3b5f7dbfab53f9980ce15 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Apr 4 20:23:53 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Apr 4 21:09:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda86851 media-gfx/dawn: Minor makeover, sorting, s/MYP/MY_P/, DOCS Package-Manager: Portage-2.3.28, Repoman-2.3.9 media-gfx/dawn/dawn-3.90b-r1.ebuild | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/media-gfx/dawn/dawn-3.90b-r1.ebuild b/media-gfx/dawn/dawn-3.90b-r1.ebuild index 739ba96e10a..b8293cd2451 100644 --- a/media-gfx/dawn/dawn-3.90b-r1.ebuild +++ b/media-gfx/dawn/dawn-3.90b-r1.ebuild @@ -2,13 +2,14 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 + inherit toolchain-funcs versionator -MYP=${PN}_$(replace_version_separator 1 _) +MY_P=${PN}_$(replace_version_separator 1 _) DESCRIPTION="3D geometrical postscript renderer" HOMEPAGE="http://geant4.kek.jp/~tanaka/DAWN/About_DAWN.html" -SRC_URI="http://geant4.kek.jp/~tanaka/src/${MYP}.tgz" +SRC_URI="http://geant4.kek.jp/~tanaka/src/${MY_P}.tgz" LICENSE="public-domain" SLOT="0" @@ -17,19 +18,21 @@ KEYWORDS="~amd64 ~hppa ~ppc ~x86" IUSE="doc opengl X" RDEPEND="dev-lang/tk:* - X? ( x11-libs/libX11 ) - opengl? ( virtual/opengl )" + opengl? ( virtual/opengl ) + X? ( x11-libs/libX11 )" DEPEND="${RDEPEND} app-shells/tcsh doc? ( virtual/latex-base )" -S="${WORKDIR}/${MYP}" +S="${WORKDIR}/${MY_P}" PATCHES=( "${FILESDIR}"/${P}-no-interactive.patch "${FILESDIR}"/${P}-gcc7.patch ) +DOCS=( README.txt ) + src_prepare() { default @@ -37,7 +40,7 @@ src_prepare() { -e '/strip/d' Makefile*in || die if use X; then - mv -f "${S}"/configure_xwin "${S}"/configure || die + mv -f configure_xwin configure || die fi tc-export CXX @@ -48,7 +51,7 @@ src_install() { if use doc; then pdflatex DOC/G4PRIM_FORMAT_24.tex || die "pdf generation failed" - DOCS=( README.txt DOC/*.pdf ) + DOCS+=( DOC/*.pdf ) HTML_DOCS=( DOC/*.html ) fi