2011-12-16 10:22:42 +04:00
|
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2012-02-08 09:18:06 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.13.ebuild,v 1.1 2011/12/15 20:03:36 hanno Exp $
|
2011-12-16 10:22:42 +04:00
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
inherit multilib
|
|
|
|
|
|
|
|
DESCRIPTION="A PAM module that can mount volumes for a user session"
|
|
|
|
HOMEPAGE="http://pam-mount.sourceforge.net"
|
|
|
|
SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.xz"
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
|
|
|
|
|
|
IUSE="crypt ssl selinux"
|
|
|
|
|
|
|
|
COMMON_DEPEND=">=sys-libs/pam-0.99
|
|
|
|
>=sys-libs/libhx-3.12.1
|
|
|
|
>=dev-libs/libxml2-2.6
|
|
|
|
crypt? ( >=sys-fs/cryptsetup-1.1.0 )
|
|
|
|
ssl? ( >=dev-libs/openssl-0.9.8 )
|
|
|
|
selinux? ( sys-libs/libselinux )"
|
|
|
|
DEPEND="${COMMON_DEPEND}
|
|
|
|
dev-util/pkgconfig
|
|
|
|
app-arch/xz-utils"
|
2012-02-08 09:18:06 +04:00
|
|
|
RDEPEND="${COMMON_DEPEND}"
|
2011-12-16 10:22:42 +04:00
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf --with-slibdir="/$(get_libdir)" \
|
|
|
|
$(use_with crypt cryptsetup) \
|
|
|
|
$(use_with ssl crypto) \
|
|
|
|
$(use_with selinux)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
use selinux || rm -r "${D}"/etc/selinux
|
|
|
|
dodoc doc/*.txt
|
|
|
|
}
|