Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_mysql/
Date: Sat, 26 May 2018 20:31:42
Message-Id: 1527366687.d8948de003c8b33410e7ab3a0c707e9cb91a8b8a.bman@gentoo
1 commit: d8948de003c8b33410e7ab3a0c707e9cb91a8b8a
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 26 19:26:09 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat May 26 20:31:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8948de0
7
8 sys-auth/pam_mysql: drop EAPI=2
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild | 38 --------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild b/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild
16 deleted file mode 100644
17 index a521b12c035..00000000000
18 --- a/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=2
25 -inherit autotools libtool pam eutils
26 -
27 -DESCRIPTION="pam_mysql is a module for pam to authenticate users with mysql"
28 -HOMEPAGE="http://pam-mysql.sourceforge.net/"
29 -
30 -SRC_URI="mirror://sourceforge/pam-mysql/${P/_rc/RC}.tar.gz"
31 -DEPEND=">=sys-libs/pam-0.72 virtual/mysql"
32 -RDEPEND="${DEPEND}"
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 ppc ~sparc x86"
36 -IUSE="openssl"
37 -S="${WORKDIR}/${P/_rc/RC}"
38 -
39 -src_prepare() {
40 - epatch "${FILESDIR}/${P}-link-to-pam.diff"
41 - epatch "${FILESDIR}/${P}-memleak.diff"
42 - eautoreconf
43 - elibtoolize
44 -}
45 -
46 -src_configure() {
47 - econf $(use_with openssl)
48 -}
49 -
50 -src_compile() {
51 - emake || die "emake failed"
52 -}
53 -
54 -src_install() {
55 - emake DESTDIR="${D}" libdir="$(getpam_mod_dir)" install || die "install failed"
56 - rm "${D}/$(getpam_mod_dir)/pam_mysql.la" || die "Failed to remove pam_mysql.la"
57 - dodoc CREDITS ChangeLog NEWS README
58 -}