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 3356F15808C for ; Sun, 13 Mar 2022 05:54:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A539E085E; Sun, 13 Mar 2022 05:54:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 316ECE085E for ; Sun, 13 Mar 2022 05:54:52 +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 26117343279 for ; Sun, 13 Mar 2022 05:54:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 738E031B for ; Sun, 13 Mar 2022 05:54:46 +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: <1647150196.c319d22e5ffeaaa58054a136a31ac3fb395b3f25.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/gpredict/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/gpredict/gpredict-2.3-r1.ebuild X-VCS-Directories: media-radio/gpredict/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c319d22e5ffeaaa58054a136a31ac3fb395b3f25 X-VCS-Branch: master Date: Sun, 13 Mar 2022 05:54:46 +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: 69a20c7e-3f37-4c46-9bbc-2d94b9cd6ddf X-Archives-Hash: 432ce7dbb405bfaa6c83d5673c32ccdc commit: c319d22e5ffeaaa58054a136a31ac3fb395b3f25 Author: Sam James gentoo org> AuthorDate: Sun Mar 13 05:43:16 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 13 05:43:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c319d22e media-radio/gpredict: [QA] use eautoreconf Use eautoreconf instead of autogen.sh (handles everything we need, plus inheriting autotools.eclass guarantees correct dependencies). Signed-off-by: Sam James gentoo.org> media-radio/gpredict/gpredict-2.3-r1.ebuild | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/media-radio/gpredict/gpredict-2.3-r1.ebuild b/media-radio/gpredict/gpredict-2.3-r1.ebuild new file mode 100644 index 000000000000..a24b2f3a6e4b --- /dev/null +++ b/media-radio/gpredict/gpredict-2.3-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Real-time satellite tracking and orbit prediction application" +HOMEPAGE="http://gpredict.oz9aec.net" +SRC_URI="https://github.com/csete/gpredict/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-libs/glib:2 + x11-libs/gdk-pixbuf[jpeg] + x11-libs/gtk+:3 + x11-libs/goocanvas:2.0 + net-misc/curl" +DEPEND="${RDEPEND}" +BDEPEND="dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +DOCS=( AUTHORS NEWS README ) + +src_prepare() { + eapply_user + # remove wrong doc location + eapply "${FILESDIR}/${P}-doc.patch" + eapply "${FILESDIR}/${PN}-2.2.1-fno-common.patch" + + eautoreconf +}