diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2008-03-11 00:07:10 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2008-03-11 00:07:10 +0000 |
commit | 7d230fcd1e93cc9b3925ccc230cc470effb56dea (patch) | |
tree | 357908cfce1aa7466aefe4803c167bfd1cd69d63 /kde-base/kcheckpass | |
parent | Added sys-apps/findutils to RDEPEND since find/xargs are used by the bootmisc... (diff) | |
download | historical-7d230fcd1e93cc9b3925ccc230cc470effb56dea.tar.gz historical-7d230fcd1e93cc9b3925ccc230cc470effb56dea.tar.bz2 historical-7d230fcd1e93cc9b3925ccc230cc470effb56dea.zip |
Version bump to KDE 4.0.2.
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'kde-base/kcheckpass')
-rw-r--r-- | kde-base/kcheckpass/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/kcheckpass/files/kdebase-4.0.2-pam-optional.patch | 29 | ||||
-rw-r--r-- | kde-base/kcheckpass/kcheckpass-4.0.2.ebuild | 25 |
3 files changed, 61 insertions, 1 deletions
diff --git a/kde-base/kcheckpass/ChangeLog b/kde-base/kcheckpass/ChangeLog index a13191d4fce7..7b230faa7445 100644 --- a/kde-base/kcheckpass/ChangeLog +++ b/kde-base/kcheckpass/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/kcheckpass # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kcheckpass/ChangeLog,v 1.84 2008/03/04 02:25:43 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kcheckpass/ChangeLog,v 1.85 2008/03/10 23:25:01 philantrop Exp $ + +*kcheckpass-4.0.2 (10 Mar 2008) + + 10 Mar 2008; Wulf C. Krueger <philantrop@gentoo.org> + +files/kdebase-4.0.2-pam-optional.patch, +kcheckpass-4.0.2.ebuild: + Version bump to KDE 4.0.2 04 Mar 2008; Jeroen Roovers <jer@gentoo.org> kcheckpass-3.5.8.ebuild, kcheckpass-3.5.9.ebuild, kcheckpass-4.0.1.ebuild: diff --git a/kde-base/kcheckpass/files/kdebase-4.0.2-pam-optional.patch b/kde-base/kcheckpass/files/kdebase-4.0.2-pam-optional.patch new file mode 100644 index 000000000000..6fb54f05c547 --- /dev/null +++ b/kde-base/kcheckpass/files/kdebase-4.0.2-pam-optional.patch @@ -0,0 +1,29 @@ +diff --git a/kdebase/workspace/cmake/modules/FindPAM.cmake b/kdebase/workspace/cmake/modules/FindPAM.cmake +index 3499836..cd1c2bb 100644 +--- a/kdebase/workspace/cmake/modules/FindPAM.cmake ++++ b/kdebase/workspace/cmake/modules/FindPAM.cmake +@@ -5,6 +5,8 @@ + # PAM_INCLUDE_DIR - the pam include directory + # PAM_LIBRARIES - libpam library + ++if (WITH_PAM) ++ + if (PAM_INCLUDE_DIR AND PAM_LIBRARY) + # Already in cache, be silent + set(PAM_FIND_QUIETLY TRUE) +@@ -72,3 +74,5 @@ else (PAM_FOUND) + endif (PAM_FOUND) + + mark_as_advanced(PAM_INCLUDE_DIR PAM_LIBRARY DL_LIBRARY PAM_MESSAGE_CONST) ++ ++endif (WITH_PAM) +diff --git a/kdebase/workspace/cmake/modules/UnixAuth.cmake b/kdebase/workspace/cmake/modules/UnixAuth.cmake +index ed8ab9e..ce3bcc2 100644 +--- a/kdebase/workspace/cmake/modules/UnixAuth.cmake ++++ b/kdebase/workspace/cmake/modules/UnixAuth.cmake +@@ -1,4 +1,4 @@ +-find_package(PAM) ++macro_optional_find_package(PAM) + + set(UNIXAUTH_LIBRARIES) + set(UNIXAUTH_INCLUDE_DIRS) diff --git a/kde-base/kcheckpass/kcheckpass-4.0.2.ebuild b/kde-base/kcheckpass/kcheckpass-4.0.2.ebuild new file mode 100644 index 000000000000..9c5db745e414 --- /dev/null +++ b/kde-base/kcheckpass/kcheckpass-4.0.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kcheckpass/kcheckpass-4.0.2.ebuild,v 1.1 2008/03/10 23:25:01 philantrop Exp $ + +EAPI="1" + +KMNAME=kdebase-workspace +inherit kde4-meta + +DESCRIPTION="A simple password checker, used by any software in need of user authentication." +KEYWORDS="~amd64 ~x86" +IUSE="pam" + +DEPEND="pam? ( >=kde-base/kdebase-pam-7 + sys-libs/pam )" +RDEPEND="${DEPEND}" + +PATCHES="${FILESDIR}/kdebase-${PV}-pam-optional.patch" + +src_compile() { + mycmakeargs="${mycmakeargs} + $(cmake-utils_use_with pam PAM)" + + kde4-meta_src_compile +} |