summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2016-05-26 11:52:54 +0100
committerJames Le Cuirot <chewi@gentoo.org>2016-05-26 11:52:54 +0100
commit537598e75ae0e72953ced392d8ce8fc4d7e91f58 (patch)
tree8fd99b450c4842c962d107c011449af1073efe01 /net-p2p
parentgit-r3.eclass: Support switching refs with EVCS_OFFLINE, #575898 (diff)
downloadgentoo-537598e75ae0e72953ced392d8ce8fc4d7e91f58.tar.gz
gentoo-537598e75ae0e72953ced392d8ce8fc4d7e91f58.tar.bz2
gentoo-537598e75ae0e72953ced392d8ce8fc4d7e91f58.zip
net-p2p/yaggui: Remove very dead obsolete package
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/yaggui/Manifest1
-rw-r--r--net-p2p/yaggui/files/yaggui.sh19
-rw-r--r--net-p2p/yaggui/metadata.xml11
-rw-r--r--net-p2p/yaggui/yaggui-0.9.2.ebuild44
4 files changed, 0 insertions, 75 deletions
diff --git a/net-p2p/yaggui/Manifest b/net-p2p/yaggui/Manifest
deleted file mode 100644
index b90f06f6fa4e..000000000000
--- a/net-p2p/yaggui/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Yaggui-src-0.9.2.zip 297601 SHA256 21e2f3176bf73c851dd2359a862c48dcd318ae3babacf1bbfde71ea3e29ad130 SHA512 299c3257e57b9256633a9477c175108b532d45a04c73aa6d52e38ee7c11895754e0530009f5100f8b0003e83c3851a9083914e11a46d377dde1b21c86d32d4f7 WHIRLPOOL 0739a0d3309b501fe869aa24eafc9567206b0afd0291a10a23e0fadcb6c0056d7e4c430c8d78e62208254257b9ca84dbfbf5cc36b33f3c97cb16d5b6952eb0d8
diff --git a/net-p2p/yaggui/files/yaggui.sh b/net-p2p/yaggui/files/yaggui.sh
deleted file mode 100644
index 7b7c89b43cbc..000000000000
--- a/net-p2p/yaggui/files/yaggui.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-if [ ! "$(ps -A | grep -e giftd)" ]
-then
- echo "Error! Unable to find giFT daemon!"
- echo "Attempting to start the giFT daemon..."
- giftd > /dev/null &
- if [ ! "$(ps -A | grep -e giftd)" ]
- then
- echo "Could not start the giFT daemon! Continuing to load Yaggui..."
- else
- echo "giFT daemon started, continuing to load Yaggui..."
- fi
-fi
-
-java -jar /usr/share/yaggui/lib/Yaggui.jar
diff --git a/net-p2p/yaggui/metadata.xml b/net-p2p/yaggui/metadata.xml
deleted file mode 100644
index 820004a4eb9c..000000000000
--- a/net-p2p/yaggui/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>java@gentoo.org</email>
- <name>Java</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">yaggui</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-p2p/yaggui/yaggui-0.9.2.ebuild b/net-p2p/yaggui/yaggui-0.9.2.ebuild
deleted file mode 100644
index a628d5b858a7..000000000000
--- a/net-p2p/yaggui/yaggui-0.9.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit java-pkg-2 java-ant-2
-
-MY_P="${PN}-src-${PV}"
-
-DESCRIPTION="Yet Another Gift GUI in java"
-HOMEPAGE="http://yaggui.sourceforge.net/"
-SRC_URI="mirror://sourceforge/yaggui/${MY_P/y/Y}.zip"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE=""
-
-COMMON_DEP="=dev-java/jgoodies-looks-1.2*"
-RDEPEND=">=virtual/jre-1.4
- ${COMMON_DEP}"
-DEPEND=">=virtual/jdk-1.4
- app-arch/unzip
- ${COMMON_DEP}"
-
-S="${WORKDIR}/${MY_P}"
-
-EANT_BUILD_TARGET="build-jar"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- sed -e '/<unzip/d' -i build.xml || die
- rm -v lib/*.jar || die
- java-pkg_jar-from jgoodies-looks-1.2 looks.jar lib/plastic-1.1.2.jar
- java-pkg_filter-compiler jikes
-}
-
-src_install() {
- java-pkg_newjar build/Yaggui.jar
-
- java-pkg_dolauncher ${PN} --main de.hampelratte.yaggui.Main
-
- dodoc doc/{changelog,Readme.txt} || die
-}