blob: 1c0f07fab0286815782774a7cc7eabf8fef94180 (
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-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit autotools multilib
if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://github.com/google/google-authenticator-libpam.git"
inherit git-r3
else
SRC_URI="https://github.com/google/google-authenticator-libpam/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
S="${WORKDIR}/google-authenticator-libpam-${PV}"
fi
DESCRIPTION="PAM Module for two step verification via mobile platform"
HOMEPAGE="https://github.com/google/google-authenticator-libpam"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
DEPEND="virtual/pam"
RDEPEND="${DEPEND}"
src_prepare() {
default
eautoreconf
}
src_compile() {
default
}
src_install() {
default
}
pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]] ; then
elog "For further information see"
elog "https://wiki.gentoo.org/wiki/Google_Authenticator"
elog ""
elog "If you want support for QR-Codes, install media-gfx/qrencode."
fi
}
|