]> gitweb.michael.orlitzky.com - mjo-overlay.git/commitdiff
sci-mathematics/rw: new package (currently doesn't work, website down).
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 15 Jun 2015 19:15:47 +0000 (15:15 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 15 Jun 2015 19:15:47 +0000 (15:15 -0400)
sci-mathematics/rw/metadata.xml [new file with mode: 0644]
sci-mathematics/rw/rw-0.7.ebuild [new file with mode: 0644]

diff --git a/sci-mathematics/rw/metadata.xml b/sci-mathematics/rw/metadata.xml
new file mode 100644 (file)
index 0000000..f6b80d8
--- /dev/null
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci</herd>
+  <maintainer>
+    <email>mjo@gentoo.org</email>
+    <name>Michael Orlitzky</name>
+  </maintainer>
+  <use>
+    <flag name='executable'>Build the 'rw' program.</flag>
+  </use>
+</pkgmetadata>
diff --git a/sci-mathematics/rw/rw-0.7.ebuild b/sci-mathematics/rw/rw-0.7.ebuild
new file mode 100644 (file)
index 0000000..91d52f4
--- /dev/null
@@ -0,0 +1,22 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION="Compute rank-width decompositions of graphs"
+AUTHORPAGE="http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/"
+HOMEPAGE="${AUTHORPAGE}software/${PN}.shtml"
+SRC_URI="${AUTHORPAGE}/software/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="executable"
+
+DEPEND="executable? ( >=dev-libs/igraph-0.6 )"
+RDEPEND="${DEPEND}"
+
+src_configure(){
+       econf $(use_enable executable)
+}