diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-06-21 16:23:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-06-21 16:23:23 +0000 |
commit | 9b45cdaf5eeb1df306f14f4c1f5717da86bdee00 (patch) | |
tree | 25301096acc0668a6b004bb6dce1418cf404026e /sys-libs/pam | |
parent | Mask live ebuilds for Emacs 23 trunk and release branch. (diff) | |
download | gentoo-2-9b45cdaf5eeb1df306f14f4c1f5717da86bdee00.tar.gz gentoo-2-9b45cdaf5eeb1df306f14f4c1f5717da86bdee00.tar.bz2 gentoo-2-9b45cdaf5eeb1df306f14f4c1f5717da86bdee00.zip |
Restore the patch to disable man regeneration, comment it so that there is a bug reference too; also comment the xtests patch. Fix the warning for broken setups, removing pam_timestamp (which is present again).
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/pam')
-rw-r--r-- | sys-libs/pam/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/pam/pam-1.1.0.ebuild | 14 |
2 files changed, 18 insertions, 3 deletions
diff --git a/sys-libs/pam/ChangeLog b/sys-libs/pam/ChangeLog index 2dbd60c28185..da259f677fd0 100644 --- a/sys-libs/pam/ChangeLog +++ b/sys-libs/pam/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/pam # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.242 2009/06/21 09:31:20 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/ChangeLog,v 1.243 2009/06/21 16:23:23 flameeyes Exp $ + + 21 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.0.ebuild: + Restore the patch to disable man regeneration, comment it so that there is + a bug reference too; also comment the xtests patch. Fix the warning for + broken setups, removing pam_timestamp (which is present again). 21 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> pam-1.1.0.ebuild, +files/Linux-PAM-1.1.0-nonls.patch: diff --git a/sys-libs/pam/pam-1.1.0.ebuild b/sys-libs/pam/pam-1.1.0.ebuild index 8ae0091ed4e4..ce78e66860f2 100644 --- a/sys-libs/pam/pam-1.1.0.ebuild +++ b/sys-libs/pam/pam-1.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild,v 1.3 2009/06/21 09:31:20 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam/pam-1.1.0.ebuild,v 1.4 2009/06/21 16:23:23 flameeyes Exp $ inherit libtool multilib eutils autotools pam toolchain-funcs flag-o-matic @@ -55,7 +55,7 @@ check_old_modules() { eerror "" eerror "Your current setup is using one or more of the following modules," eerror "that are not built or supported anymore:" - eerror "pam_pwdb, pam_timestamp, pam_console" + eerror "pam_pwdb, pam_console" eerror "If you are in real need for these modules, please contact the maintainers" eerror "of PAM through http://bugs.gentoo.org/ providing information about its" eerror "use cases." @@ -78,6 +78,15 @@ src_unpack() { unpack ${A} cd "${S}" + # Avoid regeneration man _and_ documentation. The documentation + # regeneration requires the xsl stylesheets for DocBook as well as + # a browser; if lynx is not found, the buildsystem will also + # default to Firefox, bad choice. — bug #274929 + epatch "${FILESDIR}/${MY_PN}-0.99.7.0-disable-regenerate-man.patch" + + # Avoid building xtests during "make all"; note that for what + # we're concerned xtests are not even executed, so we should + # probably use EXTRA_PROGRAMS. epatch "${FILESDIR}/${MY_PN}-0.99.8.1-xtests.patch" # Remove NIS dependencies, see bug #235431 @@ -118,6 +127,7 @@ src_compile() { --disable-db \ --disable-dependency-tracking \ --disable-prelude \ + --disable-regenerate-man \ ${myconf} || die "econf failed" emake sepermitlockdir="/var/run/sepermit" || die "emake failed" } |