Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/mkvtoolnix: ChangeLog mkvtoolnix-4.4.0.ebuild mkvtoolnix-4.5.0.ebuild
Date: Wed, 02 Feb 2011 07:17:47
Message-Id: 20110202071735.C2FC920054@flycatcher.gentoo.org
1 radhermit 11/02/02 07:17:35
2
3 Modified: ChangeLog mkvtoolnix-4.4.0.ebuild
4 Added: mkvtoolnix-4.5.0.ebuild
5 Log:
6 Version bump for bug #353405. Remove unnecessary eautoreconf call and fix wxwidgets QA warning.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.136 media-video/mkvtoolnix/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?rev=1.136&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?rev=1.136&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/ChangeLog?r1=1.135&r2=1.136
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v
20 retrieving revision 1.135
21 retrieving revision 1.136
22 diff -u -r1.135 -r1.136
23 --- ChangeLog 21 Jan 2011 17:51:38 -0000 1.135
24 +++ ChangeLog 2 Feb 2011 07:17:35 -0000 1.136
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-video/mkvtoolnix
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.135 2011/01/21 17:51:38 spatz Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/ChangeLog,v 1.136 2011/02/02 07:17:35 radhermit Exp $
30 +
31 +*mkvtoolnix-4.5.0 (02 Feb 2011)
32 +
33 + 02 Feb 2011; Tim Harder <radhermit@g.o> mkvtoolnix-4.4.0.ebuild,
34 + +mkvtoolnix-4.5.0.ebuild:
35 + Version bump for bug #353405. Remove unnecessary eautoreconf call and fix
36 + wxwidgets QA warning.
37
38 21 Jan 2011; Dror Levin <spatz@g.o> -mkvtoolnix-3.2.0.ebuild,
39 -mkvtoolnix-3.3.0.ebuild, -files/mkvtoolnix-4.0.0-qt4.patch,
40
41
42
43 1.3 media-video/mkvtoolnix/mkvtoolnix-4.4.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.4.0.ebuild?rev=1.3&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.4.0.ebuild?rev=1.3&content-type=text/plain
47 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.4.0.ebuild?r1=1.2&r2=1.3
48
49 Index: mkvtoolnix-4.4.0.ebuild
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.4.0.ebuild,v
52 retrieving revision 1.2
53 retrieving revision 1.3
54 diff -u -r1.2 -r1.3
55 --- mkvtoolnix-4.4.0.ebuild 21 Jan 2011 17:51:38 -0000 1.2
56 +++ mkvtoolnix-4.4.0.ebuild 2 Feb 2011 07:17:35 -0000 1.3
57 @@ -1,10 +1,10 @@
58 # Copyright 1999-2011 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.4.0.ebuild,v 1.2 2011/01/21 17:51:38 spatz Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.4.0.ebuild,v 1.3 2011/02/02 07:17:35 radhermit Exp $
62
63 EAPI=3
64
65 -inherit autotools
66 +inherit wxwidgets
67
68 DESCRIPTION="Tools to create, alter, and inspect Matroska files"
69 HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix"
70 @@ -33,15 +33,16 @@
71 dev-ruby/rake
72 "
73
74 -src_prepare() {
75 - eautoreconf
76 -}
77 -
78 src_configure() {
79 local myconf
80
81 - use pch || myconf="${myconf} --disable-precompiled-headers"
82 - use wxwidgets && myconf="${myconf} --with-wx-config=${WX_CONFIG}"
83 + use pch || myconf="${myconf} --disable-precompiled-headers"
84 +
85 + if use wxwidgets ; then
86 + WX_GTK_VER="2.8"
87 + need-wxwidgets unicode
88 + myconf="${myconf} --with-wx-config=${WX_CONFIG}"
89 + fi
90
91 econf \
92 $(use_enable lzo) \
93
94
95
96 1.1 media-video/mkvtoolnix/mkvtoolnix-4.5.0.ebuild
97
98 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.5.0.ebuild?rev=1.1&view=markup
99 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.5.0.ebuild?rev=1.1&content-type=text/plain
100
101 Index: mkvtoolnix-4.5.0.ebuild
102 ===================================================================
103 # Copyright 1999-2011 Gentoo Foundation
104 # Distributed under the terms of the GNU General Public License v2
105 # $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.5.0.ebuild,v 1.1 2011/02/02 07:17:35 radhermit Exp $
106
107 EAPI=3
108
109 inherit wxwidgets
110
111 DESCRIPTION="Tools to create, alter, and inspect Matroska files"
112 HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix"
113 SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
114
115 LICENSE="GPL-2"
116 SLOT="0"
117 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
118 IUSE="bzip2 debug lzo pch wxwidgets"
119
120 RDEPEND="
121 >=dev-libs/libebml-1.2.0
122 >=media-libs/libmatroska-1.1.0
123 dev-libs/boost
124 dev-libs/expat
125 media-libs/flac
126 media-libs/libogg
127 media-libs/libvorbis
128 sys-apps/file
129 sys-libs/zlib
130 bzip2? ( app-arch/bzip2 )
131 lzo? ( dev-libs/lzo )
132 wxwidgets? ( x11-libs/wxGTK:2.8[X] )
133 "
134 DEPEND="${RDEPEND}
135 dev-ruby/rake
136 "
137
138 src_configure() {
139 local myconf
140
141 use pch || myconf="${myconf} --disable-precompiled-headers"
142
143 if use wxwidgets ; then
144 WX_GTK_VER="2.8"
145 need-wxwidgets unicode
146 myconf="${myconf} --with-wx-config=${WX_CONFIG}"
147 fi
148
149 econf \
150 $(use_enable lzo) \
151 $(use_enable bzip2 bz2) \
152 $(use_enable wxwidgets) \
153 $(use_enable debug) \
154 --disable-qt \
155 ${myconf} \
156 --with-boost-regex=boost_regex \
157 --with-boost-filesystem=boost_filesystem \
158 --with-boost-system=boost_system
159 }
160
161 src_compile() {
162 rake || die "rake failed"
163 }
164
165 src_install() {
166 # Don't run strip while installing stuff, leave to portage the job.
167 DESTDIR="${D}" rake install || die
168
169 dodoc AUTHORS ChangeLog README TODO || die
170 doman doc/man/*.1 || die
171 }