blob: b0497df2e8740d18e16dfdc70b1b3a8fcb08fd15 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils pam autotools autotools-utils
MY_P="${P/_beta/beta}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="pam module to allow password-storing in \$HOME/dotfiles"
HOMEPAGE="http://0pointer.de/lennart/projects/pam_dotfile/
https://github.com/gentoo/pam_dotfile/"
SRC_URI="http://0pointer.de/lennart/projects/pam_dotfile/${MY_P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="doc"
RDEPEND="virtual/pam"
DEPEND="${RDEPEND}
doc? ( www-client/lynx )"
HTML_DOCS="doc"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable doc lynx)
--with-pammoddir=$(getpam_mod_dir)
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
# kill the libtool archives
rm -rf "${D}"/$(getpam_mod_dir)/*.la
}
|