mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Done via: ``` git grep -l 'virtual/zlib"' | xargs sed -i -e 's@virtual/zlib"@virtual/zlib:="@' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
37 lines
773 B
Bash
37 lines
773 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit flag-o-matic
|
|
|
|
DESCRIPTION="Replacement of the old unix crypt(1)"
|
|
HOMEPAGE="https://mcrypt.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/mcrypt/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~sparc x86"
|
|
IUSE="nls"
|
|
|
|
RDEPEND=">=dev-libs/libmcrypt-2.5.8
|
|
>=app-crypt/mhash-0.9.9
|
|
virtual/zlib:="
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-2.6.7-qa.patch"
|
|
"${FILESDIR}/${P}-stdlib.h.patch"
|
|
"${FILESDIR}/${P}-segv.patch"
|
|
"${FILESDIR}/${P}-sprintf.patch"
|
|
"${FILESDIR}/${P}-format-string.patch"
|
|
"${FILESDIR}/${P}-overflow.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
# bug #943960
|
|
append-cflags -std=gnu17
|
|
|
|
econf $(use_enable nls)
|
|
}
|