Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/libmatthew-java/
Date: Mon, 01 Apr 2019 08:53:18
Message-Id: 1554108699.3ef26fc453341a6e767b623c8f3d8b3fbd442c51.monsieurp@gentoo
1 commit: 3ef26fc453341a6e767b623c8f3d8b3fbd442c51
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 31 20:08:44 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 1 08:51:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ef26fc4
7
8 dev-java/libmatthew-java: clean up old.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 .../libmatthew-java-0.7.2-r1.ebuild | 44 ----------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/dev-java/libmatthew-java/libmatthew-java-0.7.2-r1.ebuild b/dev-java/libmatthew-java/libmatthew-java-0.7.2-r1.ebuild
17 deleted file mode 100644
18 index cb98a553c6b..00000000000
19 --- a/dev-java/libmatthew-java/libmatthew-java-0.7.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=0
26 -
27 -JAVA_PKG_IUSE="doc source"
28 -inherit eutils java-pkg-2 flag-o-matic toolchain-funcs
29 -
30 -DESCRIPTION="A selection of libraries for Java"
31 -HOMEPAGE="http://www.matthew.ath.cx/projects/java/"
32 -SRC_URI="http://www.matthew.ath.cx/projects/java/${P}.tar.gz"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 ppc64 x86"
37 -IUSE=""
38 -
39 -RDEPEND=">=virtual/jre-1.5"
40 -DEPEND=">=virtual/jdk-1.5"
41 -
42 -src_unpack() {
43 - unpack ${A}
44 - epatch "${FILESDIR}"/${P}-makefile-fixes.patch
45 - rm -v "${S}"/cx/ath/matthew/debug/Debug.java || die "rm failed"
46 -}
47 -
48 -src_compile() {
49 - CC=$(tc-getCC) LD=$(tc-getCC) INCLUDES="$(java-pkg_get-jni-cflags)" \
50 - emake -j1 JARDIR=/usr/share/libmatthew-java/lib JCFLAGS="$(java-pkg_javac-args)" all $(usev doc) || die "emake failed"
51 -}
52 -
53 -src_install() {
54 - java-pkg_newjar cgi-0.5.jar cgi.jar
55 - java-pkg_newjar debug-disable-1.1.jar debug-disable.jar
56 - java-pkg_newjar debug-enable-1.1.jar debug-enable.jar
57 - java-pkg_newjar hexdump-0.2.jar hexdump.jar
58 - java-pkg_newjar io-0.1.jar io.jar
59 - java-pkg_newjar unix-0.5.jar unix.jar
60 - java-pkg_doso libcgi-java.so
61 - java-pkg_doso libunix-java.so
62 - dodoc INSTALL changelog README || die
63 - use source && java-pkg_dosrc cx/
64 - use doc && java-pkg_dojavadoc doc
65 -}