Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/openpam/
Date: Thu, 01 Mar 2018 15:09:59
Message-Id: 1519916982.e9829359a6c162f162d078c0ff0fe0c92e1056d4.mgorny@gentoo
1 commit: e9829359a6c162f162d078c0ff0fe0c92e1056d4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 1 14:44:46 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 15:09:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9829359
7
8 sys-auth/openpam: Drop old revision
9
10 sys-auth/openpam/openpam-20140912.ebuild | 49 --------------------------------
11 1 file changed, 49 deletions(-)
12
13 diff --git a/sys-auth/openpam/openpam-20140912.ebuild b/sys-auth/openpam/openpam-20140912.ebuild
14 deleted file mode 100644
15 index f3225808744..00000000000
16 --- a/sys-auth/openpam/openpam-20140912.ebuild
17 +++ /dev/null
18 @@ -1,49 +0,0 @@
19 -# Copyright 1999-2018 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI="5"
23 -
24 -AUTOTOOLS_AUTORECONF=1
25 -AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
26 -
27 -inherit multilib autotools-multilib
28 -
29 -DESCRIPTION="Open source PAM library"
30 -HOMEPAGE="http://www.openpam.org/"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="BSD"
34 -SLOT="0"
35 -KEYWORDS="~amd64-fbsd ~x86-fbsd"
36 -IUSE="debug vim-syntax"
37 -
38 -RDEPEND="!sys-libs/pam"
39 -DEPEND="sys-devel/make
40 - dev-lang/perl"
41 -PDEPEND="sys-auth/pambase
42 - vim-syntax? ( app-vim/pam-syntax )"
43 -
44 -PATCHES=(
45 - "${FILESDIR}/${PN}-20130907-gentoo.patch"
46 - "${FILESDIR}/${PN}-20130907-nbsd.patch"
47 - "${FILESDIR}/${PN}-20130907-module-dir.patch"
48 - )
49 -
50 -DOCS=( CREDITS HISTORY RELNOTES README )
51 -
52 -src_prepare() {
53 - sed -i -e 's:-Werror::' "${S}/configure.ac"
54 -
55 - autotools-multilib_src_prepare
56 -}
57 -
58 -my_configure() {
59 - local myeconfargs=(
60 - --with-modules-dir=/$(get_libdir)/security
61 - )
62 - autotools-utils_src_configure
63 -}
64 -
65 -src_configure() {
66 - multilib_parallel_foreach_abi my_configure
67 -}