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 3AD61139086 for ; Thu, 12 Jan 2017 17:54:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C19423404A; Thu, 12 Jan 2017 17:54:19 +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 3FE1C23404A for ; Thu, 12 Jan 2017 17:54: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 354513416CC for ; Thu, 12 Jan 2017 17:54:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2680262E for ; Thu, 12 Jan 2017 17:54:16 +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: <1483970011.6f0488d558af648d64c5fe8e1f36b15370b940d6.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/metadata.xml sci-visualization/surf-ice/surf-ice-9999.ebuild X-VCS-Directories: sci-visualization/surf-ice/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 6f0488d558af648d64c5fe8e1f36b15370b940d6 X-VCS-Branch: master Date: Thu, 12 Jan 2017 17:54:16 +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: 490fdc57-c707-4d04-978f-40761c0d9495 X-Archives-Hash: ac55d9a78c8a44186b1cd27f0c4e32ae commit: 6f0488d558af648d64c5fe8e1f36b15370b940d6 Author: Horea Christian yandex com> AuthorDate: Mon Jan 9 13:53:31 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Jan 9 13:53:31 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6f0488d5 Surf ice (#719) * sci-visualization/surf-ice: new ebuild Package-Manager: Portage-2.3.3, Repoman-2.3.1 * sci-visualization/surf-ice: updated metadata Package-Manager: Portage-2.3.3, Repoman-2.3.1 sci-visualization/surf-ice/metadata.xml | 23 +++++++++++++ sci-visualization/surf-ice/surf-ice-9999.ebuild | 43 +++++++++++++++++++++++++ 2 files changed, 66 insertions(+) diff --git a/sci-visualization/surf-ice/metadata.xml b/sci-visualization/surf-ice/metadata.xml new file mode 100644 index 0000000..434c6e7 --- /dev/null +++ b/sci-visualization/surf-ice/metadata.xml @@ -0,0 +1,23 @@ + + + + + sci@gentoo.org + Gentoo Science Project + + + horea.christ@gmail.com + Horea Christian + + + Surf Ice is an open source surface render. It supports + mesh formats including 3DS, CTM, DXF, FreeSurfer, GII + (GIfTI), GTS, LWO2, MS3D, MZ3, NV (BrainNetViewer), OBJ, + OFF, PLY, STL, VTK. It also supports tractography formats + including BFloat, PDB, TCK, TRK, and VTK. Further, the + software supports the NIfTI voxelwise format + + + neurolabusc/surf-ice + + diff --git a/sci-visualization/surf-ice/surf-ice-9999.ebuild b/sci-visualization/surf-ice/surf-ice-9999.ebuild new file mode 100644 index 0000000..e65eb5c --- /dev/null +++ b/sci-visualization/surf-ice/surf-ice-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit git-r3 gnome2-utils + +DESCRIPTION="A surface rendering tool supporting neuroimaging data" +HOMEPAGE="https://github.com/neurolabusc/surf-ice" +SRC_URI="" +EGIT_REPO_URI="https://github.com/neurolabusc/surf-ice.git" + +LICENSE="BSD" +SLOT="0" + +RDEPEND="" +DEPEND="dev-lang/fpc + >=dev-lang/lazarus-1.6.2" + +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 +}