diff options
author | Matt Turner <mattst88@gentoo.org> | 2013-10-05 01:15:13 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2013-10-05 01:15:13 +0000 |
commit | 631e905d88b6e5e158127596bf337d9c5c94cad2 (patch) | |
tree | 3d5c3316531b34d23a521605820ceb8fa9416cb0 /sys-auth/pam_mount | |
parent | Version bump to 3.16. (diff) | |
download | gentoo-2-631e905d88b6e5e158127596bf337d9c5c94cad2.tar.gz gentoo-2-631e905d88b6e5e158127596bf337d9c5c94cad2.tar.bz2 gentoo-2-631e905d88b6e5e158127596bf337d9c5c94cad2.zip |
Version bump to 2.14.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
Diffstat (limited to 'sys-auth/pam_mount')
-rw-r--r-- | sys-auth/pam_mount/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/pam_mount/pam_mount-2.14.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog index 4420110b2ebb..12037c3a79aa 100644 --- a/sys-auth/pam_mount/ChangeLog +++ b/sys-auth/pam_mount/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/pam_mount # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.71 2013/08/19 13:36:10 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.72 2013/10/05 01:15:13 mattst88 Exp $ + +*pam_mount-2.14 (05 Oct 2013) + + 05 Oct 2013; Matt Turner <mattst88@gentoo.org> +pam_mount-2.14.ebuild: + Version bump to 2.14. 19 Aug 2013; Agostino Sarubbo <ago@gentoo.org> pam_mount-2.13-r1.ebuild: Stable for ppc, wrt bug #461388 diff --git a/sys-auth/pam_mount/pam_mount-2.14.ebuild b/sys-auth/pam_mount/pam_mount-2.14.ebuild new file mode 100644 index 000000000000..db30b4392a5b --- /dev/null +++ b/sys-auth/pam_mount/pam_mount-2.14.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.14.ebuild,v 1.1 2013/10/05 01:15:13 mattst88 Exp $ + +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} + virtual/pkgconfig + app-arch/xz-utils" +RDEPEND="${COMMON_DEPEND} + >=sys-apps/util-linux-2.20" + +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 +} |