blob: 09e7b2e920a8ce6eb4baade63b5eeeb1bf5a825a (
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
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpw/checkpw-1.02.ebuild,v 1.1 2008/12/05 16:46:43 matsuu Exp $
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="an implementation of the checkpassword interface that checks a password"
HOMEPAGE="http://checkpw.sourceforge.net/checkpw/"
SRC_URI="mirror://sourceforge/checkpw/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
IUSE="static"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~amd64 ~ia64"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-qa.patch"
sed -i -e 's/head -1/head -n 1/g' Makefile auto_*.do default.do || die
}
src_compile() {
use static && append-ldflags -static
echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
echo ".maildir" > conf-maildir || die
if [ -z "${QMAIL_HOME}" ]; then
QMAIL_HOME="/var/qmail"
ewarn "QMAIL_HOME is null! Using default."
ewarn "Create the qmail user and set the homedir to your desired location."
fi
einfo "Using ${QMAIL_HOME} as qmail's default home directory."
echo "${QMAIL_HOME}" > conf-qmail || die
emake || die
}
src_install() {
into /
dobin checkpw checkapoppw selectcheckpw loginlog
fperms 0700 /bin/checkpw /bin/checkapoppw /bin/selectcheckpw
dodoc CHANGES README
docinto samples
dodoc run-{apop,both,multidir,multipw,pop,rules}
}
pkg_postinst() {
elog
elog "How to set password:"
elog
elog " % echo 'YOURPASSWORD' > ~/.maildir/.password"
elog " % chmod 600 ~/.maildir/.password"
elog
elog "Replace YOURPASSWORD with your plain password."
elog
}
|