Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/dvdstyler: dvdstyler-2.9.2.ebuild ChangeLog
Date: Wed, 01 Jul 2015 08:41:24
Message-Id: 20150701084118.6F6E1741@oystercatcher.gentoo.org
1 aballier 15/07/01 08:41:18
2
3 Modified: ChangeLog
4 Added: dvdstyler-2.9.2.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.63 media-video/dvdstyler/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?rev=1.63&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?rev=1.63&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?r1=1.62&r2=1.63
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v
21 retrieving revision 1.62
22 retrieving revision 1.63
23 diff -u -r1.62 -r1.63
24 --- ChangeLog 24 Oct 2014 04:26:45 -0000 1.62
25 +++ ChangeLog 1 Jul 2015 08:41:18 -0000 1.63
26 @@ -1,6 +1,11 @@
27 # ChangeLog for media-video/dvdstyler
28 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.62 2014/10/24 04:26:45 ssuominen Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.63 2015/07/01 08:41:18 aballier Exp $
32 +
33 +*dvdstyler-2.9.2 (01 Jul 2015)
34 +
35 + 01 Jul 2015; Alexis Ballier <aballier@g.o> +dvdstyler-2.9.2.ebuild:
36 + version bump
37
38 24 Oct 2014; Samuli Suominen <ssuominen@g.o> dvdstyler-2.7.2.ebuild:
39 Missing media-video/mjpegtools RDEPEND used for mplexing during authoring.
40
41
42
43 1.1 media-video/dvdstyler/dvdstyler-2.9.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/dvdstyler-2.9.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/dvdstyler-2.9.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dvdstyler-2.9.2.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/dvdstyler-2.9.2.ebuild,v 1.1 2015/07/01 08:41:18 aballier Exp $
53
54 EAPI=5
55
56 MY_P=${P/dvds/DVDS}
57 WX_GTK_VER=2.8
58
59 inherit wxwidgets
60
61 DESCRIPTION="A cross-platform free DVD authoring application"
62 HOMEPAGE="http://www.dvdstyler.org/"
63 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="debug +udev"
69
70 COMMON_DEPEND=">=app-cdr/dvd+rw-tools-7.1
71 media-libs/libexif:=
72 >=media-libs/wxsvg-1.2:=
73 >=media-video/dvdauthor-0.7.1
74 >=media-video/xine-ui-0.99.7
75 virtual/cdrtools
76 >=virtual/ffmpeg-9-r1[encode]
77 virtual/jpeg:0
78 >=x11-libs/wxGTK-2.8.7:2.8=[gstreamer,X]
79 udev? ( >=virtual/libudev-215:= )"
80 RDEPEND="${COMMON_DEPEND}
81 >=app-cdr/dvdisaster-0.72.4
82 media-video/mjpegtools"
83 DEPEND="${COMMON_DEPEND}
84 app-arch/zip
85 app-text/xmlto
86 sys-devel/gettext
87 virtual/yacc
88 virtual/pkgconfig"
89
90 S=${WORKDIR}/${MY_P}
91
92 src_prepare() {
93 # disable obsolete GNOME 2.x libraries wrt #508854
94 sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure || die
95 # rmdir: failed to remove `tempfoobar': Directory not empty
96 sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die
97 # fix underlinking wrt #367863
98 sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die
99 # silence desktop-file-validate QA check
100 sed -i \
101 -e '/Icon/s:.png::' -e '/^Encoding/d' -e '/Categories/s:Application;::' \
102 data/dvdstyler.desktop || die
103 }
104
105 src_configure() {
106 econf \
107 --docdir=/usr/share/doc/${PF} \
108 $(use_enable debug) \
109 --with-wx-config=${WX_CONFIG}
110 }
111
112 src_install() {
113 default
114 rm -f "${ED}"/usr/share/doc/${PF}/{COPYING*,INSTALL*}
115 }