blob: 1cdc2f481e9d8f519ad839df40d490efdac5fb9f (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit autotools pam
DESCRIPTION="pam_mysql is a module for pam to authenticate users with mysql"
HOMEPAGE="https://github.com/NigelCunningham/pam-MySQL"
SRC_URI="https://github.com/NigelCunningham/pam-MySQL/archive/v${PV}.tar.gz -> ${P}.tar.gz"
DEPEND="
>=sys-libs/pam-0.72:0=
dev-db/mysql-connector-c:0=
openssl? ( dev-libs/openssl:0= )
"
RDEPEND="${DEPEND}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ~sparc x86"
IUSE="openssl"
S="${WORKDIR}/pam-MySQL-${PV}"
DOCS=( AUTHORS ChangeLog NEWS README )
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
--with-pam-mods-dir="$(getpam_mod_dir)"
$(use_with openssl)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
rm "${ED%/}$(getpam_mod_dir)/pam_mysql.la" || die
}
|