blob: e8ea6d55107c23203199ecd8a3440d80c4295871 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/apg/apg-2.3.0b-r1.ebuild,v 1.5 2005/07/05 17:42:48 killerfox Exp $
inherit eutils
DESCRIPTION="Another Password Generator"
HOMEPAGE="http://www.adel.nursat.kz/apg/"
SRC_URI="http://www.adel.nursat.kz/apg/download/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 hppa ppc ~sparc x86"
IUSE="cracklib"
DEPEND="virtual/libc
cracklib? ( sys-libs/cracklib )"
src_unpack() {
unpack ${A}
chmod -R +w ${S}
cd ${S}
if use cracklib; then
epatch ${FILESDIR}/${P}-cracklib.patch
fi
}
src_compile() {
sed -i 's,^#\(APG_CS_CLIBS += -lnsl\)$,\1,' Makefile
emake standalone || die "compile problem"
emake -C bfconvert || die "compile problem"
}
src_install() {
dobin apg apgbfm bfconvert/bfconvert || die
dodoc CHANGES INSTALL README THANKS TODO
cd doc
doman man/apg.1 man/apgbfm.1
dodoc APG_TIPS pronun.txt rfc0972.txt rfc1750.txt
}
|