diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-10-30 12:03:57 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-10-30 12:03:57 +0000 |
commit | 89cf0b9ee9ae699ca5f1dd5636bdb3b7bbf1a91b (patch) | |
tree | 8b2393c043fc9cc637c4ca4e586a285154a4a33e /sys-auth/openpam | |
parent | stable arm ppc ppc64, bug #440160 (diff) | |
download | gentoo-2-89cf0b9ee9ae699ca5f1dd5636bdb3b7bbf1a91b.tar.gz gentoo-2-89cf0b9ee9ae699ca5f1dd5636bdb3b7bbf1a91b.tar.bz2 gentoo-2-89cf0b9ee9ae699ca5f1dd5636bdb3b7bbf1a91b.zip |
version bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'sys-auth/openpam')
-rw-r--r-- | sys-auth/openpam/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/openpam/openpam-20120526.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/sys-auth/openpam/ChangeLog b/sys-auth/openpam/ChangeLog index 9bb39c4c5002..0747591cc3c7 100644 --- a/sys-auth/openpam/ChangeLog +++ b/sys-auth/openpam/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/openpam # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.22 2012/05/24 05:04:52 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.23 2012/10/30 12:03:57 aballier Exp $ + +*openpam-20120526 (30 Oct 2012) + + 30 Oct 2012; Alexis Ballier <aballier@gentoo.org> +openpam-20120526.ebuild: + version bump 24 May 2012; Mike Frysinger <vapier@gentoo.org> openpam-20071221.ebuild, openpam-20111218.ebuild: diff --git a/sys-auth/openpam/openpam-20120526.ebuild b/sys-auth/openpam/openpam-20120526.ebuild new file mode 100644 index 000000000000..27a9c26d635a --- /dev/null +++ b/sys-auth/openpam/openpam-20120526.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20120526.ebuild,v 1.1 2012/10/30 12:03:57 aballier Exp $ + +EAPI="2" +# https://bugs.gentoo.org/show_bug.cgi?id=318121 +WANT_AUTOMAKE=1.9 +inherit multilib autotools eutils libtool + +DESCRIPTION="Open source PAM library." +HOMEPAGE="http://www.openpam.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +IUSE="debug vim-syntax" + +RDEPEND="!sys-libs/pam" +DEPEND="sys-devel/make + dev-lang/perl" +PDEPEND="sys-auth/pambase + vim-syntax? ( app-vim/pam-syntax )" + +src_prepare() { + epatch "${FILESDIR}/${PN}-20071221-gentoo.patch" + epatch "${FILESDIR}/${PN}-20050201-nbsd.patch" + + sed -i -e 's:-Werror::' "${S}/configure.ac" + + mkdir "${S}/m4" # Otherwise aclocal fails since ACLOCAL_AMFLAGS is set in Makefile.am + eautoreconf + elibtoolize +} + +src_configure() { + econf ${myconf} \ + --disable-dependency-tracking \ + --with-modules-dir=/$(get_libdir)/security/ +} + +src_install() { + emake -j1 DESTDIR="${D}" install || die + dodoc CREDITS HISTORY RELNOTES README || die + + find "${D}" -name '*.la' -delete || die +} |