summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2013-10-05 01:19:15 +0000
committerMatt Turner <mattst88@gentoo.org>2013-10-05 01:19:15 +0000
commit3ff3589c7ad48682ad050b37561905311381b874 (patch)
tree6cf5b9b5074091ee47b769a4241425b56b833c8d /sys-auth
parentVersion bump to 2.14. (diff)
downloadgentoo-2-3ff3589c7ad48682ad050b37561905311381b874.tar.gz
gentoo-2-3ff3589c7ad48682ad050b37561905311381b874.tar.bz2
gentoo-2-3ff3589c7ad48682ad050b37561905311381b874.zip
Drop old.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
Diffstat (limited to 'sys-auth')
-rw-r--r--sys-auth/pam_mount/ChangeLog7
-rw-r--r--sys-auth/pam_mount/files/pam_mount-2.11-fix-build-without-cryptsetup.patch25
-rw-r--r--sys-auth/pam_mount/pam_mount-2.11.ebuild47
-rw-r--r--sys-auth/pam_mount/pam_mount-2.13.ebuild42
4 files changed, 6 insertions, 115 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog
index 12037c3a79aa..266cab26d5cc 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.72 2013/10/05 01:15:13 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.73 2013/10/05 01:19:15 mattst88 Exp $
+
+ 05 Oct 2013; Matt Turner <mattst88@gentoo.org>
+ -files/pam_mount-2.11-fix-build-without-cryptsetup.patch,
+ -pam_mount-2.11.ebuild, -pam_mount-2.13.ebuild:
+ Drop old.
*pam_mount-2.14 (05 Oct 2013)
diff --git a/sys-auth/pam_mount/files/pam_mount-2.11-fix-build-without-cryptsetup.patch b/sys-auth/pam_mount/files/pam_mount-2.11-fix-build-without-cryptsetup.patch
deleted file mode 100644
index 5f422e234265..000000000000
--- a/sys-auth/pam_mount/files/pam_mount-2.11-fix-build-without-cryptsetup.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From a3b07a52a41b17dacbc1b703b6dd331cd1cf6e61 Mon Sep 17 00:00:00 2001
-From: Jan Engelhardt <jengelh@medozas.de>
-Date: Tue, 16 Aug 2011 07:28:21 +0200
-Subject: [PATCH] build: make build of pmt-ehd dependent upon HAVE_LIBCRYPTSETUP
-
----
- src/Makefile.am | 2 +-
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 347d475..38e8395 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -8,7 +8,7 @@ AM_CFLAGS = ${regular_CFLAGS} ${GCC_FVISIBILITY_HIDDEN} \
- moduledir = @PAM_MODDIR@
- module_LTLIBRARIES = pam_mount.la
- sbin_PROGRAMS = pmvarrun
--if HAVE_LIBCRYPTO
-+if HAVE_LIBCRYPTSETUP
- sbin_PROGRAMS += pmt-ehd
- endif
- ssbin_PROGRAMS = mount.crypt
---
-1.7.3.4
-
diff --git a/sys-auth/pam_mount/pam_mount-2.11.ebuild b/sys-auth/pam_mount/pam_mount-2.11.ebuild
deleted file mode 100644
index ccf0d4bd89d6..000000000000
--- a/sys-auth/pam_mount/pam_mount-2.11.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2012 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.8 2012/05/04 18:57:21 jdhore Exp $
-
-EAPI=4
-
-inherit eutils multilib autotools
-
-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}
- virtual/pkgconfig
- app-arch/xz-utils"
-RDEPEND="${COMMON_DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-fix-build-without-cryptsetup.patch
-
- eautoreconf
-}
-
-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
-}
diff --git a/sys-auth/pam_mount/pam_mount-2.13.ebuild b/sys-auth/pam_mount/pam_mount-2.13.ebuild
deleted file mode 100644
index cd3cf8fd2435..000000000000
--- a/sys-auth/pam_mount/pam_mount-2.13.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2012 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.13.ebuild,v 1.3 2012/05/04 18:57:21 jdhore 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
-}