gentoo/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild
Michał Górny 3f9689daa1
*/*: Use := on virtual/zlib deps, part 6
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>
2025-11-04 11:08:49 +01:00

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)
}