Gentoo Archives: gentoo-commits

From: "Patrice Clement (monsieurp)" <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/scala-ide: metadata.xml scala-ide-4.1.0.ebuild ChangeLog
Date: Sun, 28 Jun 2015 11:55:20
Message-Id: 20150628115510.E455E744@oystercatcher.gentoo.org
1 monsieurp 15/06/28 11:55:10
2
3 Added: metadata.xml scala-ide-4.1.0.ebuild ChangeLog
4 Log:
5 Introducing Scala IDE to Portage. Fix bug 482724.
6
7 Signed-off-by: Patrice Clement <monsieurp@g.o>
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)
9
10 Revision Changes Path
11 1.1 dev-util/scala-ide/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scala-ide/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scala-ide/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>java</herd>
22 <maintainer>
23 <email>monsieurp@g.o</email>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29 1.1 dev-util/scala-ide/scala-ide-4.1.0.ebuild
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scala-ide/scala-ide-4.1.0.ebuild?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scala-ide/scala-ide-4.1.0.ebuild?rev=1.1&content-type=text/plain
33
34 Index: scala-ide-4.1.0.ebuild
35 ===================================================================
36 # Copyright 1999-2015 Gentoo Foundation
37 # Distributed under the terms of the GNU General Public License v2
38 # $Header: /var/cvsroot/gentoo-x86/dev-util/scala-ide/scala-ide-4.1.0.ebuild,v 1.1 2015/06/28 11:55:10 monsieurp Exp $
39 EAPI=5
40
41 inherit java-pkg-opt-2
42
43 SRC_URI_AMD64="http://downloads.typesafe.com/scalaide-pack/${PV}-vfinal-luna-211-20150525/scala-SDK-${PV}-vfinal-2.11-linux.gtk.x86_64.tar.gz"
44 SRC_URI_X86="http://downloads.typesafe.com/scalaide-pack/${PV}-vfinal-luna-211-20150525/scala-SDK-${PV}-vfinal-2.11-linux.gtk.x86.tar.gz"
45
46 DESCRIPTION="The Scala IDE"
47 HOMEPAGE="http://www.scala-ide.org"
48 KEYWORDS="~amd64 ~x86"
49 SRC_URI="
50 amd64? ( ${SRC_URI_AMD64} )
51 x86? ( ${SRC_URI_X86} )
52 "
53
54 SLOT="0"
55 LICENSE="BSD"
56
57 DEPEND=">=virtual/jdk-1.6
58 || (
59 dev-lang/scala
60 dev-lang/scala-bin
61 )"
62 RDEPEND=">=virtual/jre-1.6"
63
64 MY_D="/opt"
65
66 src_unpack() {
67 unpack ${A}
68 mv "${WORKDIR}"/eclipse "${WORKDIR}"/"${P}"
69 }
70
71 src_prepare() {
72 mv "${WORKDIR}"/"${P}"/eclipse "${WORKDIR}"/"${P}"/"${PN}"
73 }
74
75 src_install() {
76 cd "${D}" || die
77 dodir "${MY_D}" || die
78 insinto "${MY_D}"
79 doins -r "${WORKDIR}"/"${P}" || die
80 insopts -m 0755
81 insinto "${MY_D}"/"${P}"
82 doins "${WORKDIR}"/"${P}"/"${PN}" || die
83 dosym ${MY_D}/${P}/${PN} /usr/bin/${PN} || die
84 }
85
86
87
88 1.1 dev-util/scala-ide/ChangeLog
89
90 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scala-ide/ChangeLog?rev=1.1&view=markup
91 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/scala-ide/ChangeLog?rev=1.1&content-type=text/plain
92
93 Index: ChangeLog
94 ===================================================================
95 # ChangeLog for dev-util/scala-ide
96 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
97 # $Header: /var/cvsroot/gentoo-x86/dev-util/scala-ide/ChangeLog,v 1.1 2015/06/28 11:55:10 monsieurp Exp $
98
99 *scala-ide-4.1.0 (28 Jun 2015)
100
101 28 Jun 2015; Patrice Clement <monsieurp@g.o> +metadata.xml,
102 +scala-ide-4.1.0.ebuild:
103 Introducing Scala IDE to Portage. Fix bug 482724.