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 83651139085 for ; Sun, 15 Jan 2017 10:13:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55D6C141FE; Sun, 15 Jan 2017 10:13:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 339C5141FE for ; Sun, 15 Jan 2017 10:13:21 +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 75FB03413A6 for ; Sun, 15 Jan 2017 10:13:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C3B927DA for ; Sun, 15 Jan 2017 10:13:15 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1484475163.1cc312eab8232570989affd5f49ca8fe24aff4f1.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/xyscan/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-visualization/xyscan/xyscan-3.3.1-r1.ebuild X-VCS-Directories: sci-visualization/xyscan/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1cc312eab8232570989affd5f49ca8fe24aff4f1 X-VCS-Branch: master Date: Sun, 15 Jan 2017 10:13:15 +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: b599bc33-0120-4d30-9c67-de1647851857 X-Archives-Hash: b36ccf7aaa59526b739b699f67c5110e commit: 1cc312eab8232570989affd5f49ca8fe24aff4f1 Author: Gerhard Bräunlich gmx net> AuthorDate: Sat Jan 14 18:12:39 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jan 15 10:12:43 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cc312ea sci-visualization/xyscan: EAPI bump 4 -> 6 Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/3476 sci-visualization/xyscan/xyscan-3.3.1-r1.ebuild | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/sci-visualization/xyscan/xyscan-3.3.1-r1.ebuild b/sci-visualization/xyscan/xyscan-3.3.1-r1.ebuild new file mode 100644 index 00000000..4a1f4c5 --- /dev/null +++ b/sci-visualization/xyscan/xyscan-3.3.1-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit qmake-utils versionator + +MY_PV=$(replace_version_separator 2 '') + +DESCRIPTION="Tool for extracting data points from graphs" +HOMEPAGE="http://star.physics.yale.edu/~ullrich/xyscanDistributionPage/" +SRC_URI="http://star.physics.yale.edu/~ullrich/${PN}DistributionPage/${MY_PV}/${PN}-${MY_PV}-src.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="l10n_fr" + +RDEPEND="dev-qt/qtcore:4 + dev-qt/qtgui:4" +DEPEND="$RDEPEND" + +S="${WORKDIR}/${PN}" + +src_prepare() { + default + sed -i \ + -e "s:qApp->applicationDirPath() + \"/../docs\":\"${EPREFIX}/usr/share/doc/${PF}/html\":" \ + xyscanWindow.cpp || die "Failed to fix docs path" +} + +src_configure() { + eqmake4 +} + +src_install() { + dobin xyscan + HTML_DOCS=( docs/en/. ) + einstalldocs + use l10n_fr && dodoc -r docs/fr + newicon images/xyscanIcon.png xyscan.png + make_desktop_entry xyscan "xyscan data point extractor" +}