diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-05-26 15:26:09 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-26 16:31:27 -0400 |
commit | d8948de003c8b33410e7ab3a0c707e9cb91a8b8a (patch) | |
tree | 9fb26d68ab24db3a52b2a3604d345128a025d222 /sys-auth/pam_mysql | |
parent | x11-plugins/pidgin-hotkeys: bump EAPI and drop eutils (diff) | |
download | gentoo-d8948de003c8b33410e7ab3a0c707e9cb91a8b8a.tar.gz gentoo-d8948de003c8b33410e7ab3a0c707e9cb91a8b8a.tar.bz2 gentoo-d8948de003c8b33410e7ab3a0c707e9cb91a8b8a.zip |
sys-auth/pam_mysql: drop EAPI=2
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sys-auth/pam_mysql')
-rw-r--r-- | sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
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 deleted file mode 100644 index a521b12c0351..000000000000 --- a/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 -inherit autotools libtool pam eutils - -DESCRIPTION="pam_mysql is a module for pam to authenticate users with mysql" -HOMEPAGE="http://pam-mysql.sourceforge.net/" - -SRC_URI="mirror://sourceforge/pam-mysql/${P/_rc/RC}.tar.gz" -DEPEND=">=sys-libs/pam-0.72 virtual/mysql" -RDEPEND="${DEPEND}" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ppc ~sparc x86" -IUSE="openssl" -S="${WORKDIR}/${P/_rc/RC}" - -src_prepare() { - epatch "${FILESDIR}/${P}-link-to-pam.diff" - epatch "${FILESDIR}/${P}-memleak.diff" - eautoreconf - elibtoolize -} - -src_configure() { - econf $(use_with openssl) -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" libdir="$(getpam_mod_dir)" install || die "install failed" - rm "${D}/$(getpam_mod_dir)/pam_mysql.la" || die "Failed to remove pam_mysql.la" - dodoc CREDITS ChangeLog NEWS README -} |