You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/rw/rw-0.7-r1.ebuild

33 lines
857 B

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
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 ~x86-linux ~ppc-macos ~x86-macos ~x64-macos"
IUSE="+executable"
DEPEND="executable? ( >=dev-libs/igraph-0.6 )"
RDEPEND="${DEPEND}"
DOCDIR="/usr/share/doc/${PF}"
src_configure(){
econf $(use_enable executable) --docdir="${EPREFIX}${DOCDIR}"
}
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}"
default
}