Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/avidemux-plugins: avidemux-plugins-9999.ebuild ChangeLog
Date: Sat, 31 Aug 2013 15:50:33
Message-Id: 20130831155030.7AF422004B@flycatcher.gentoo.org
1 tomwij 13/08/31 15:50:30
2
3 Modified: avidemux-plugins-9999.ebuild ChangeLog
4 Log:
5 Preparation for 2.6.5, fixed up src_install phase to properly call the preinstall and install targets (without calling the all target) for each process; as a result, all plugins get properly installed.
6
7 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
8
9 Revision Changes Path
10 1.2 media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild?r1=1.1&r2=1.2
15
16 Index: avidemux-plugins-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- avidemux-plugins-9999.ebuild 17 Jul 2013 00:31:34 -0000 1.1
23 +++ avidemux-plugins-9999.ebuild 31 Aug 2013 15:50:30 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild,v 1.1 2013/07/17 00:31:34 tomwij Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/avidemux-plugins-9999.ebuild,v 1.2 2013/08/31 15:50:30 tomwij Exp $
29
30 EAPI="5"
31
32 @@ -128,6 +128,11 @@
33
34 src_install() {
35 for process in ${processes} ; do
36 - BUILD_DIR="${S}/${process%%:*}" cmake-utils_src_install
37 + # cmake-utils_src_install doesn't respect BUILD_DIR
38 + # and there sometimes is a preinstall phase present.
39 + pushd "${S}/${process%%:*}" > /dev/null || die
40 + grep '^preinstall/fast' Makefile && emake DESTDIR="${D}" preinstall/fast
41 + grep '^install/fast' Makefile && emake DESTDIR="${D}" install/fast
42 + popd > /dev/null || die
43 done
44 }
45
46
47
48 1.14 media-libs/avidemux-plugins/ChangeLog
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/ChangeLog?rev=1.14&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/ChangeLog?rev=1.14&content-type=text/plain
52 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/avidemux-plugins/ChangeLog?r1=1.13&r2=1.14
53
54 Index: ChangeLog
55 ===================================================================
56 RCS file: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/ChangeLog,v
57 retrieving revision 1.13
58 retrieving revision 1.14
59 diff -u -r1.13 -r1.14
60 --- ChangeLog 9 Aug 2013 13:42:42 -0000 1.13
61 +++ ChangeLog 31 Aug 2013 15:50:30 -0000 1.14
62 @@ -1,6 +1,11 @@
63 # ChangeLog for media-libs/avidemux-plugins
64 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
65 -# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/ChangeLog,v 1.13 2013/08/09 13:42:42 axs Exp $
66 +# $Header: /var/cvsroot/gentoo-x86/media-libs/avidemux-plugins/ChangeLog,v 1.14 2013/08/31 15:50:30 tomwij Exp $
67 +
68 + 31 Aug 2013; Tom Wijsman <TomWij@g.o> avidemux-plugins-9999.ebuild:
69 + Preparation for 2.6.5, fixed up src_install phase to properly call the
70 + preinstall and install targets (without calling the all target) for each
71 + process; as a result, all plugins get properly installed.
72
73 09 Aug 2013; Ian Stakenvicius <axs@g.o> avidemux-plugins-2.6.3.ebuild,
74 avidemux-plugins-2.6.4-r1.ebuild, avidemux-plugins-2.6.4.ebuild: