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 422C6158020 for ; Sat, 29 Oct 2022 12:08:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B601E087E; Sat, 29 Oct 2022 12:08:30 +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 2E6C6E087E for ; Sat, 29 Oct 2022 12:08:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 319F1341253 for ; Sat, 29 Oct 2022 12:08:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1DF8692 for ; Sat, 29 Oct 2022 12:08:27 +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: <1667045271.6bb2843afd8a0e6813749372e9aa5cebb6da4c5a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ftgl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild media-libs/ftgl/ftgl-2.1.3_rc5.ebuild X-VCS-Directories: media-libs/ftgl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6bb2843afd8a0e6813749372e9aa5cebb6da4c5a X-VCS-Branch: master Date: Sat, 29 Oct 2022 12:08:27 +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: 347ac2a9-f913-4d3c-acd0-7e791964990a X-Archives-Hash: 531004f4cc4f67d3bd053f4513e32725 commit: 6bb2843afd8a0e6813749372e9aa5cebb6da4c5a Author: Sam James gentoo org> AuthorDate: Sat Oct 29 12:01:43 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 29 12:07:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bb2843a media-libs/ftgl: EAPI 8 Signed-off-by: Sam James gentoo.org> ...l-2.1.3_rc5.ebuild => ftgl-2.1.3_rc5-r1.ebuild} | 25 +++++++++++++--------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild b/media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild similarity index 83% rename from media-libs/ftgl/ftgl-2.1.3_rc5.ebuild rename to media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild index 22107b5dd36a..7421ddac0cc2 100644 --- a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild +++ b/media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild @@ -1,31 +1,33 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + inherit autotools flag-o-matic MY_PV="${PV/_/-}" -MY_PV2="${PV/_/~}" +MY_PV2="${PV/_/\~}" MY_P="${PN}-${MY_PV}" MY_P2="${PN}-${MY_PV2}" DESCRIPTION="library to use arbitrary fonts in OpenGL applications" HOMEPAGE="https://sourceforge.net/projects/ftgl/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P2}" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" IUSE="static-libs" -DEPEND=">=media-libs/freetype-2.0.9 +DEPEND=" + media-libs/freeglut + >=media-libs/freetype-2.0.9 virtual/opengl virtual/glu - media-libs/freeglut" -RDEPEND="${DEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MY_P2}" +" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-gentoo.patch @@ -36,6 +38,7 @@ PATCHES=( src_prepare() { default + sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die eautoreconf } @@ -47,7 +50,9 @@ src_configure() { src_install() { local DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO docs/projects_using_ftgl.txt) + default - rm -r "${ED%/}"/usr/share/doc/ftgl || die + + rm -r "${ED}"/usr/share/doc/ftgl || die find "${ED}" -name '*.la' -delete || die }