From: Michael Orlitzky Date: Mon, 15 Jun 2015 19:15:47 +0000 (-0400) Subject: sci-mathematics/rw: new package (currently doesn't work, website down). X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mjo-overlay.git;a=commitdiff_plain;h=387c3f829fa6e95526bce5a585ce3cf5573a4b18 sci-mathematics/rw: new package (currently doesn't work, website down). --- diff --git a/sci-mathematics/rw/metadata.xml b/sci-mathematics/rw/metadata.xml new file mode 100644 index 0000000..f6b80d8 --- /dev/null +++ b/sci-mathematics/rw/metadata.xml @@ -0,0 +1,12 @@ + + + + sci + + mjo@gentoo.org + Michael Orlitzky + + + Build the 'rw' program. + + diff --git a/sci-mathematics/rw/rw-0.7.ebuild b/sci-mathematics/rw/rw-0.7.ebuild new file mode 100644 index 0000000..91d52f4 --- /dev/null +++ b/sci-mathematics/rw/rw-0.7.ebuild @@ -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) +}