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 09521139694 for ; Thu, 16 Mar 2017 19:35:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4AE06E0D3C; Thu, 16 Mar 2017 19:35:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 29775E0D3C for ; Thu, 16 Mar 2017 19:35:28 +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 5EEE734112A for ; Thu, 16 Mar 2017 19:35:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED5456A87 for ; Thu, 16 Mar 2017 19:35:25 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1489248600.06da54748ac03cd9916e4a2cccd25a44e6f56f1a.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/surf-ice/ X-VCS-Repository: proj/sci X-VCS-Files: sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild X-VCS-Directories: sci-visualization/surf-ice/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 06da54748ac03cd9916e4a2cccd25a44e6f56f1a X-VCS-Branch: master Date: Thu, 16 Mar 2017 19:35:25 +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: 25fa0edc-5b1c-47df-b3f5-5e6d316f81cc X-Archives-Hash: ce1b53ed3c6548a158968d18a1cb2cef commit: 06da54748ac03cd9916e4a2cccd25a44e6f56f1a Author: Horea Christian yandex com> AuthorDate: Sat Mar 11 16:10:00 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Mar 11 16:10:00 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=06da5474 sci-visualization/surf-ice: added stable version (#737) * sci-visualization/surf-ice: added stable version Package-Manager: Portage-2.3.3, Repoman-2.3.1 * sci-visualization/surf-ice: removed CVS tag Package-Manager: Portage-2.3.3, Repoman-2.3.1 .../surf-ice/surf-ice-1.0.20170202.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild b/sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild new file mode 100644 index 000000000..75be4debe --- /dev/null +++ b/sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils + +DESCRIPTION="A simple medical imaging visualization tool" +HOMEPAGE="https://github.com/neurolabusc/surf-ice" +SRC_URI="https://github.com/neurolabusc/surf-ice/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="" +DEPEND="dev-lang/fpc + >=dev-lang/lazarus-1.6.2" + +#S="${WORKDIR}/surf-ice-${PV}" + +src_compile() { + lazbuild -B --lazarusdir="/usr/share/lazarus/" surfice.lpi || die +} + +src_install() { + dobin surfice + + insinto /usr/bin/shaders + doins shaders/*.txt + + insinto /usr/bin/shadersOld + doins shadersOld/*.txt + + doicon -s scalable Surfice.jpg + make_desktop_entry surf-ice surf-ice /usr/share/icons/hicolor/scalable/apps/Surfice.jpg +} + +pkg_postinst() { + gnome2_icon_cache_update +} +pkg_postrm() { + gnome2_icon_cache_update +}