diff options
author | David Seifert <soap@gentoo.org> | 2017-02-06 21:47:59 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-02-06 22:24:03 +0100 |
commit | 36ee0c37bf615f520dcd3a9ba390a8b3e6af63a9 (patch) | |
tree | c978a78534018487a4204e1428c8276f0976b308 /sci-biology/maqview | |
parent | sci-biology/transfac: Remove ppc from KEYWORDS (diff) | |
download | gentoo-36ee0c37bf615f520dcd3a9ba390a8b3e6af63a9.tar.gz gentoo-36ee0c37bf615f520dcd3a9ba390a8b3e6af63a9.tar.bz2 gentoo-36ee0c37bf615f520dcd3a9ba390a8b3e6af63a9.zip |
sci-biology/maqview: Modernise to EAPI 6
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3856
Diffstat (limited to 'sci-biology/maqview')
-rw-r--r-- | sci-biology/maqview/maqview-0.2.5-r3.ebuild (renamed from sci-biology/maqview/maqview-0.2.5-r2.ebuild) | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/sci-biology/maqview/maqview-0.2.5-r2.ebuild b/sci-biology/maqview/maqview-0.2.5-r3.ebuild index e549497830bd..7b31f96bf264 100644 --- a/sci-biology/maqview/maqview-0.2.5-r2.ebuild +++ b/sci-biology/maqview/maqview-0.2.5-r3.ebuild @@ -1,12 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils +inherit autotools DESCRIPTION="GUI for sci-biology/maq, a short read mapping assembler" HOMEPAGE="http://maq.sourceforge.net/" @@ -15,7 +13,7 @@ SRC_URI="mirror://sourceforge/maq/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" IUSE="" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" DEPEND=" media-libs/freeglut @@ -29,4 +27,9 @@ PATCHES=( "${FILESDIR}"/${PV}-ldflags.patch "${FILESDIR}"/${PV}-zlib.patch "${FILESDIR}"/${P}-gcc4.7.patch - ) +) + +src_prepare() { + default + eautoreconf +} |