Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/topcat/
Date: Fri, 07 Jun 2013 23:48:30
Message-Id: 1370648890.3a4ef50b4179805cc4b594f007fc6e357dfaa975.bicatali@gentoo
1 commit: 3a4ef50b4179805cc4b594f007fc6e357dfaa975
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 7 23:48:10 2013 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 7 23:48:10 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3a4ef50b
7
8 sci-astronomy/topcat: Version bump
9
10 Package-Manager: portage-2.2.01.21938-prefix
11 RepoMan-Options: --force
12
13 ---
14 sci-astronomy/topcat/ChangeLog | 8 ++++++--
15 sci-astronomy/topcat/topcat-4.0b.ebuild | 35 +++++++++++++++++++++++++++++++++
16 2 files changed, 41 insertions(+), 2 deletions(-)
17
18 diff --git a/sci-astronomy/topcat/ChangeLog b/sci-astronomy/topcat/ChangeLog
19 index 17fb16e..9a22be8 100644
20 --- a/sci-astronomy/topcat/ChangeLog
21 +++ b/sci-astronomy/topcat/ChangeLog
22 @@ -1,7 +1,12 @@
23 # ChangeLog for sci-astronomy/topcat
24 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
25 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
26 # $Header: $
27
28 +*topcat-4.0b (07 Jun 2013)
29 +
30 + 07 Jun 2013; Sébastien Fabbro <bicatali@g.o> +topcat-4.0b.ebuild:
31 + sci-astronomy/topcat: Version bump
32 +
33 09 Jul 2012; Sébastien Fabbro <bicatali@g.o> topcat-3.9.ebuild:
34 prefix keywording
35
36 @@ -10,4 +15,3 @@
37 22 May 2012; Sébastien Fabbro <bicatali@g.o> +metadata.xml,
38 +topcat-3.9.ebuild:
39 sci-astronomy/topcat: Initial import
40 -
41
42 diff --git a/sci-astronomy/topcat/topcat-4.0b.ebuild b/sci-astronomy/topcat/topcat-4.0b.ebuild
43 new file mode 100644
44 index 0000000..d536712
45 --- /dev/null
46 +++ b/sci-astronomy/topcat/topcat-4.0b.ebuild
47 @@ -0,0 +1,35 @@
48 +# Copyright 1999-2013 Gentoo Foundation
49 +# Distributed under the terms of the GNU General Public License v2
50 +# $Header: $
51 +
52 +EAPI=5
53 +
54 +inherit java-pkg-2
55 +
56 +DESCRIPTION="Interactive graphical viewer and editor for astronomical tables"
57 +HOMEPAGE="http://www.star.bris.ac.uk/~mbt/topcat/"
58 +SRC_COM="ftp://andromeda.star.bris.ac.uk/pub/star/${PN}/v${PV}"
59 +SRC_URI="${SRC_COM}/${PN}-lite.jar -> ${P}-lite.jar
60 + !minimal? ( ${SRC_COM}/${PN}-full.jar -> ${P}-full.jar )"
61 +
62 +LICENSE="GPL-2"
63 +SLOT="0"
64 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
65 +IUSE="+minimal"
66 +
67 +RDEPEND=">=virtual/jre-1.5"
68 +DEPEND=""
69 +
70 +S="${WORKDIR}"
71 +
72 +src_install() {
73 + java-pkg_newjar "${DISTDIR}"/${P}-lite.jar ${PN}-lite.jar
74 + java-pkg_dolauncher ${PN}-lite
75 + if use minimal; then
76 + dosym ${PN}-lite /usr/bin/${PN}
77 + else
78 + java-pkg_newjar "${DISTDIR}"/${P}-full.jar
79 + java-pkg_dolauncher ${PN}-full
80 + dosym ${PN}-full /usr/bin/${PN}
81 + fi
82 +}