diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-06-02 20:18:22 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-06-02 22:58:48 -0400 |
commit | 457c85221fafb065185c701356ec45d514591de0 (patch) | |
tree | 42191ef87c1b6c09b6a6de9e89182c78c0829dad /net-mail | |
parent | net-mail/qmailadmin: drop old EAPI (diff) | |
download | gentoo-457c85221fafb065185c701356ec45d514591de0.tar.gz gentoo-457c85221fafb065185c701356ec45d514591de0.tar.bz2 gentoo-457c85221fafb065185c701356ec45d514591de0.zip |
net-mail/poppassd_ceti: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
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 deleted file mode 100644 index 1499debb512c..000000000000 --- a/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -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="cracklib" - -DEPEND="virtual/pam" - -RDEPEND="${DEPEND} - sys-apps/xinetd - cracklib? ( sys-libs/cracklib )" - -src_compile() { - $(tc-getCC) -c ${CFLAGS} ${MY_PN}.c || die "Compile failed." - $(tc-getCC) -o poppassd ${MY_PN}.o -lpam $(dlopen_lib) || die "Linking failed." -} - -src_install() { - dodoc README - - pamd_mimic_system poppassd auth account password - if use cracklib; then - echo -e "password\trequired\tpam_cracklib.so retry=3" >> \ - ${D}/etc/pam.d/poppassd - fi - - insinto /etc/xinetd.d - newins ${FILESDIR}/poppassd.xinetd poppassd - - insinto /usr/sbin - insopts -o root -g bin -m 500 - doins poppassd || die "Install failed." -} |