blob: 05c51715ecc44a2616a0c4b622aaa055229eb1f4 (
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
62
63
64
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpw/checkpw-1.01.ebuild,v 1.5 2007/05/08 23:09:27 genone Exp $
inherit 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"
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
# the -s is from the original build
LDFLAGS="${LDFLAGS} -s"
use static && LDFLAGS="${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
sed -i -e 's/head -1/head -n 1/g' Makefile auto_*.do default.do || die
}
src_compile() {
emake || die
}
src_install() {
into /
dobin checkpw checkapoppw selectcheckpw loginlog
fperms 0700 /bin/checkpw /bin/checkapoppw /bin/selectcheckpw
dodoc CHANGES INSTALL 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
}
|