annotate dev-java/maven-bin/maven-bin-3.0.0.ebuild @ 248:2dcbfb21d30b

fix the 3.0.0 ebuild
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 04 Oct 2010 19:46:49 +0200
parents 97d85f6a8c32
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
246
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 # Copyright 1999-2010 Gentoo Foundation
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2 # Distributed under the terms of the GNU General Public License v2
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 # $Header: /var/cvsroot/gentoo-x86/dev-java/maven-bin/maven-bin-2.2.1.ebuild,v 1.3 2010/04/26 11:05:56 phajdan.jr Exp $
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5 inherit java-pkg-2
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6 inherit versionator
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
7
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
8 MY_P="apache-maven-3.0"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10 DESCRIPTION="Project Management and Comprehension Tool for Java"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
11 SRC_URI="mirror://apache/maven/binaries/${MY_P}-bin.tar.gz"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12 HOMEPAGE="http://maven.apache.org/"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
13 LICENSE="Apache-2.0"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
14 SLOT="3.0"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
15 KEYWORDS="~amd64 ~ppc ~x86"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
16
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
17 RDEPEND=">=virtual/jdk-1.5
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
18 app-admin/eselect-maven"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
19
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
20 IUSE=""
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
21
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
22 S="${WORKDIR}/${MY_P}"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
23
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
24 MAVEN=${PN}-${SLOT}
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
25 MAVEN_SHARE="/usr/share/${MAVEN}"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
26
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
27 src_unpack() {
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
28 unpack ${A}
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
29
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
30 rm -v "${S}"/bin/*.bat || die
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
31 }
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
32
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
33 src_install() {
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
34 dodir "${MAVEN_SHARE}"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
35 cp -Rp bin boot conf lib "${D}/${MAVEN_SHARE}" || die "failed to copy"
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
36
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
37 java-pkg_regjar "${D}/${MAVEN_SHARE}"/lib/*.jar
248
2dcbfb21d30b fix the 3.0.0 ebuild
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 246
diff changeset
38
2dcbfb21d30b fix the 3.0.0 ebuild
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 246
diff changeset
39 # the Maven distro comes with really weird permissions in the tarball
2dcbfb21d30b fix the 3.0.0 ebuild
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 246
diff changeset
40 # which will cause the ebuild to preserve these weird permissions, leaving
2dcbfb21d30b fix the 3.0.0 ebuild
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 246
diff changeset
41 # users with a broken maven installationy
2dcbfb21d30b fix the 3.0.0 ebuild
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 246
diff changeset
42 chown root: "${D}/${MAVEN_SHARE}"/lib/*.jar "${D}/${MAVEN_SHARE}"/boot/*.jar
2dcbfb21d30b fix the 3.0.0 ebuild
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 246
diff changeset
43 chmod 644 "${D}/${MAVEN_SHARE}"/lib/*.jar "${D}/${MAVEN_SHARE}"/boot/*.jar
246
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
44
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
45 dodoc NOTICE.txt README.txt || die
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
46
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
47 dodir /usr/bin
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
48 dosym "${MAVEN_SHARE}/bin/mvn" /usr/bin/mvn-${SLOT}
97d85f6a8c32 oops, this was missing
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
49 }
248
2dcbfb21d30b fix the 3.0.0 ebuild
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 246
diff changeset
50