diff options
author | Hanno Böck <hanno@gentoo.org> | 2011-08-14 18:31:29 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2011-08-14 18:31:29 +0000 |
commit | 6a896182c08be89f8c1635ad047c80454ad53ba0 (patch) | |
tree | 5cad3e7be794b9b63bd077f1b48818a1b5d13966 | |
parent | arm stable, bug #355085 (diff) | |
download | gentoo-2-6a896182c08be89f8c1635ad047c80454ad53ba0.tar.gz gentoo-2-6a896182c08be89f8c1635ad047c80454ad53ba0.tar.bz2 gentoo-2-6a896182c08be89f8c1635ad047c80454ad53ba0.zip |
pam_mount version bump
(Portage version: 2.1.10.11/cvs/Linux x86_64)
-rw-r--r-- | sys-auth/pam_mount/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/pam_mount/pam_mount-2.11.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog index fcee02c025a1..3349912c8d94 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-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.54 2011/05/22 16:16:38 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.55 2011/08/14 18:31:29 hanno Exp $ + +*pam_mount-2.11 (14 Aug 2011) + + 14 Aug 2011; Hanno Boeck <hanno@gentoo.org> +pam_mount-2.11.ebuild: + Version bump. 22 May 2011; Matt Turner <mattst88@gentoo.org> pam_mount-2.10.ebuild: Change libhx dependency to 3.6 from 3.10.1 diff --git a/sys-auth/pam_mount/pam_mount-2.11.ebuild b/sys-auth/pam_mount/pam_mount-2.11.ebuild new file mode 100644 index 000000000000..dd1c76d589d4 --- /dev/null +++ b/sys-auth/pam_mount/pam_mount-2.11.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 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.11.ebuild,v 1.1 2011/08/14 18:31:29 hanno 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.11 + >=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" +RDEPEND="${COMMON_DEPEND}" + +src_configure() { + econf --with-slibdir="/$(get_libdir)" \ + $(use_with crypt cryptsetup) \ + $(use_with ssl crypto) \ + $(use_with selinux) +} + +src_install() { + emake DESTDIR="${D}" install + dodoc doc/*.txt +} |