blob: 8c41b7bf1986e9f3839c35347298d8a1b407cd0d (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild,v 1.3 2011/07/25 14:48:06 eras Exp $
inherit eutils toolchain-funcs pam portability
MY_PN="poppassd"
MY_P="${MY_PN}-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Password change daemon with PAM support"
HOMEPAGE="http://echelon.pl/pubs/poppassd.html"
SRC_URI="http://echelon.pl/pubs/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/pam"
RDEPEND="${DEPEND}
sys-apps/xinetd"
src_compile() {
$(tc-getCC) -c ${CFLAGS} ${MY_PN}.c || die "Compile failed."
$(tc-getCC) ${LDFLAGS} -o poppassd ${MY_PN}.o -lpam $(dlopen_lib) || die "Linking failed."
}
src_install() {
dodoc README
pamd_mimic_system poppassd auth account password
insinto /etc/xinetd.d
newins "${FILESDIR}"/poppassd.xinetd poppassd
insinto /usr/sbin
insopts -o root -g bin -m 500
doins poppassd || die "Install failed."
}
|