blob: 29f0d900b41057cd10322eb915e3b58212a6c6ab (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit pam autotools multilib
DESCRIPTION="PAM module providing ability to authenticate via a bluetooth compatible device"
HOMEPAGE="http://pam.0xdef.net/"
SRC_URI="http://pam.0xdef.net/source/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sys-libs/pam
net-wireless/bluez"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/${P}-char-locales.patch #412941
epatch "${FILESDIR}"/${P}-bad-log.patch
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
econf --libdir="$(getpam_mod_dir)"
}
src_install() {
# manual install to avoid sandbox violation and installing useless .la file
dopammod src/.libs/pam_blue.so
newpamsecurity . data/sample.conf bluesscan.conf.sample
dodoc AUTHORS NEWS README ChangeLog
doman doc/${PN}.7
}
pkg_postinst() {
elog "For configuration info, see /etc/security/bluesscan.conf.sample"
elog "http://pam.0xdef.net/doc.html and http://pam.0xdef.net/faq.html"
elog "Edit the file as required and copy/rename to bluesscan.conf when done."
}
|