grknight 14/08/19 17:14:31 Modified: ChangeLog Added: pam_mysql-0.7_rc1-r5.ebuild Log: Fix deprecated autotools macros for bug 468750 and EAPI5 bump (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
Revision Changes Path 1.24 sys-auth/pam_mysql/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mysql/ChangeLog?rev=1.24&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mysql/ChangeLog?rev=1.24&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mysql/ChangeLog?r1=1.23&r2=1.24 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_mysql/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- ChangeLog 7 May 2014 02:21:43 -0000 1.23 +++ ChangeLog 19 Aug 2014 17:14:31 -0000 1.24 @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/pam_mysql # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mysql/ChangeLog,v 1.23 2014/05/07 02:21:43 grknight Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mysql/ChangeLog,v 1.24 2014/08/19 17:14:31 grknight Exp $ + +*pam_mysql-0.7_rc1-r5 (19 Aug 2014) + + 19 Aug 2014; <[email protected]> +pam_mysql-0.7_rc1-r5.ebuild: + Fix deprecated autotools macros for bug 468750 and EAPI5 bump 07 May 2014; Brian Evans <[email protected]> -pam_mysql-0.7_rc1-r1.ebuild, -pam_mysql-0.7_rc1-r2.ebuild, -pam_mysql-0.7_rc1-r3.ebuild: 1.1 sys-auth/pam_mysql/pam_mysql-0.7_rc1-r5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r5.ebuild?rev=1.1&content-type=text/plain Index: pam_mysql-0.7_rc1-r5.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r5.ebuild,v 1.1 2014/08/19 17:14:31 grknight Exp $ EAPI=5 inherit autotools-utils pam 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=" openssl? ( dev-libs/openssl:0= ) >=sys-libs/pam-0.72:0= virtual/mysql:0= " RDEPEND="${DEPEND}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" IUSE="openssl" S="${WORKDIR}/${P/_rc/RC}" PATCHES=( "${FILESDIR}/${P}-link-to-pam.diff" "${FILESDIR}/${P}-memleak.diff" ) DOCS=( CREDITS ChangeLog NEWS README ) AUTOTOOLS_AUTORECONF="yes" AUTOTOOLS_PRUNE_LIBTOOL_FILES="modules" src_prepare() { # Update autotools deprecated file name and macro for bug 468750 mv configure.in configure.ac || die "configure rename failed" sed -i s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/ configure.ac || die "sed failed" autotools-utils_src_prepare } src_configure() { local myeconfargs=( $(use_with openssl) ) autotools-utils_src_configure } src_install() { autotools-utils_src_install libdir="$(getpam_mod_dir)" }
