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 DEA58158015 for ; Tue, 26 Dec 2023 02:37:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C19A2BC041; Tue, 26 Dec 2023 02:37: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6EF552BC041 for ; Tue, 26 Dec 2023 02:37:51 +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 7D7C433E3A9 for ; Tue, 26 Dec 2023 02:37:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCF9014B4 for ; Tue, 26 Dec 2023 02:37:47 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1703558233.49ec06dfd7c927b61924c1ce4cc3f5f669e5e3fc.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/dvdauthor/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/dvdauthor/dvdauthor-0.7.2-r3.ebuild X-VCS-Directories: media-video/dvdauthor/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 49ec06dfd7c927b61924c1ce4cc3f5f669e5e3fc X-VCS-Branch: master Date: Tue, 26 Dec 2023 02:37:47 +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: f2d44ff3-3515-4d68-b2ac-c69ac0345aae X-Archives-Hash: 46340bb0c150ccf7a3daf9bcd64f843c commit: 49ec06dfd7c927b61924c1ce4cc3f5f669e5e3fc Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Dec 23 12:01:41 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Dec 26 02:37:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49ec06df media-video/dvdauthor: EAPI8 bump, fix #914235 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://bugs.gentoo.org/914235 Closes: https://github.com/gentoo/gentoo/pull/34441 Signed-off-by: Conrad Kostecki gentoo.org> media-video/dvdauthor/dvdauthor-0.7.2-r3.ebuild | 54 +++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/media-video/dvdauthor/dvdauthor-0.7.2-r3.ebuild b/media-video/dvdauthor/dvdauthor-0.7.2-r3.ebuild new file mode 100644 index 000000000000..bac3629b21c1 --- /dev/null +++ b/media-video/dvdauthor/dvdauthor-0.7.2-r3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic toolchain-funcs + +DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players" +HOMEPAGE="https://dvdauthor.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +S="${WORKDIR}/${PN}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="graphicsmagick +imagemagick" + +RDEPEND=">=dev-libs/fribidi-0.19.2 + dev-libs/libxml2 + >=media-libs/freetype-2 + media-libs/libdvdread + media-libs/libpng:0= + imagemagick? ( + graphicsmagick? ( media-gfx/graphicsmagick:= ) + imagemagick? ( media-gfx/imagemagick:= ) + )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-freetype-pkgconfig.patch +) + +src_prepare() { + default + + eautoreconf + + if use imagemagick && has_version '>=media-gfx/imagemagick-7.0.1.0' ; then + eapply "${FILESDIR}/${PN}-0.7.2-imagemagick7.patch" + fi + + if use graphicsmagick ; then + sed -i -e 's:ExportImagePixels:dIsAbLeAuToMaGiC&:' configure \ + || die + fi +} + +src_configure() { + use graphicsmagick && \ + append-cppflags "$($(tc-getPKG_CONFIG) --cflags GraphicsMagick)" #459976 + append-cppflags "$($(tc-getPKG_CONFIG) --cflags fribidi)" #417041 + econf +}