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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A23B115808B for ; Sun, 17 Apr 2022 15:18:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 835F4E09B7; Sun, 17 Apr 2022 15:18:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E5B92E09B7 for ; Sun, 17 Apr 2022 15:18:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D53E63415FB for ; Sun, 17 Apr 2022 15:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 510E6303 for ; Sun, 17 Apr 2022 15:18:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1650208712.c1b4b6be198ad2e5ce89c5f526f9de961c2e21a9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/xtide/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-geosciences/xtide/xtide-2.15.1-r1.ebuild X-VCS-Directories: sci-geosciences/xtide/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c1b4b6be198ad2e5ce89c5f526f9de961c2e21a9 X-VCS-Branch: master Date: Sun, 17 Apr 2022 15:18:48 +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: 09d92bb6-34df-4c2a-9be2-f4a9bfffb4d9 X-Archives-Hash: 3ba340411e964d9d92d604ef4ac60134 commit: c1b4b6be198ad2e5ce89c5f526f9de961c2e21a9 Author: Sam James gentoo org> AuthorDate: Sun Apr 17 14:55:25 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 17 15:18:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b4b6be sci-geosciences/xtide: update EAPI 6 -> 8 Closes: https://bugs.gentoo.org/822816 Signed-off-by: Sam James gentoo.org> sci-geosciences/xtide/xtide-2.15.1-r1.ebuild | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/sci-geosciences/xtide/xtide-2.15.1-r1.ebuild b/sci-geosciences/xtide/xtide-2.15.1-r1.ebuild new file mode 100644 index 000000000000..fdb13015ce5a --- /dev/null +++ b/sci-geosciences/xtide/xtide-2.15.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop xdg + +DESCRIPTION="XTide provides tide and current predictions in a wide variety of formats" +HOMEPAGE="http://www.flaterco.com/xtide/" +SRC_URI="ftp://ftp.flaterco.com/xtide/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="media-libs/libpng:= + sci-geosciences/gpsd + >=sci-geosciences/libtcd-2.2.5_p2 + x11-libs/libX11 + x11-libs/libXaw3d[unicode] + x11-libs/libXaw3dXft + x11-libs/libXft + x11-libs/libXpm + x11-libs/libXt" +RDEPEND="${DEPEND} + media-fonts/font-schumacher-misc" + +src_install() { + default + + echo 'HFILE_PATH=/usr/share/harmonics' > 50xtide_harm || die + doenvd 50xtide_harm + + newicon -s 48 iconsrc/icon_48x48_orig.png ${PN}.png + make_desktop_entry ${PN} 'Tide prediction' ${PN} 'Science' + + find "${ED}" -name '*.la' -delete || die +}