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 1CD7C138334 for ; Tue, 17 Sep 2019 07:36:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32E33E0AAF; Tue, 17 Sep 2019 07:36:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1443EE0AAF for ; Tue, 17 Sep 2019 07:36:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 210E434B2A1 for ; Tue, 17 Sep 2019 07:36:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C87D763 for ; Tue, 17 Sep 2019 07:36:53 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1568705799.8ad7ab970f6c99a8daea4a3db8a40344e119afe6.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gps-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/gps-bin/gps-bin-2016-r1.ebuild X-VCS-Directories: dev-ada/gps-bin/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 8ad7ab970f6c99a8daea4a3db8a40344e119afe6 X-VCS-Branch: master Date: Tue, 17 Sep 2019 07:36:53 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 28e69d7e-1d72-4a02-ae30-20e27f6d9136 X-Archives-Hash: a74ed16bb78e67bd4d54ba09469bc0f2 commit: 8ad7ab970f6c99a8daea4a3db8a40344e119afe6 Author: Tupone Alfredo gentoo org> AuthorDate: Tue Sep 17 07:36:39 2019 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Sep 17 07:36:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ad7ab97 dev-ada/gps-bin: simplify using ada eclass Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Alfredo Tupone gentoo.org> dev-ada/gps-bin/gps-bin-2016-r1.ebuild | 62 ++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/dev-ada/gps-bin/gps-bin-2016-r1.ebuild b/dev-ada/gps-bin/gps-bin-2016-r1.ebuild new file mode 100644 index 00000000000..2ce82f7eeb6 --- /dev/null +++ b/dev-ada/gps-bin/gps-bin-2016-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +ADA_COMPAT=( gnat_2016 ) +inherit ada toolchain-funcs + +MY_P=gnat-gpl-2016-x86_64-linux-bin + +DESCRIPTION="The GNAT Programming Studio" +HOMEPAGE="http://libre.adacore.com/tools/gps/" +SRC_URI="http://mirrors.cdn.adacore.com/art/5739cefdc7a447658e0b016b -> ${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="${ADA_DEPS}" +RDEPEND="${DEPEND} + dev-ada/gnatcoll[${ADA_USEDEP},iconv,postgres,projects,readline,sqlite] + dev-libs/atk + dev-libs/glib + dev-libs/gobject-introspection + dev-libs/libffi + media-libs/fontconfig + media-libs/freetype + sys-devel/llvm + sys-devel/clang + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+ + x11-libs/pango + x11-themes/adwaita-icon-theme + x11-themes/hicolor-icon-theme" +REQUIRED_USE="${ADA_REQUIRED_USE}" + +S="${WORKDIR}"/${MY_P} + +src_compile() { + : +} + +src_install() { + into /opt/${P} + dobin bin/gps_exe + dobin bin/gps_cli + insinto /opt/${P}/share + doins -r share/doc + doins -r share/examples + doins -r share/gpr + doins -r share/gprconfig + doins -r share/gps + doins -r share/themes + insinto /opt/${P}/lib/ + doins -r lib/python2.7 + dosym ../../../usr/bin/gnatinspect /opt/${P}/bin/gnatinspect + dosym ../../../usr/bin/${GNATLS} /opt/${P}/bin/gnatls + dosym ../../../usr/bin/${GNATMAKE} /opt/${P}/bin/gnatmake + dosym ../../../usr/bin/${GNAT} /opt/${P}/bin/gnat + dosym ../../opt/${P}/bin/gps_exe /usr/bin/gps +}