Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/dvdauthor/
Date: Tue, 03 Jan 2017 16:35:34
Message-Id: 1483461305.868c21bc29243d315cec9791bb0d19439a97414b.aballier@gentoo
1 commit: 868c21bc29243d315cec9791bb0d19439a97414b
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 16:35:05 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 16:35:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=868c21bc
7
8 media-video/dvdauthor: bump to 0.7.2
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 media-video/dvdauthor/Manifest | 1 +
13 media-video/dvdauthor/dvdauthor-0.7.2.ebuild | 44 ++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/media-video/dvdauthor/Manifest b/media-video/dvdauthor/Manifest
17 index 61dcf35..bc66b13 100644
18 --- a/media-video/dvdauthor/Manifest
19 +++ b/media-video/dvdauthor/Manifest
20 @@ -1 +1,2 @@
21 DIST dvdauthor-0.7.1.tar.gz 421324 SHA256 501fb11b09c6eb9c5a229dcb400bd81e408cc78d34eab6749970685023c51fe9 SHA512 0875300df4711bf5758cb8a3ec03793689abd403cdebfc5736463d9b6df49a22e66e9e1f0c2abfcb7d25469c2e7f7e76789f7779cc0743ec972f8965b0f744a9 WHIRLPOOL c07526bbdbd75b4ddc0f2a1057f2bf27dbb5c63b4e4495b3a051d530af58ba4d4d75ec15dff2e3628cd1cb46b476ecb6a3d640ec30e1e6692d832549108b3e63
22 +DIST dvdauthor-0.7.2.tar.gz 648305 SHA256 3020a92de9f78eb36f48b6f22d5a001c47107826634a785a62dfcd080f612eb7 SHA512 202b8bba38939d122dc864921a57e89906ca99ddabf44e3b07419cc42cc052567cd892b41f1171c9c195c9a770758e9319a942ea64d14ee8fa847588c7761125 WHIRLPOOL d74d9b9d7976c5b98c9c6ebae5f5af5c201bc93f295c400b8cf7a10d4012e9b602f7817dd4acca70578a347d38fbe5bf43bbe8df398b4bc38c20bcc165ee1c3c
23
24 diff --git a/media-video/dvdauthor/dvdauthor-0.7.2.ebuild b/media-video/dvdauthor/dvdauthor-0.7.2.ebuild
25 new file mode 100644
26 index 00000000..a957dcc
27 --- /dev/null
28 +++ b/media-video/dvdauthor/dvdauthor-0.7.2.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit eutils flag-o-matic toolchain-funcs
36 +
37 +DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players"
38 +HOMEPAGE="http://dvdauthor.sourceforge.net/"
39 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
44 +IUSE="graphicsmagick"
45 +
46 +RDEPEND=">=dev-libs/fribidi-0.19.2
47 + dev-libs/libxml2
48 + >=media-libs/freetype-2
49 + media-libs/libdvdread
50 + media-libs/libpng:0=
51 + graphicsmagick? ( media-gfx/graphicsmagick )
52 + !graphicsmagick? ( >=media-gfx/imagemagick-5.5.7.14:= )"
53 +DEPEND="${RDEPEND}
54 + virtual/pkgconfig"
55 +
56 +S=${WORKDIR}/${PN}
57 +
58 +DOCS=( AUTHORS ChangeLog README TODO )
59 +
60 +src_prepare() {
61 + default
62 + if use graphicsmagick ; then
63 + sed -i -e 's:ExportImagePixels:dIsAbLeAuToMaGiC&:' configure \
64 + || die
65 + fi
66 +}
67 +
68 +src_configure() {
69 + use graphicsmagick && \
70 + append-cppflags "$($(tc-getPKG_CONFIG) --cflags GraphicsMagick)" #459976
71 + append-cppflags "$($(tc-getPKG_CONFIG) --cflags fribidi)" #417041
72 + econf
73 +}