summaryrefslogtreecommitdiff
blob: 3385fa29d6de10a3f4a591f8d3368b9e4f4698a2 (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/cmd5checkpw/cmd5checkpw-0.22.ebuild,v 1.10 2004/04/27 20:50:02 agriffis Exp $

DESCRIPTION="A checkpassword compatible authentication program that used CRAM-MD5 authentication mode."
HOMEPAGE="http://members.elysium.pl/brush/cmd5checkpw/"
SRC_URI="http://members.elysium.pl/brush/cmd5checkpw/dist/${P}.tar.gz"

LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha"

DEPEND="virtual/glibc"

pkg_preinst() {
	if ! grep -q ^cmd5checkpw: /etc/passwd
	then
		useradd -d /dev/null -g bin  -s /dev/null cmd5checkpw \
			|| die "problem adding user cmd5checkpw"
	fi
}

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/:" \
		< Makefile.orig > Makefile
	cd ${S}
	echo "gcc ${CFLAGS}" > conf-cc
	make || die
}

src_install() {
	dodir /etc /bin /usr/share/man/man8
	cp ${FILESDIR}/poppasswd ${D}/etc
	make install
	chown cmd5checkpw ${D}/etc/poppasswd
	chmod 400 ${D}/etc/poppasswd
	chown cmd5checkpw ${D}/bin/cmd5checkpw
	chmod a+s ${D}/bin/cmd5checkpw
}