+++ /dev/null
-DIST rw-0.7.tar.gz 322255 SHA256 e049966e5c4f446b639d4b0c40d3ceddd57a79a8890c10dce90614d105d962e7 SHA512 2bccbaf1a7432b845e9bf14d79e350275d1ca417cb368e870b6cb1a310a92cce67c9e4ce3c550da2900a8e08c3771cc534d593f67267eee17d25c756d8c36e3b WHIRLPOOL 27d274a528a7f074b8ca1b38872220fe4e49488199fa496fab5330fd1866b504851250cfba2539a86c63104bbdee7be29a677aa6a21a7bf899cb546204e9138c
-EBUILD rw-0.7.ebuild 997 SHA256 bf73cfcd9c28f87bfcf61c0d19e5a776d998216a96b66789c4eee7bada4934af SHA512 9fe88added9cebe2ef18034e59767170c2a629d86cfb0e2bae04b9434e149916aaeeb2db682da5a2b1d45efdfcdce4f5873a6e26b5652d1fae1d1c108635deff WHIRLPOOL 5439cbf1510788c48f44df9eee98db75b462d679681b17688f2df3d8ea3ef2e99d737f8af538ab3fde377e08684fd95c9534b5e1bbe535a4bb874ee9e2148012
-MISC metadata.xml 913 SHA256 8380726986a6aac031b72502ae37fbd12fc7d0b6bc545dbfd4e1c2ab5071a2cc SHA512 61e53de1d483d3421ec37f4cc29a5d827d98c67f952dfbffe3013ff625a6e0aa911ae7beff39a6c76defe61a2e5002c4196ce0778ff9116f8cf26d4779696ca2 WHIRLPOOL 9ac6403ed65562c8059ef428d5a4c88305223a717826bc81198d690844d32d6a442d652d5d7660609058c5da9ca00291f7cc3caf9c41fad6c5aafad3f14a33c1
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>proxy-maintainers</herd>
- <herd>sci</herd>
-
- <maintainer>
- <email>mjo@gentoo.org</email>
- <name>Michael Orlitzky</name>
- </maintainer>
-
- <maintainer>
- <email>francois.bissey@canterbury.ac.nz</email>
- <name>François Bissey</name>
- </maintainer>
-
- <longdescription lang="en">
- rw is a program that calculates rank-width and rank-decompositions.
- It is based on ideas from "Computing rank-width exactly" by Sang-il Oum,
- "Sopra una formula numerica" by Ernesto Pascal, "Generation of a Vector
- from the Lexicographical Index" by B.P. Buckles and M. Lybanon and "Fast
- additions on masked integers" by Michael D. Adams and David S. Wise.
- </longdescription>
-
- <use>
- <flag name='executable'>Build the 'rw' program.</flag>
- </use>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit autotools-utils
-
-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 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-macos"
-IUSE="+executable static-libs"
-
-DEPEND="executable? ( >=dev-libs/igraph-0.6 )"
-RDEPEND="${DEPEND}"
-
-DOCDIR="/usr/share/doc/${PF}"
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-src_configure(){
- local myeconfargs=(
- $(use_enable executable)
- --docdir="${EPREFIX}${DOCDIR}"
- )
-
- autotools-utils_src_configure
-}
-
-src_install(){
- # The examples graphs are meant to be fed uncompressed into the 'rw'
- # program. The rest of the docs are small so just leave everything
- # uncompressed.
- docompress -x "${DOCDIR}"
- autotools-utils_src_install
-}