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 62E53139085 for ; Fri, 23 Dec 2016 09:57:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D36C2E0C20; Fri, 23 Dec 2016 09:57:49 +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 B0D94E0C20 for ; Fri, 23 Dec 2016 09:57:49 +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 E7ACB3411D7 for ; Fri, 23 Dec 2016 09:57:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E71224E4 for ; Fri, 23 Dec 2016 09:57:47 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1482487066.079e9f3f8e7c40da207b8a8020f9ff5b908d4cae.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/idlastro/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-astronomy/idlastro/idlastro-20161220.ebuild X-VCS-Directories: sci-astronomy/idlastro/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 079e9f3f8e7c40da207b8a8020f9ff5b908d4cae X-VCS-Branch: master Date: Fri, 23 Dec 2016 09:57:47 +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: aa85df18-0e65-4375-8f9e-c839d6d662ca X-Archives-Hash: e5fe61db6d9f07a9dc04b9865cec9788 commit: 079e9f3f8e7c40da207b8a8020f9ff5b908d4cae Author: Justin Lecher gentoo org> AuthorDate: Fri Dec 23 09:57:13 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Dec 23 09:57:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=079e9f3f sci-astronomy/idlastro: Copy instead of symlinking Package-Manager: Portage-2.3.3, Repoman-2.3.1 Signed-off-by: Justin Lecher gentoo.org> sci-astronomy/idlastro/idlastro-20161220.ebuild | 32 ++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/sci-astronomy/idlastro/idlastro-20161220.ebuild b/sci-astronomy/idlastro/idlastro-20161220.ebuild index 307bca8..e3dabdb 120000 --- a/sci-astronomy/idlastro/idlastro-20161220.ebuild +++ b/sci-astronomy/idlastro/idlastro-20161220.ebuild @@ -1 +1,31 @@ -idlastro-99999999.ebuild \ No newline at end of file +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +if [[ ${PV} != 99999999 ]]; then + SRC_URI="http://idlastro.gsfc.nasa.gov/ftp/astron.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + S="${WORKDIR}" +else + inherit git-r3 + GIT_ECLASS="git-r3" + EGIT_REPO_URI=( "git://github.com/wlandsman/IDLAstro.git" ) + KEYWORDS="" +fi + +DESCRIPTION="Astronomical user routines for IDL" +HOMEPAGE="http://idlastro.gsfc.nasa.gov/" + +LICENSE="BSD-2 BSD" +SLOT="0" +IUSE="" +DEPEND="" +RDEPEND="dev-lang/gdl" + +src_install() { + insinto /usr/share/gnudatalanguage/${PN} + doins -r pro/* + dodoc *txt text/* +}