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/dvdstyler/
Date: Mon, 29 Aug 2016 13:19:28
Message-Id: 1472476755.c56ea05876761cf9b2792507468d45151033897c.aballier@gentoo
1 commit: c56ea05876761cf9b2792507468d45151033897c
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 13:19:08 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 13:19:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c56ea058
7
8 media-video/dvdstyler: bump to 3.0.2
9
10 Package-Manager: portage-2.3.0
11
12 media-video/dvdstyler/Manifest | 1 +
13 media-video/dvdstyler/dvdstyler-3.0.2.ebuild | 73 ++++++++++++++++++++++++++++
14 2 files changed, 74 insertions(+)
15
16 diff --git a/media-video/dvdstyler/Manifest b/media-video/dvdstyler/Manifest
17 index 8bb8aa2..4a8b7ee 100644
18 --- a/media-video/dvdstyler/Manifest
19 +++ b/media-video/dvdstyler/Manifest
20 @@ -1 +1,2 @@
21 DIST DVDStyler-2.9.6.tar.bz2 8373340 SHA256 d9ac1c2fa8812c194d4a79a5954f96919a4823498a4200018964df549270c6e3 SHA512 7e45a61ecc5df29957c6ff71bf7d5032bc1cba3b43b8444f7cd065aabf3991961f998e220d41c05c3d4e9a3bc213c96bc484b467a40d1b10ab33630ea4cbbcea WHIRLPOOL d7b6f714fcde76c74f5f4dee66918ddfb17066f85147a7efd355fe19d057d3c56bf0f1116595cfa361b09f1d82ebc09ab0fad6f5fc8ab029df01a9abe267b564
22 +DIST DVDStyler-3.0.2.tar.bz2 8818276 SHA256 fda2105c83c7bf31492573cc81a3ae8730bbab804286dad4d86b5e0bd053158e SHA512 2ae54a3679bea0a6ea6b98c6bd26af13b9e2cb938dd58cf263e2ca2999d5ad48b58598d6f6a4a230e1ca1988cf6095c5ce17c1c2d8c103e28238ddedc5ead006 WHIRLPOOL e9f9a587368a02c17a8166025dc1e1484f91a709a77f6a56e61fc8b5e70bcada4a0ae63037dbd9a89817bbb46eda6bf75a305913731d424f07d146507cda8045
23
24 diff --git a/media-video/dvdstyler/dvdstyler-3.0.2.ebuild b/media-video/dvdstyler/dvdstyler-3.0.2.ebuild
25 new file mode 100644
26 index 00000000..c24b9f5
27 --- /dev/null
28 +++ b/media-video/dvdstyler/dvdstyler-3.0.2.ebuild
29 @@ -0,0 +1,73 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +MY_P=${P/dvds/DVDS}
37 +WX_GTK_VER=3.0
38 +
39 +inherit wxwidgets eutils
40 +
41 +DESCRIPTION="A cross-platform free DVD authoring application"
42 +HOMEPAGE="http://www.dvdstyler.org/"
43 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="debug libav +udev"
49 +
50 +COMMON_DEPEND="
51 + >=app-cdr/dvd+rw-tools-7.1
52 + media-libs/libexif:=
53 + >=media-libs/wxsvg-1.5.9:=
54 + >=media-video/dvdauthor-0.7.1
55 + >=media-video/xine-ui-0.99.7
56 + virtual/cdrtools
57 + libav? ( >=media-video/libav-9:0=[encode] )
58 + !libav? ( >=media-video/ffmpeg-2.6:0=[encode] )
59 + virtual/jpeg:0
60 + x11-libs/wxGTK:${WX_GTK_VER}=[gstreamer,X]
61 + sys-apps/dbus
62 + udev? ( >=virtual/libudev-215:= )
63 +"
64 +RDEPEND="${COMMON_DEPEND}
65 + >=app-cdr/dvdisaster-0.72.4
66 + media-video/mjpegtools
67 +"
68 +DEPEND="${COMMON_DEPEND}
69 + app-arch/zip
70 + app-text/xmlto
71 + sys-devel/gettext
72 + virtual/yacc
73 + virtual/pkgconfig
74 +"
75 +
76 +S="${WORKDIR}/${MY_P}"
77 +
78 +src_prepare() {
79 + need-wxwidgets unicode
80 + # disable obsolete GNOME 2.x libraries wrt #508854
81 + sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure || die
82 + # rmdir: failed to remove `tempfoobar': Directory not empty
83 + sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die
84 + # fix underlinking wrt #367863
85 + sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die
86 + # silence desktop-file-validate QA check
87 + sed -i \
88 + -e '/Icon/s:.png::' -e '/^Encoding/d' -e '/Categories/s:Application;::' \
89 + data/dvdstyler.desktop || die
90 +}
91 +
92 +src_configure() {
93 + econf \
94 + --docdir=/usr/share/doc/${PF} \
95 + $(use_enable debug) \
96 + --with-wx-config=${WX_CONFIG}
97 +}
98 +
99 +src_install() {
100 + default
101 + rm -f "${ED}"/usr/share/doc/${PF}/{COPYING*,INSTALL*}
102 +}