From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 800081395E2 for ; Sat, 5 Nov 2016 16:44:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6779E0BE0; Sat, 5 Nov 2016 16:44:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBAA5E0BE0 for ; Sat, 5 Nov 2016 16:44:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4BF00341509 for ; Sat, 5 Nov 2016 16:44:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2B372EE for ; Sat, 5 Nov 2016 16:44:14 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1478364237.c60cd9ac3c52ab0f5d1a71631ca55de9088c6e2a.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/gwenhywfar/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild X-VCS-Directories: sys-libs/gwenhywfar/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: c60cd9ac3c52ab0f5d1a71631ca55de9088c6e2a X-VCS-Branch: master Date: Sat, 5 Nov 2016 16:44:14 +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: 52453e79-bd6f-4294-a8ea-6f5538c56f77 X-Archives-Hash: f87601775e9c81afd9abf9e4b870d030 commit: c60cd9ac3c52ab0f5d1a71631ca55de9088c6e2a Author: Felix Leif Keppmann keppmann de> AuthorDate: Tue Nov 1 16:25:06 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Nov 5 16:43:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c60cd9ac sys-libs/gwenhywfar: Added qt5 use flag Added use flag qt5 to trigger compilation of Qt5 GUI. Cleaned up src_install. Cleaned up versions of dependencies. sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild | 63 +++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild b/sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild new file mode 100644 index 00000000..f8721fb --- /dev/null +++ b/sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit qmake-utils + +MY_P="${P/_beta/beta}" +DESCRIPTION="A multi-platform helper library for other libraries" +HOMEPAGE="http://www.aquamaniac.de/aqbanking/" +SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=01&release=201&file=01&dummy=${MY_P}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug doc fox gtk qt4 qt5" + +RDEPEND="dev-libs/libgpg-error + dev-libs/libgcrypt:0= + dev-libs/openssl:0= + net-libs/gnutls:= + virtual/libiconv + virtual/libintl + fox? ( x11-libs/fox:1.6 ) + gtk? ( x11-libs/gtk+:2 ) + qt4? ( dev-qt/qtgui:4 ) + qt5? ( dev-qt/qtgui:5 )" +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/gettext + doc? ( app-doc/doxygen )" + +# broken upstream, reported but got no reply +RESTRICT="test" + +src_configure() { + local guis + local extra_opts + use fox && guis="${guis} fox16" + use gtk && guis="${guis} gtk2" + use qt4 && guis="${guis} qt4" + use qt5 && guis="${guis} qt5" && extra_opts="--with-qt5-qmake="$(qt5_get_bindir)/qmake" --with-qt5-moc="$(qt5_get_bindir)/moc"" + econf \ + --enable-ssl \ + $(use_enable debug) \ + $(use_enable doc full-doc) \ + --with-guis="${guis}" \ + ${extra_opts} \ + --with-docpath="${EPREFIX}/usr/share/doc/${PF}/apidoc" +} + +src_compile() { + emake + use doc && emake srcdoc +} + +src_install() { + default + use doc && emake DESTDIR="${D}" install-srcdoc + find "${ED}" -name '*.la' -delete || die +}