From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E9874138206 for ; Tue, 26 Apr 2016 19:06:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC96621C061; Tue, 26 Apr 2016 19:06:37 +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 21E7A21C026 for ; Tue, 26 Apr 2016 19:06:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C8A40340BD1 for ; Tue, 26 Apr 2016 19:06:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5718968 for ; Tue, 26 Apr 2016 19:06:31 +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: <1461692430.c1151b7b8e0a172a73d2884c421e1c8465b041b3.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/mricrogl/ X-VCS-Repository: proj/sci X-VCS-Files: sci-visualization/mricrogl/mricrogl-1.0.20151111.ebuild X-VCS-Directories: sci-visualization/mricrogl/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c1151b7b8e0a172a73d2884c421e1c8465b041b3 X-VCS-Branch: master Date: Tue, 26 Apr 2016 19:06:31 +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: 418a3004-2175-4a1c-8688-4f47535b7ebb X-Archives-Hash: 2d3a5cbba1d549eedb2e8e6a33ab5161 commit: c1151b7b8e0a172a73d2884c421e1c8465b041b3 Author: Horea Christian yandex com> AuthorDate: Tue Apr 26 17:40:30 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Apr 26 17:40:30 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c1151b7b sci-visualization/mricrogl: new versioned ebuild Package-Manager: portage-2.2.28 .../mricrogl/mricrogl-1.0.20151111.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sci-visualization/mricrogl/mricrogl-1.0.20151111.ebuild b/sci-visualization/mricrogl/mricrogl-1.0.20151111.ebuild new file mode 100644 index 0000000..0c33fad --- /dev/null +++ b/sci-visualization/mricrogl/mricrogl-1.0.20151111.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +inherit git-r3 gnome2-utils + +DESCRIPTION="A simle medical imaging visualization tool" +HOMEPAGE="https://github.com/neurolabusc/MRIcroGL" +SRC_URI="" +EGIT_REPO_URI="https://github.com/neurolabusc/MRIcroGL.git" +EGIT_COMMIT="${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="" +DEPEND="dev-lang/fpc + dev-lang/lazarus" + +src_compile() { + lazbuild -B --lazarusdir="/usr/share/lazarus/" simplelaz.lpi || die +} + +src_install() { + dobin MRIcroGL + + insinto /usr/bin/shaders + doins shaders/*.txt + + doicon -s scalable mricrogl.svg + make_desktop_entry MRIcroGL MRIcroGL /usr/share/icons/hicolor/scalable/apps/mricrogl.svg +} + +pkg_postinst() { + gnome2_icon_cache_update +} +pkg_postrm() { + gnome2_icon_cache_update +}