From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8D5F5198005 for ; Mon, 18 Mar 2013 14:32:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F1DBE04BA; Mon, 18 Mar 2013 14:32:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F076E04D6 for ; Mon, 18 Mar 2013 14:32:03 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A45833DB94 for ; Mon, 18 Mar 2013 14:32:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6EB5EE4073 for ; Mon, 18 Mar 2013 14:32:00 +0000 (UTC) From: "Ben de Groot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben de Groot" Message-ID: <1363617092.dfbfee6cc7dd07b8cb3250f5885e6aa1a1a08c03.yngwin@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: x11-misc/sddm/ X-VCS-Repository: proj/qt X-VCS-Files: x11-misc/sddm/sddm-9999.ebuild X-VCS-Directories: x11-misc/sddm/ X-VCS-Committer: yngwin X-VCS-Committer-Name: Ben de Groot X-VCS-Revision: dfbfee6cc7dd07b8cb3250f5885e6aa1a1a08c03 X-VCS-Branch: master Date: Mon, 18 Mar 2013 14:32:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d764c602-953d-44e2-a158-2b16f316a40c X-Archives-Hash: 25044726616d41508c988ef0dbec29ca commit: dfbfee6cc7dd07b8cb3250f5885e6aa1a1a08c03 Author: Ben de Groot gmail com> AuthorDate: Mon Mar 18 14:31:32 2013 +0000 Commit: Ben de Groot gentoo org> CommitDate: Mon Mar 18 14:31:32 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=dfbfee6c x11-misc/sddm: add libxcb dep; keepdir /run/sddm Package-Manager: portage-2.2.0_alpha166 --- x11-misc/sddm/sddm-9999.ebuild | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/x11-misc/sddm/sddm-9999.ebuild b/x11-misc/sddm/sddm-9999.ebuild index 0300134..20af841 100644 --- a/x11-misc/sddm/sddm-9999.ebuild +++ b/x11-misc/sddm/sddm-9999.ebuild @@ -17,6 +17,7 @@ REQUIRED_USE="^^ ( qt4 qt5 )" RDEPEND="sys-libs/pam sys-power/upower + x11-libs/libxcb qt4? ( dev-qt/qtdeclarative:4 ) qt5? ( dev-qt/qtdeclarative:5 )" DEPEND="${RDEPEND} @@ -32,9 +33,17 @@ src_prepare() { sed -e 's|-Wall -march=native||' \ -e 's|-O2||' \ -i CMakeLists.txt || die 'sed failed' + # use our location + sed -e 's|AuthDir=/var/run/xauth|AuthDir=/run/sddm|' \ + -i data/sddm.conf.in } src_configure() { local mycmakeargs=( $(cmake-utils_use_use qt5 QT5) ) cmake-utils_src_configure } + +src_install() { + cmake-utils_src_install + keepdir /run/sddm +}