summaryrefslogtreecommitdiff
blob: 352cee681874ee0bbb502d7d1b03cfddb3820bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Replacement of the old unix crypt(1)"
HOMEPAGE="https://mcrypt.sourceforge.net/"
SRC_URI="mirror://sourceforge/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
	sys-libs/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() {
	econf $(use_enable nls)
}