diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-15 06:50:01 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-15 06:50:01 +0000 |
commit | 217c97b86a82521de65b5f9149ff7028b6db1504 (patch) | |
tree | d10c66cd233bb2597cc2c0f0f663531fe7173d56 /kde-base | |
parent | Remove old, vulnerable versions. (diff) | |
download | gentoo-2-217c97b86a82521de65b5f9149ff7028b6db1504.tar.gz gentoo-2-217c97b86a82521de65b5f9149ff7028b6db1504.tar.bz2 gentoo-2-217c97b86a82521de65b5f9149ff7028b6db1504.zip |
Patch also the latest version that I forgot yesterday.
(Portage version: 2.1.1_pre2-r8)
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/kdm/ChangeLog | 5 | ||||
-rw-r--r-- | kde-base/kdm/kdm-3.5.3-r2.ebuild | 12 |
2 files changed, 9 insertions, 8 deletions
diff --git a/kde-base/kdm/ChangeLog b/kde-base/kdm/ChangeLog index 667e8c93dc3b..836a5440f7dc 100644 --- a/kde-base/kdm/ChangeLog +++ b/kde-base/kdm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for kde-base/kdm # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdm/ChangeLog,v 1.65 2006/07/14 19:59:35 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdm/ChangeLog,v 1.66 2006/07/15 06:50:01 flameeyes Exp $ + + 15 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> kdm-3.5.3-r2.ebuild: + Patch also the latest version that I forgot yesterday. 14 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> kdm-3.5.2-r1.ebuild: Don't enable shadow when pam is disabled on anything but glibc, as that is a diff --git a/kde-base/kdm/kdm-3.5.3-r2.ebuild b/kde-base/kdm/kdm-3.5.3-r2.ebuild index b3e6fe17f8dc..ecccd93289b9 100644 --- a/kde-base/kdm/kdm-3.5.3-r2.ebuild +++ b/kde-base/kdm/kdm-3.5.3-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdm/kdm-3.5.3-r2.ebuild,v 1.3 2006/07/09 06:07:55 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdm/kdm-3.5.3-r2.ebuild,v 1.4 2006/07/15 06:50:01 flameeyes Exp $ KMNAME=kdebase MAXKDEVER=$PV @@ -12,7 +12,7 @@ SRC_URI="${SRC_URI} DESCRIPTION="KDE login manager, similar to xdm and gdm" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="pam" +IUSE="pam elibc_glibc" KMEXTRA="kdmlib/" # kioslave/thumbnail/configure.in.in is to have HAVE_LIBART. Can be dropped on @@ -40,12 +40,10 @@ src_unpack() { } src_compile() { - local myconf="--with-x-binaries-dir=/usr/bin" + local myconf="--with-x-binaries-dir=/usr/bin $(use_with pam)" - if use pam; then - myconf="${myconf} --with-pam=yes" - else - myconf="${myconf} --with-pam=no --with-shadow" + if ! use pam && use elibc_glibc; then + myconf="${myconf} --with-shadow" fi export USER_LDFLAGS="${LDFLAGS}" |