commit: e6b30632cdae3b486493ecd71b678c5c9501ed9f Author: Elias Probst <mail <AT> eliasprobst <DOT> eu> AuthorDate: Tue Jun 17 17:54:48 2014 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Tue Jun 17 18:48:20 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=e6b30632
[sys-auth/qauth] Add live ebuild for qauth Package-Manager: portage-2.2.10 --- sys-auth/qauth/metadata.xml | 6 ++++++ sys-auth/qauth/qauth-9999.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/sys-auth/qauth/metadata.xml b/sys-auth/qauth/metadata.xml new file mode 100644 index 0000000..70af9db --- /dev/null +++ b/sys-auth/qauth/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>qt</herd> + <herd>lxqt</herd> +</pkgmetadata> diff --git a/sys-auth/qauth/qauth-9999.ebuild b/sys-auth/qauth/qauth-9999.ebuild new file mode 100644 index 0000000..b845ed0 --- /dev/null +++ b/sys-auth/qauth/qauth-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit cmake-utils git-r3 + +DESCRIPTION="User authentication library for Qt" +HOMEPAGE="https://github.com/MartinBriza/QAuth" +EGIT_REPO_URI="https://github.com/MartinBriza/QAuth.git" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="" +IUSE="+qt4 qt5" + +REQUIRED_USE="^^ ( qt4 qt5 )" + +DEPEND="virtual/pam" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_use qt5 QT5) + ) + + cmake-utils_src_configure +}
