Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-astronomy/gasgano: ChangeLog gasgano-2.4.0.ebuild
Date: Thu, 24 Feb 2011 17:57:55
Message-Id: 20110224175743.0F8D320054@flycatcher.gentoo.org
1 bicatali 11/02/24 17:57:43
2
3 Modified: ChangeLog
4 Added: gasgano-2.4.0.ebuild
5 Log:
6 Bump, switched to EAPI3
7
8 (Portage version: 2.1.9.40/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 sci-astronomy/gasgano/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/gasgano/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/gasgano/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/gasgano/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 26 May 2010 18:46:35 -0000 1.1
24 +++ ChangeLog 24 Feb 2011 17:57:42 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-astronomy/gasgano
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/ChangeLog,v 1.1 2010/05/26 18:46:35 bicatali Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/ChangeLog,v 1.2 2011/02/24 17:57:42 bicatali Exp $
31 +
32 +*gasgano-2.4.0 (24 Feb 2011)
33 +
34 + 24 Feb 2011; Sébastien Fabbro <bicatali@g.o> +gasgano-2.4.0.ebuild:
35 + Bump, switched to EAPI3
36
37 *gasgano-2.3.0 (26 May 2010)
38
39
40
41
42 1.1 sci-astronomy/gasgano/gasgano-2.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/gasgano/gasgano-2.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-astronomy/gasgano/gasgano-2.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gasgano-2.4.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/gasgano-2.4.0.ebuild,v 1.1 2011/02/24 17:57:42 bicatali Exp $
52
53 EAPI=3
54 inherit java-pkg-2
55
56 PDOC=VLT-PRO-ESO-19000-1932-V4
57
58 DESCRIPTION="ESO astronomical data file organizer"
59 HOMEPAGE="http://www.eso.org/sci/software/gasgano/"
60 SRC_URI="ftp://ftp.eso.org/pub/dfs/${PN}/${P}.tar.gz
61 doc? ( ${HOMEPAGE}/${PDOC}.pdf )"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc"
67
68 DEPEND=">=virtual/jdk-1.6"
69 RDEPEND=">=virtual/jre-1.6
70 dev-java/gnu-regexp
71 dev-java/junit
72 dev-java/jal"
73
74 src_prepare() {
75 sed -i \
76 -e "s:BASE.*=.*:BASE=${EPREFIX}/usr/share/${PN}:" \
77 -e "s:/share/:/lib/:g" \
78 bin/gasgano || die
79 }
80
81 src_install() {
82 dobin bin/* || die
83 java-pkg_dojar share/*.jar
84 insinto /usr/share/${PN}
85 doins -r config || die
86 make_desktop_entry gasgano "Gasgano FITS Organizer"
87 if use doc; then
88 insinto /usr/share/doc/${PF}
89 newins "${DISTDIR}"/${PDOC}.pdf user-manual.pdf
90 fi
91 }