summaryrefslogtreecommitdiff
path: root/app-admin/apg/apg-2.3.0b-r7.ebuild
blob: 77a760e1baf84e0968abe26aa3eef5729483bf1d (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

DESCRIPTION="Another Password Generator"
HOMEPAGE="http://www.adel.nursat.kz/apg/"
SRC_URI="http://www.adel.nursat.kz/apg/download/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="cracklib"

DEPEND="cracklib? ( sys-libs/cracklib )"
RDEPEND="${DEPEND}"

src_prepare() {
	default
	if use cracklib; then
		eapply "${FILESDIR}"/${P}-cracklib.patch
	fi
	eapply "${FILESDIR}"/${PN}-glibc-2.4.patch
	eapply "${FILESDIR}"/${P}-crypt_password.patch

	sed -i 's,^#\(APG_CS_CLIBS += -lnsl\)$,\1,' Makefile \
		|| die "Sed failed"
	if [[ ${CHOST} == *-darwin* ]]; then
		sed -i 's,^APG_CLIBS += -lcrypt,APG_CLIBS += ,' Makefile \
			|| die "Sed failed"
	fi
}

src_compile() {
	emake \
		FLAGS="${CFLAGS} ${LDFLAGS}" CFLAGS="${CFLAGS} ${LDFLAGS}" \
		CC="$(tc-getCC)" standalone
	emake FLAGS="${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" \
		-C bfconvert
}

src_install() {
	dobin apg apgbfm bfconvert/bfconvert
	dodoc CHANGES INSTALL README THANKS TODO \
		doc/{APG_TIPS,pronun.txt,rfc0972.txt,rfc1750.txt}
	doman doc/man/{apg.1,apgbfm.1}
}