Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/dvdstyler: dvdstyler-2.7.2.ebuild ChangeLog
Date: Tue, 29 Jul 2014 17:16:51
Message-Id: 20140729171644.25B0A2004E@flycatcher.gentoo.org
1 ssuominen 14/07/29 17:16:43
2
3 Modified: ChangeLog
4 Added: dvdstyler-2.7.2.ebuild
5 Log:
6 Version bump wrt #498904 by Paolo Pedroni. Pull in recent enough virtual/ffmpeg wrt #495088 by Cecil Curry.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.60 media-video/dvdstyler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 12 Aug 2013 16:30:13 -0000 1.59
24 +++ ChangeLog 29 Jul 2014 17:16:42 -0000 1.60
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-video/dvdstyler
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.59 2013/08/12 16:30:13 aballier Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdstyler/ChangeLog,v 1.60 2014/07/29 17:16:42 ssuominen Exp $
31 +
32 +*dvdstyler-2.7.2 (29 Jul 2014)
33 +
34 + 29 Jul 2014; Samuli Suominen <ssuominen@g.o> +dvdstyler-2.7.2.ebuild:
35 + Version bump wrt #498904 by Paolo Pedroni. Pull in recent enough
36 + virtual/ffmpeg wrt #495088 by Cecil Curry.
37
38 *dvdstyler-2.5.1 (12 Aug 2013)
39
40
41
42
43 1.1 media-video/dvdstyler/dvdstyler-2.7.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/dvdstyler-2.7.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/dvdstyler/dvdstyler-2.7.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dvdstyler-2.7.2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 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.7.2.ebuild,v 1.1 2014/07/29 17:16:42 ssuominen 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 DEPEND="${COMMON_DEPEND}
83 app-arch/zip
84 app-text/xmlto
85 sys-devel/gettext
86 virtual/yacc
87 virtual/pkgconfig"
88
89 S=${WORKDIR}/${MY_P}
90
91 src_prepare() {
92 # disable obsolete GNOME 2.x libraries wrt #508854
93 sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure || die
94 # rmdir: failed to remove `tempfoobar': Directory not empty
95 sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die
96 # fix underlinking wrt #367863
97 sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die
98 # silence desktop-file-validate QA check
99 sed -i \
100 -e '/Icon/s:.png::' -e '/^Encoding/d' -e '/Categories/s:Application;::' \
101 data/dvdstyler.desktop || die
102 }
103
104 src_configure() {
105 econf \
106 --docdir=/usr/share/doc/${PF} \
107 $(use_enable debug) \
108 --with-wx-config=${WX_CONFIG}
109 }
110
111 src_install() {
112 default
113 rm -f "${ED}"/usr/share/doc/${PF}/{COPYING*,INSTALL*}
114 }