diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-04-27 21:15:04 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2024-04-27 21:15:04 +0200 |
commit | 27cb9ea6333afc1189fc308caf4c11e7ef0c5994 (patch) | |
tree | d917a1c41997e326e3349ffb37e443d3ab68d85e /sci-biology/maqview/maqview-0.2.5-r5.ebuild | |
parent | app-editors/emacs: Stabilize 26.3-r18, 27.2-r16, 28.2-r12, 29.3-r2 amd64 (diff) | |
download | gentoo-27cb9ea6333afc1189fc308caf4c11e7ef0c5994.tar.gz gentoo-27cb9ea6333afc1189fc308caf4c11e7ef0c5994.tar.bz2 gentoo-27cb9ea6333afc1189fc308caf4c11e7ef0c5994.zip |
sci-biology/maqview: Fix passing of incompatible pointer type
Closes: https://github.com/gentoo/gentoo/pull/36460
Closes: https://bugs.gentoo.org/930767
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/maqview/maqview-0.2.5-r5.ebuild')
-rw-r--r-- | sci-biology/maqview/maqview-0.2.5-r5.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sci-biology/maqview/maqview-0.2.5-r5.ebuild b/sci-biology/maqview/maqview-0.2.5-r5.ebuild new file mode 100644 index 000000000000..479d0c01af91 --- /dev/null +++ b/sci-biology/maqview/maqview-0.2.5-r5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="GUI for sci-biology/maq, a short read mapping assembler" +HOMEPAGE="https://maq.sourceforge.net/" +SRC_URI="mirror://sourceforge/maq/${P}.tar.gz" +S="${WORKDIR}/${PN}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + media-libs/freeglut + sys-libs/zlib" +RDEPEND="${DEPEND} + sci-biology/maq" + +PATCHES=( + "${FILESDIR}"/${PV}-ldflags.patch + "${FILESDIR}"/${PV}-zlib.patch + "${FILESDIR}"/${P}-gcc4.7.patch + "${FILESDIR}"/${P}-gcc14-build-fix.patch +) + +src_prepare() { + default + eautoreconf +} |