blob: 2eb2f1ab6f20428c11519938418fa5f59c0c3152 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic
KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
DESCRIPTION="Courier authentication library"
SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
HOMEPAGE="https://www.courier-mta.org/authlib/"
LICENSE="GPL-3"
SLOT="0"
IUSE="berkdb crypt debug gdbm ldap mysql pam postgres sqlite static-libs"
RESTRICT="!berkdb? ( test )"
DEPEND="net-mail/mailbase
>=net-libs/courier-unicode-2.1
gdbm? ( sys-libs/gdbm )
!gdbm? ( sys-libs/db:= )
dev-libs/openssl:0=
ldap? ( >=net-nds/openldap-1.2.11 )
mysql? ( dev-db/mysql-connector-c )
pam? ( sys-libs/pam )
postgres? ( dev-db/postgresql:= )
sqlite? ( dev-db/sqlite:3 )"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! has_version 'dev-tcltk/expect' ; then
ewarn 'The dev-tcltk/expect package is not installed.'
ewarn 'Without it, you will not be able to change system login passwords.'
ewarn 'However non-system authentication modules (LDAP, MySQL, PostgreSQL,'
ewarn 'and others) will work just fine.'
fi
}
src_configure() {
filter-flags -fomit-frame-pointer
local myconf
if use berkdb ; then
if use gdbm ; then
ewarn "Both gdbm and berkdb selected. Using gdbm."
else
myconf="--with-db=db"
fi
fi
use gdbm && myconf="--with-db=gdbm"
use debug && myconf+=" debug=true"
use sqlite && myconf+=" --with-sqlite-libs"
econf \
--sysconfdir=/etc/courier \
--datadir=/usr/share/courier \
--localstatedir=/var/lib/courier \
--sharedstatedir=/var/lib/courier/com \
--with-authdaemonvar=/var/lib/courier/authdaemon \
--with-authshadow \
--without-redhat \
--with-mailuser=mail \
--with-mailgroup=mail \
--cache-file="${S}/configuring.cache" \
$(use_with pam authpam) \
$(use_with ldap authldap) \
$(use_with mysql authmysql) \
$(use_with postgres authpgsql) \
$(use_with sqlite authsqlite) \
${myconf}
}
orderfirst() {
file="${D}/etc/courier/authlib/${1}" ; option="${2}" ; param="${3}"
if [[ -e "${file}" ]] ; then
orig="$(grep ^${option}= ${file} | cut -d\" -f 2)"
new="${option}=\"${param} `echo ${orig} | sed -e\"s/${param}//g\" -e\"s/ / /g\"`\""
sed -i -e "s/^${option}=.*$/${new}/" "${file}" || die
fi
}
finduserdb() {
for dir in \
/etc/courier/authlib /etc/courier /etc/courier-imap \
/usr/lib/courier/etc /usr/lib/courier-imap/etc \
/usr/local/etc /usr/local/etc/courier /usr/local/courier/etc \
/usr/local/lib/courier/etc /usr/local/lib/courier-imap/etc \
/usr/local/share/sqwebmail /usr/local/etc/courier-imap ; do
if [[ -e "${dir}/userdb" ]] ; then
einfo "Found userdb at: ${dir}/userdb"
cp -fR "${dir}/userdb" "${D}/etc/courier/authlib/" || die
chmod go-rwx "${D}/etc/courier/authlib/userdb" || die
continue
fi
done
}
src_install() {
diropts -o mail -g mail
dodir /etc/courier
keepdir /var/lib/courier/authdaemon
keepdir /etc/courier/authlib
emake DESTDIR="${D}" install
[[ ! -e "${D}/etc/courier/authlib/userdb" ]] && finduserdb
emake DESTDIR="${D}" install-configure
rm -f "${D}"/etc/courier/authlib/*.bak
chown mail:mail "${D}"/etc/courier/authlib/* || die
for y in "${D}"/etc/courier/authlib/*.dist ; do
[[ ! -e "${y%%.dist}" ]] && cp -f "${y}" "${y%%.dist}"
done
use pam && orderfirst authdaemonrc authmodulelist authpam
use ldap && orderfirst authdaemonrc authmodulelist authldap
use sqlite && orderfirst authdaemonrc authmodulelist authsqlite
use postgres && orderfirst authdaemonrc authmodulelist authpgsql
use mysql && orderfirst authdaemonrc authmodulelist authmysql
DOCS=( AUTHORS ChangeLog* INSTALL NEWS README )
HTML_DOCS=( README.html README_authlib.html NEWS.html INSTALL.html README.authdebug.html )
if use mysql ; then
DOCS+=( README.authmysql.myownquery )
HTML_DOCS+=( README.authmysql.html )
fi
if use postgres ; then
HTML_DOCS+=( README.authpostgres.html README.authmysql.html )
fi
if use ldap ; then
DOCS+=( README.ldap )
dodir /etc/openldap/schema
cp -f authldap.schema "${D}/etc/openldap/schema/" || die
fi
if use sqlite ; then
HTML_DOCS+=( README.authsqlite.html README.authmysql.html )
fi
einstalldocs
newinitd "${FILESDIR}/${PN}-r2" "${PN}"
use static-libs || find "${D}" -name "*.a" -delete
}
pkg_postinst() {
if [[ -e /etc/courier/authlib/userdb ]] ; then
einfo "Running makeuserdb ..."
chmod go-rwx /etc/courier/authlib/userdb || die
makeuserdb
fi
}
|