diff options
author | David Seifert <soap@gentoo.org> | 2022-07-07 21:56:43 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-07-07 21:56:43 +0200 |
commit | 9118a181fb14d7473b0c3c63a323ead89247bd7f (patch) | |
tree | 57f71e8650c8c7ec889f0b96caeb4f1b0d971292 /sci-biology/biogrep | |
parent | sci-biology/amap: update EAPI 6 -> 8 (diff) | |
download | gentoo-9118a181fb14d7473b0c3c63a323ead89247bd7f.tar.gz gentoo-9118a181fb14d7473b0c3c63a323ead89247bd7f.tar.bz2 gentoo-9118a181fb14d7473b0c3c63a323ead89247bd7f.zip |
sci-biology/biogrep: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/biogrep')
-rw-r--r-- | sci-biology/biogrep/biogrep-1.0-r3.ebuild (renamed from sci-biology/biogrep/biogrep-1.0-r2.ebuild) | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sci-biology/biogrep/biogrep-1.0-r2.ebuild b/sci-biology/biogrep/biogrep-1.0-r3.ebuild index 55c780b9ddef..74019b09fb6b 100644 --- a/sci-biology/biogrep/biogrep-1.0-r2.ebuild +++ b/sci-biology/biogrep/biogrep-1.0-r3.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools DESCRIPTION="Multithreaded tool for matching large sets of patterns against biosequence DBs" HOMEPAGE="http://stephanopoulos.openwetware.org/BIOGREP.html" -SRC_URI="http://www.openwetware.org/images/3/3d/${P^}.tar.gz -> ${P}.tar.gz +SRC_URI=" + http://www.openwetware.org/images/3/3d/${P^}.tar.gz -> ${P}.tar.gz doc? ( http://www.openwetware.org/images/4/49/${PN^}.pdf -> ${P}.pdf )" LICENSE="GPL-2" @@ -17,19 +18,18 @@ IUSE="doc examples" src_prepare() { default - mv configure.{in,ac} || die eautoreconf } src_install() { - use doc && DOCS+=( "${DISTDIR}"/${P}.pdf ) + default + + use doc && dodoc "${DISTDIR}"/${P}.pdf if use examples; then # remove cruft before installing examples find examples/ \( -name 'CVS' -o -name '*~' \) -exec rm -rf '{}' + || die - DOCS+=( examples ) + dodoc -r examples docompress -x /usr/share/doc/${PF}/examples fi - - default } |