Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/idlcoyote/
Date: Fri, 23 Dec 2016 14:23:36
Message-Id: 1482502951.1faac3ab322638e63f545d92a102f247c26973f0.mrueg@gentoo
1 commit: 1faac3ab322638e63f545d92a102f247c26973f0
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 23 14:22:24 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 23 14:22:31 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1faac3ab
7
8 sci-libs/idlcoyote: Desymlink
9
10 sci-libs/idlcoyote/idlcoyote-20161220.ebuild | 34 +++++++++++++++++++++++++++-
11 1 file changed, 33 insertions(+), 1 deletion(-)
12
13 diff --git a/sci-libs/idlcoyote/idlcoyote-20161220.ebuild b/sci-libs/idlcoyote/idlcoyote-20161220.ebuild
14 deleted file mode 120000
15 index 51dbdff..00000000
16 --- a/sci-libs/idlcoyote/idlcoyote-20161220.ebuild
17 +++ /dev/null
18 @@ -1 +0,0 @@
19 -idlcoyote-99999999.ebuild
20 \ No newline at end of file
21
22 diff --git a/sci-libs/idlcoyote/idlcoyote-20161220.ebuild b/sci-libs/idlcoyote/idlcoyote-20161220.ebuild
23 new file mode 100644
24 index 00000000..c7f60d3
25 --- /dev/null
26 +++ b/sci-libs/idlcoyote/idlcoyote-20161220.ebuild
27 @@ -0,0 +1,33 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +
34 +if [[ ${PV} != 99999999 ]]; then
35 + SRC_URI="http://www.idlcoyote.com/programs/zip_files/coyoteprograms.zip -> ${P}.zip"
36 + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
37 + S="${WORKDIR}/coyote"
38 + DEPEND="app-arch/unzip"
39 +else
40 + inherit git-r3
41 + GIT_ECLASS="git-r3"
42 + EGIT_REPO_URI=( "git://github.com/idl-coyote/coyote.git" )
43 + KEYWORDS=""
44 +fi
45 +
46 +DESCRIPTION="GDL library from D. Fannings IDL courses"
47 +HOMEPAGE="http://www.idlcoyote.com/"
48 +
49 +LICENSE="BSD GPL-2"
50 +SLOT="0"
51 +IUSE=""
52 +
53 +RDEPEND="dev-lang/gdl"
54 +
55 +src_install() {
56 + dodoc README.txt
57 + rm README.txt || die
58 + insinto /usr/share/gnudatalanguage/coyote
59 + doins -r *
60 +}