Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/yaggui/files/, net-p2p/yaggui/
Date: Thu, 26 May 2016 10:54:24
Message-Id: 1464259974.537598e75ae0e72953ced392d8ce8fc4d7e91f58.chewi@gentoo
1 commit: 537598e75ae0e72953ced392d8ce8fc4d7e91f58
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 10:52:54 2016 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 10:52:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=537598e7
7
8 net-p2p/yaggui: Remove very dead obsolete package
9
10 net-p2p/yaggui/Manifest | 1 -
11 net-p2p/yaggui/files/yaggui.sh | 19 ----------------
12 net-p2p/yaggui/metadata.xml | 11 ----------
13 net-p2p/yaggui/yaggui-0.9.2.ebuild | 44 --------------------------------------
14 4 files changed, 75 deletions(-)
15
16 diff --git a/net-p2p/yaggui/Manifest b/net-p2p/yaggui/Manifest
17 deleted file mode 100644
18 index b90f06f..0000000
19 --- a/net-p2p/yaggui/Manifest
20 +++ /dev/null
21 @@ -1 +0,0 @@
22 -DIST Yaggui-src-0.9.2.zip 297601 SHA256 21e2f3176bf73c851dd2359a862c48dcd318ae3babacf1bbfde71ea3e29ad130 SHA512 299c3257e57b9256633a9477c175108b532d45a04c73aa6d52e38ee7c11895754e0530009f5100f8b0003e83c3851a9083914e11a46d377dde1b21c86d32d4f7 WHIRLPOOL 0739a0d3309b501fe869aa24eafc9567206b0afd0291a10a23e0fadcb6c0056d7e4c430c8d78e62208254257b9ca84dbfbf5cc36b33f3c97cb16d5b6952eb0d8
23
24 diff --git a/net-p2p/yaggui/files/yaggui.sh b/net-p2p/yaggui/files/yaggui.sh
25 deleted file mode 100644
26 index 7b7c89b..0000000
27 --- a/net-p2p/yaggui/files/yaggui.sh
28 +++ /dev/null
29 @@ -1,19 +0,0 @@
30 -#!/bin/bash
31 -# Copyright 1999-2004 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -if [ ! "$(ps -A | grep -e giftd)" ]
36 -then
37 - echo "Error! Unable to find giFT daemon!"
38 - echo "Attempting to start the giFT daemon..."
39 - giftd > /dev/null &
40 - if [ ! "$(ps -A | grep -e giftd)" ]
41 - then
42 - echo "Could not start the giFT daemon! Continuing to load Yaggui..."
43 - else
44 - echo "giFT daemon started, continuing to load Yaggui..."
45 - fi
46 -fi
47 -
48 -java -jar /usr/share/yaggui/lib/Yaggui.jar
49
50 diff --git a/net-p2p/yaggui/metadata.xml b/net-p2p/yaggui/metadata.xml
51 deleted file mode 100644
52 index 820004a..0000000
53 --- a/net-p2p/yaggui/metadata.xml
54 +++ /dev/null
55 @@ -1,11 +0,0 @@
56 -<?xml version="1.0" encoding="UTF-8"?>
57 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
58 -<pkgmetadata>
59 - <maintainer type="project">
60 - <email>java@g.o</email>
61 - <name>Java</name>
62 - </maintainer>
63 - <upstream>
64 - <remote-id type="sourceforge">yaggui</remote-id>
65 - </upstream>
66 -</pkgmetadata>
67
68 diff --git a/net-p2p/yaggui/yaggui-0.9.2.ebuild b/net-p2p/yaggui/yaggui-0.9.2.ebuild
69 deleted file mode 100644
70 index a628d5b..0000000
71 --- a/net-p2p/yaggui/yaggui-0.9.2.ebuild
72 +++ /dev/null
73 @@ -1,44 +0,0 @@
74 -# Copyright 1999-2016 Gentoo Foundation
75 -# Distributed under the terms of the GNU General Public License v2
76 -# $Id$
77 -
78 -inherit java-pkg-2 java-ant-2
79 -
80 -MY_P="${PN}-src-${PV}"
81 -
82 -DESCRIPTION="Yet Another Gift GUI in java"
83 -HOMEPAGE="http://yaggui.sourceforge.net/"
84 -SRC_URI="mirror://sourceforge/yaggui/${MY_P/y/Y}.zip"
85 -LICENSE="GPL-2"
86 -SLOT="0"
87 -KEYWORDS="~amd64 x86"
88 -IUSE=""
89 -
90 -COMMON_DEP="=dev-java/jgoodies-looks-1.2*"
91 -RDEPEND=">=virtual/jre-1.4
92 - ${COMMON_DEP}"
93 -DEPEND=">=virtual/jdk-1.4
94 - app-arch/unzip
95 - ${COMMON_DEP}"
96 -
97 -S="${WORKDIR}/${MY_P}"
98 -
99 -EANT_BUILD_TARGET="build-jar"
100 -
101 -src_unpack() {
102 - unpack ${A}
103 - cd "${S}"
104 -
105 - sed -e '/<unzip/d' -i build.xml || die
106 - rm -v lib/*.jar || die
107 - java-pkg_jar-from jgoodies-looks-1.2 looks.jar lib/plastic-1.1.2.jar
108 - java-pkg_filter-compiler jikes
109 -}
110 -
111 -src_install() {
112 - java-pkg_newjar build/Yaggui.jar
113 -
114 - java-pkg_dolauncher ${PN} --main de.hampelratte.yaggui.Main
115 -
116 - dodoc doc/{changelog,Readme.txt} || die
117 -}