summaryrefslogtreecommitdiff
path: root/sci-mathematics
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-08-13 03:04:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-08-13 03:04:49 -0500
commit00a5031b2e58fb36fc981fe226565880b4798a8b (patch)
treeb6ce2d2b06f7a32a17f7304fa0c94d5790820783 /sci-mathematics
parentec560e4b511b5d7cb09adbd406de3ddb8386156f (diff)
downloadbaldeagleos-repo-00a5031b2e58fb36fc981fe226565880b4798a8b.tar.gz
baldeagleos-repo-00a5031b2e58fb36fc981fe226565880b4798a8b.tar.xz
baldeagleos-repo-00a5031b2e58fb36fc981fe226565880b4798a8b.zip
Adding metadata
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/rw/Manifest1
-rw-r--r--sci-mathematics/rw/rw-0.10.ebuild28
2 files changed, 29 insertions, 0 deletions
diff --git a/sci-mathematics/rw/Manifest b/sci-mathematics/rw/Manifest
index 78105a509087..e0a4564706ec 100644
--- a/sci-mathematics/rw/Manifest
+++ b/sci-mathematics/rw/Manifest
@@ -1 +1,2 @@
+DIST rw-0.10.tar.gz 355838 BLAKE2B 2d7de7f6af78aa7ed0dd11d4c9ab117f7d371d46041f7abd0d3514284a46dc01043ddb1a68078a9ac451f2ea73a694d6629c18654d79d3eb5c69266e6d2eea93 SHA512 654fdbf71bb0c69abd434ed4c1a5b0f4caacc98fdbd433e1d0186c866bf33cfbeff304a93575e6194e1eb5d3610698175d830589d65e85cbd2df85bd09e040a6
DIST rw-0.9.tar.gz 340385 BLAKE2B 2eba540146094eea7adb26874ed6f7982e46a863c786bf6f4a55af2d1d3167641e10c324f2b0e0e366bb8f83503b5da5fb02447abf46ae955da78ac8fe6149b6 SHA512 f4f1910506cbdb557ca50bac6f63cfca3271a5df8d13c67d2d9bba79b9cdb03196a679e6091554175decbee0871888de71bed5746662c9a75418f0f5dd9bd609
diff --git a/sci-mathematics/rw/rw-0.10.ebuild b/sci-mathematics/rw/rw-0.10.ebuild
new file mode 100644
index 000000000000..d3605adc2d88
--- /dev/null
+++ b/sci-mathematics/rw/rw-0.10.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+DESCRIPTION="Compute rank-width decompositions of graphs"
+HOMEPAGE="https://sourceforge.net/projects/rankwidth/"
+SRC_URI="https://downloads.sourceforge.net/project/rankwidth/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86 ~x64-macos"
+
+# We have a file collision (librw.so) with xpaint, bug 560210.
+RDEPEND="!media-gfx/xpaint"
+
+src_configure() {
+ # The executable depends on igraph, which has gone off the rails
+ # upstream and has copy/pasted ~10 libraries into its src/ directory.
+ econf --disable-executable
+}
+
+src_install() {
+ default
+
+ find "${ED}" -name '*.la' -delete \
+ || die 'failed to delete libtool archives'
+}