sci-biology/yass: Remove USE=dmalloc

It's janky and causes build failures

Bug: https://bugs.gentoo.org/946814
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
NHOrus
2024-12-30 21:07:08 +04:00
committed by Sam James
parent 67123dcbf9
commit d0977ceabf
2 changed files with 3 additions and 7 deletions

View File

@@ -6,7 +6,6 @@
<name>Gentoo Biology Project</name>
</maintainer>
<use>
<flag name="dmalloc">Enable debugging with the dmalloc library</flag>
<flag name="lowmem">Build for environments with low amounts of memory</flag>
</use>
</pkgmetadata>

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,10 +12,7 @@ SRC_URI="http://bioinfo.lifl.fr/yass/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dmalloc lowmem threads"
DEPEND="dmalloc? ( dev-libs/dmalloc )"
RDEPEND="${DEPEND}"
IUSE="lowmem threads"
PATCHES=( "${FILESDIR}"/${PV}-as-needed.patch )
@@ -28,5 +25,5 @@ src_configure() {
econf \
$(use_enable threads) \
$(use_enable lowmem lowmemory) \
$(use_with dmalloc)
--without-dmalloc
}