summaryrefslogtreecommitdiff
path: root/media-gfx/springgraph
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /media-gfx/springgraph
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'media-gfx/springgraph')
-rw-r--r--media-gfx/springgraph/Manifest2
-rw-r--r--media-gfx/springgraph/metadata.xml15
-rw-r--r--media-gfx/springgraph/springgraph-88.ebuild35
3 files changed, 0 insertions, 52 deletions
diff --git a/media-gfx/springgraph/Manifest b/media-gfx/springgraph/Manifest
deleted file mode 100644
index 2af3a9b15bcb..000000000000
--- a/media-gfx/springgraph/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST springgraph.pl.88 29818 BLAKE2B d203bce543b0d6d8bd8519a24c3592a852971fb18219b0b34dd207724ed1db2859befcd6f69d7b00e2c6492fdabd5a8edf75bee634682f0a56a5361c9e832651 SHA512 51d7a840778478498c23d61af7e0ef0bd795953110850d0a1ec403146ce843c6eb5efa5c0c55d84a9995aecadf7657bc253dbf5a72354207d38a6e269b2f1325
-DIST springgraph_0.82-5.diff.gz 3110 BLAKE2B 8459ffffe80cba463e95677ed264030ff150375bf2a163c081e719274b0f92cba27e5d8e5bc80923e433f332ee58773a7cbd053fc9680676193e7b852b4803bb SHA512 dcfc214c116cc8040b7eedf9a4864e84bc7c0b1f036fafb6322d9433564762135d1e845bb75891a380907059f7ebba7ed72efafb733a83a517f14af327d32e9b
diff --git a/media-gfx/springgraph/metadata.xml b/media-gfx/springgraph/metadata.xml
deleted file mode 100644
index d08ab502d7ae..000000000000
--- a/media-gfx/springgraph/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>robbat2@gentoo.org</email>
- </maintainer>
- <longdescription> Springgraph will read in a .dot file description of a graph,
- which, for each node, specifies its name and which other nodes it is
- connected to, and then renders a graph. Each node is drawn as an ellipse,
- and each connection is drawn as an arrow. The node placement is a result of
- all of the nodes moving away from each other, while all nodes which are
- connected move toward each other. This movement is repeated until it
- stabilizes.</longdescription>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/media-gfx/springgraph/springgraph-88.ebuild b/media-gfx/springgraph/springgraph-88.ebuild
deleted file mode 100644
index 0247f2081e93..000000000000
--- a/media-gfx/springgraph/springgraph-88.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV="0.${PV}"
-MY_P="${PN}_${MY_PV}"
-SRC_FILE="${MY_P}.orig.tar.gz"
-SRC_DEBIAN_PATCH="${PN}_0.82-5.diff.gz"
-
-DESCRIPTION="Generate spring graphs from graphviz input files"
-HOMEPAGE="http://www.chaosreigns.com/code/springgraph"
-SRC_URI="http://www.chaosreigns.com/code/springgraph/dl/${PN}.pl.${PV}
- mirror://debian/pool/main/${PN:0:1}/${PN}/${SRC_DEBIAN_PATCH}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="dev-perl/GD"
-
-S=${WORKDIR}
-
-PATCHES=( "${SRC_DEBIAN_PATCH%.gz}" )
-
-src_unpack() {
- cp "${DISTDIR}"/${PN}.pl.${PV} ${PN} || die
- default
-}
-
-src_install() {
- dobin ${PN}
- doman debian/${PN}.1
-}