diff options
Diffstat (limited to 'kde-base/kcheckpass')
-rw-r--r-- | kde-base/kcheckpass/ChangeLog | 9 | ||||
-rw-r--r-- | kde-base/kcheckpass/kcheckpass-4.9.5.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/kde-base/kcheckpass/ChangeLog b/kde-base/kcheckpass/ChangeLog index 0faab87a129e..f588131a4e94 100644 --- a/kde-base/kcheckpass/ChangeLog +++ b/kde-base/kcheckpass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kcheckpass -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kcheckpass/ChangeLog,v 1.245 2012/12/08 11:53:45 dilfridge Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kcheckpass/ChangeLog,v 1.246 2013/01/05 20:19:11 creffett Exp $ + +*kcheckpass-4.9.5 (05 Jan 2013) + + 05 Jan 2013; <creffett@gentoo.org> +kcheckpass-4.9.5.ebuild: + Version bump KDE SC 4.9.5 08 Dec 2012; Andreas K. Huettel <dilfridge@gentoo.org> -kcheckpass-4.8.5.ebuild: diff --git a/kde-base/kcheckpass/kcheckpass-4.9.5.ebuild b/kde-base/kcheckpass/kcheckpass-4.9.5.ebuild new file mode 100644 index 000000000000..9492ea30cf4b --- /dev/null +++ b/kde-base/kcheckpass/kcheckpass-4.9.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kcheckpass/kcheckpass-4.9.5.ebuild,v 1.1 2013/01/05 20:19:11 creffett Exp $ + +EAPI=4 + +KMNAME="kde-workspace" +inherit kde4-meta + +DESCRIPTION="A simple password checker, used by any software in need of user authentication." +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="debug pam" + +RDEPEND=" + pam? ( + >=kde-base/kdebase-pam-7 + virtual/pam + ) +" +DEPEND="${RDEPEND} + x11-libs/libxkbfile +" + +src_prepare() { + kde4-meta_src_prepare + + use pam && epatch "${FILESDIR}/${PN}-4.4.2-no-SUID-no-GUID.patch" +} + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_with pam) + ) + + kde4-meta_src_configure +} |