Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/java:master commit in: dev-java/zonelayout/
Date: Thu, 01 Oct 2015 16:52:08
Message-Id: 1443718189.07cca95995e75b5cd1ccbb37c67b94aaeac0b6c5.monsieurp@gentoo
1 commit: 07cca95995e75b5cd1ccbb37c67b94aaeac0b6c5
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 16:49:49 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 16:49:49 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=07cca959
7
8 dev-java/zonelayout: HOMEPAGE dead and outdated. Cleaning it up. Fixes bug 260493.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11
12 dev-java/zonelayout/Manifest | 1 -
13 dev-java/zonelayout/metadata.xml | 6 -----
14 dev-java/zonelayout/zonelayout-1.0.ebuild | 38 -------------------------------
15 3 files changed, 45 deletions(-)
16
17 diff --git a/dev-java/zonelayout/Manifest b/dev-java/zonelayout/Manifest
18 deleted file mode 100644
19 index 7ac409e..0000000
20 --- a/dev-java/zonelayout/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST zonelayout-1.0.zip 929021 SHA256 415125fcf8b52cfc312cbe9b628f44160ff29fe636a57b9d8ce45ba73710aa1d
24
25 diff --git a/dev-java/zonelayout/metadata.xml b/dev-java/zonelayout/metadata.xml
26 deleted file mode 100644
27 index 604e0a4..0000000
28 --- a/dev-java/zonelayout/metadata.xml
29 +++ /dev/null
30 @@ -1,6 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 - <herd>java</herd>
35 -</pkgmetadata>
36 -
37
38 diff --git a/dev-java/zonelayout/zonelayout-1.0.ebuild b/dev-java/zonelayout/zonelayout-1.0.ebuild
39 deleted file mode 100644
40 index bbff3c5..0000000
41 --- a/dev-java/zonelayout/zonelayout-1.0.ebuild
42 +++ /dev/null
43 @@ -1,38 +0,0 @@
44 -# Copyright 1999-2015 Gentoo Foundation
45 -# Distributed under the terms of the GNU General Public License v2
46 -# $Id$
47 -
48 -JAVA_PKG_IUSE="doc source"
49 -
50 -inherit java-pkg-2 java-ant-2
51 -
52 -DESCRIPTION="Simple, intuitive, powerful, source-code-based system
53 - for designing Graphical User Interfaces"
54 -HOMEPAGE="http://www.zonelayout.com/index.php"
55 -SRC_URI="http://zonelayout.googlecode.com/files/${P}.zip"
56 -
57 -LICENSE="LGPL-2.1"
58 -SLOT="0"
59 -KEYWORDS="~amd64"
60 -IUSE=""
61 -RDEPEND=">=virtual/jre-1.4"
62 -DEPEND=">=virtual/jdk-1.4
63 - app-arch/unzip"
64 -
65 -src_unpack() {
66 - unpack ${A}
67 - cd "${S}"
68 - rm *.jar
69 - mkdir "classes"
70 -}
71 -
72 -src_compile() {
73 - ejavac -d classes `find src/ -type f -name \*.java -print0 | xargs --null`
74 - jar cf zonelayout.jar -C classes/ .
75 -}
76 -
77 -src_install() {
78 - java-pkg_dojar "${PN}.jar"
79 - use doc && java-pkg_dojavadoc javadoc
80 - use source && java-pkg_dosrc src/*
81 -}