blob: 4455760df71ffdf9072e69af05e145af58116b64 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/cmd5checkpw/cmd5checkpw-0.22-r3.ebuild,v 1.9 2005/10/21 21:18:17 hansmi Exp $
inherit eutils toolchain-funcs
DESCRIPTION="A checkpassword compatible authentication program that used CRAM-MD5 authentication mode."
SRC_URI="http://members.elysium.pl/brush/cmd5checkpw/dist/${P}.tar.gz"
HOMEPAGE="http://members.elysium.pl/brush/cmd5checkpw/"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc sparc x86"
IUSE=""
DEPEND="virtual/libc"
douser() {
enewuser cmd5checkpw 212 -1 /dev/null bin
}
pkg_preinst() {
douser
}
pkg_setup() {
douser
}
src_unpack() {
unpack "${A}"
cd "${S}"
epatch ${FILESDIR}/euid.diff || die 'Applying euid.diff failed'
}
src_compile() {
cp Makefile Makefile.orig
sed \
-e "s:-c -g -Wall -O3:${CFLAGS}:" \
-e "s:cp cmd5checkpw /bin/:cp cmd5checkpw \${D}/bin/:" \
-e "s:cp cmd5checkpw.8 /usr/man/man8/:cp cmd5checkpw.8 \${D}/usr/share/man/man8/:" \
-e "/^LDFLAGS/ a LDFLAGS+='-Wl,-z,now'" \
< Makefile.orig > Makefile
cd ${S}
echo "$(tc-getCC) ${CFLAGS}" > conf-cc
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
make || die
}
src_install() {
dodir /etc /bin /usr/share/man/man8
insinto /etc
doins ${FILESDIR}/poppasswd
make install
fowners cmd5checkpw /etc/poppasswd /bin/cmd5checkpw
fperms 400 /etc/poppasswd
fperms u+s /bin/cmd5checkpw
}
pkg_postinst() {
chmod 400 ${ROOT}/etc/poppasswd
chown cmd5checkpw ${ROOT}/etc/poppasswd
}
|