Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/poppassd_ceti/
Date: Sun, 03 Jun 2018 02:59:27
Message-Id: 1527994728.457c85221fafb065185c701356ec45d514591de0.bman@gentoo
1 commit: 457c85221fafb065185c701356ec45d514591de0
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 00:18:22 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 02:58:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=457c8522
7
8 net-mail/poppassd_ceti: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 .../poppassd_ceti/poppassd_ceti-1.8.5-r1.ebuild | 47 ----------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r1.ebuild b/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r1.ebuild
16 deleted file mode 100644
17 index 1499debb512..00000000000
18 --- a/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r1.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -inherit eutils toolchain-funcs pam portability
27 -
28 -MY_PN="poppassd"
29 -MY_P="${MY_PN}-${PV}"
30 -S=${WORKDIR}/${MY_P}
31 -
32 -DESCRIPTION="Password change daemon with PAM support"
33 -HOMEPAGE="http://echelon.pl/pubs/poppassd.html"
34 -SRC_URI="http://echelon.pl/pubs/${MY_P}.tar.gz"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="amd64 x86"
39 -IUSE="cracklib"
40 -
41 -DEPEND="virtual/pam"
42 -
43 -RDEPEND="${DEPEND}
44 - sys-apps/xinetd
45 - cracklib? ( sys-libs/cracklib )"
46 -
47 -src_compile() {
48 - $(tc-getCC) -c ${CFLAGS} ${MY_PN}.c || die "Compile failed."
49 - $(tc-getCC) -o poppassd ${MY_PN}.o -lpam $(dlopen_lib) || die "Linking failed."
50 -}
51 -
52 -src_install() {
53 - dodoc README
54 -
55 - pamd_mimic_system poppassd auth account password
56 - if use cracklib; then
57 - echo -e "password\trequired\tpam_cracklib.so retry=3" >> \
58 - ${D}/etc/pam.d/poppassd
59 - fi
60 -
61 - insinto /etc/xinetd.d
62 - newins ${FILESDIR}/poppassd.xinetd poppassd
63 -
64 - insinto /usr/sbin
65 - insopts -o root -g bin -m 500
66 - doins poppassd || die "Install failed."
67 -}