media-video/dvdauthor: bump to 0.7.2
authorAlexis Ballier <aballier@gentoo.org>
Tue, 3 Jan 2017 16:35:05 +0000 (17:35 +0100)
committerAlexis Ballier <aballier@gentoo.org>
Tue, 3 Jan 2017 16:35:05 +0000 (17:35 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

media-video/dvdauthor/Manifest
media-video/dvdauthor/dvdauthor-0.7.2.ebuild [new file with mode: 0644]

index 61dcf35bf0b87a3a40762471a78e9ac66c9eda20..bc66b13ab7ca9bd6c62ad66ec21863713a3aa205 100644 (file)
@@ -1 +1,2 @@
 DIST dvdauthor-0.7.1.tar.gz 421324 SHA256 501fb11b09c6eb9c5a229dcb400bd81e408cc78d34eab6749970685023c51fe9 SHA512 0875300df4711bf5758cb8a3ec03793689abd403cdebfc5736463d9b6df49a22e66e9e1f0c2abfcb7d25469c2e7f7e76789f7779cc0743ec972f8965b0f744a9 WHIRLPOOL c07526bbdbd75b4ddc0f2a1057f2bf27dbb5c63b4e4495b3a051d530af58ba4d4d75ec15dff2e3628cd1cb46b476ecb6a3d640ec30e1e6692d832549108b3e63
+DIST dvdauthor-0.7.2.tar.gz 648305 SHA256 3020a92de9f78eb36f48b6f22d5a001c47107826634a785a62dfcd080f612eb7 SHA512 202b8bba38939d122dc864921a57e89906ca99ddabf44e3b07419cc42cc052567cd892b41f1171c9c195c9a770758e9319a942ea64d14ee8fa847588c7761125 WHIRLPOOL d74d9b9d7976c5b98c9c6ebae5f5af5c201bc93f295c400b8cf7a10d4012e9b602f7817dd4acca70578a347d38fbe5bf43bbe8df398b4bc38c20bcc165ee1c3c
diff --git a/media-video/dvdauthor/dvdauthor-0.7.2.ebuild b/media-video/dvdauthor/dvdauthor-0.7.2.ebuild
new file mode 100644 (file)
index 0000000..a957dcc
--- /dev/null
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players"
+HOMEPAGE="http://dvdauthor.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="graphicsmagick"
+
+RDEPEND=">=dev-libs/fribidi-0.19.2
+       dev-libs/libxml2
+       >=media-libs/freetype-2
+       media-libs/libdvdread
+       media-libs/libpng:0=
+       graphicsmagick? ( media-gfx/graphicsmagick )
+       !graphicsmagick? ( >=media-gfx/imagemagick-5.5.7.14:= )"
+DEPEND="${RDEPEND}
+       virtual/pkgconfig"
+
+S=${WORKDIR}/${PN}
+
+DOCS=( AUTHORS ChangeLog README TODO )
+
+src_prepare() {
+       default
+       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
+}