summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-02-18 19:55:30 +0100
committerDavid Seifert <soap@gentoo.org>2021-02-18 19:55:30 +0100
commit0276a93d551fce39081c5da14e6b3255949a6c3f (patch)
tree8ef04c462b7d081c75979e12c20ef7e45b6b596a /sci-libs/bliss
parentdev-tcltk/tablelist: Remove old (diff)
downloadgentoo-0276a93d551fce39081c5da14e6b3255949a6c3f.tar.gz
gentoo-0276a93d551fce39081c5da14e6b3255949a6c3f.tar.bz2
gentoo-0276a93d551fce39081c5da14e6b3255949a6c3f.zip
sci-libs/bliss: Remove old
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-libs/bliss')
-rw-r--r--sci-libs/bliss/bliss-0.73-r1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/sci-libs/bliss/bliss-0.73-r1.ebuild b/sci-libs/bliss/bliss-0.73-r1.ebuild
deleted file mode 100644
index de9e1f385274..000000000000
--- a/sci-libs/bliss/bliss-0.73-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip"
-DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs"
-HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/"
-
-LICENSE="LGPL-3"
-SLOT="0/1"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc gmp static-libs"
-
-RDEPEND="gmp? ( dev-libs/gmp:0= )"
-DEPEND="${RDEPEND}
- app-arch/unzip
- doc? ( app-doc/doxygen )"
-
-#patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/
-PATCHES=(
- "${FILESDIR}"/${P}-error.patch
- "${FILESDIR}"/${P}-rehn.patch
- "${FILESDIR}"/${P}-autotools.patch
-)
-
-src_prepare() {
- default
- cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die
- rm Makefile || die
- eautoreconf
-}
-
-src_configure() {
- econf $(use_with gmp) $(use_enable static-libs static)
-}
-
-src_compile() {
- emake all $(usex doc html "")
-}
-
-src_install() {
- default
- use static-libs || find "${ED}" -name '*.la' -delete
- use doc && dodoc -r html
-}