Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/aegisub: aegisub-3.1.2.ebuild ChangeLog
Date: Mon, 09 Jun 2014 19:21:53
Message-Id: 20140609192147.B216C2004E@flycatcher.gentoo.org
1 maksbotan 14/06/09 19:21:47
2
3 Modified: aegisub-3.1.2.ebuild ChangeLog
4 Log:
5 Update icon cache and desktop database, bug #508116. Respect LINGUAS, bug #508118. Fix sandbox access violation with openal, bug #508184. Thanks to Nikoli.
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
8
9 Revision Changes Path
10 1.3 media-video/aegisub/aegisub-3.1.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/aegisub/aegisub-3.1.2.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/aegisub/aegisub-3.1.2.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/aegisub/aegisub-3.1.2.ebuild?r1=1.2&r2=1.3
15
16 Index: aegisub-3.1.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/aegisub/aegisub-3.1.2.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- aegisub-3.1.2.ebuild 4 Feb 2014 16:52:19 -0000 1.2
23 +++ aegisub-3.1.2.ebuild 9 Jun 2014 19:21:47 -0000 1.3
24 @@ -1,13 +1,14 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/aegisub/aegisub-3.1.2.ebuild,v 1.2 2014/02/04 16:52:19 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/aegisub/aegisub-3.1.2.ebuild,v 1.3 2014/06/09 19:21:47 maksbotan Exp $
29
30 EAPI="5"
31
32 AUTOTOOLS_AUTORECONF="1"
33 AUTOTOOLS_IN_SOURCE_BUILD="1"
34 WX_GTK_VER="3.0"
35 -inherit autotools-utils wxwidgets
36 +PLOCALES="ar bg ca cs da de el es eu fa fi fr_FR gl hu id it ja ko nl pl pt_BR pt_PT ru sr_RS@latin sr_RS vi zh_CN zh_TW"
37 +inherit autotools-utils wxwidgets l10n fdo-mime gnome2-utils
38
39 DESCRIPTION="Advanced SSA/ASS subtitle editor"
40 HOMEPAGE="http://www.aegisub.org/"
41 @@ -52,7 +53,21 @@
42
43 S=${WORKDIR}/${P}/${PN}
44
45 +src_prepare() {
46 + my_rm_loc() {
47 + sed -i -e "s:${1}\.po::" po/Makefile || die
48 + rm "po/${1}.po" || die
49 + }
50 +
51 + l10n_find_plocales_changes 'po' '' '.po'
52 + l10n_for_each_disabled_locale_do my_rm_loc
53 +
54 + autotools-utils_src_prepare
55 +}
56 +
57 src_configure() {
58 + # testing openal does not work in sandbox, bug #508184
59 + use openal && export agi_cv_with_openal="yes"
60 local myeconfargs=(
61 $(use_with alsa)
62 $(use_with oss)
63 @@ -66,3 +81,17 @@
64 )
65 autotools-utils_src_configure
66 }
67 +
68 +pkg_preinst() {
69 + gnome2_icon_savelist
70 +}
71 +
72 +pkg_postinst() {
73 + fdo-mime_desktop_database_update
74 + gnome2_icon_cache_update
75 +}
76 +
77 +pkg_postrm() {
78 + fdo-mime_desktop_database_update
79 + gnome2_icon_cache_update
80 +}
81
82
83
84 1.15 media-video/aegisub/ChangeLog
85
86 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/aegisub/ChangeLog?rev=1.15&view=markup
87 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/aegisub/ChangeLog?rev=1.15&content-type=text/plain
88 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/aegisub/ChangeLog?r1=1.14&r2=1.15
89
90 Index: ChangeLog
91 ===================================================================
92 RCS file: /var/cvsroot/gentoo-x86/media-video/aegisub/ChangeLog,v
93 retrieving revision 1.14
94 retrieving revision 1.15
95 diff -u -r1.14 -r1.15
96 --- ChangeLog 4 Feb 2014 16:52:19 -0000 1.14
97 +++ ChangeLog 9 Jun 2014 19:21:47 -0000 1.15
98 @@ -1,6 +1,11 @@
99 # ChangeLog for media-video/aegisub
100 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
101 -# $Header: /var/cvsroot/gentoo-x86/media-video/aegisub/ChangeLog,v 1.14 2014/02/04 16:52:19 ssuominen Exp $
102 +# $Header: /var/cvsroot/gentoo-x86/media-video/aegisub/ChangeLog,v 1.15 2014/06/09 19:21:47 maksbotan Exp $
103 +
104 + 09 Jun 2014; Maxim Koltsov <maksbotan@g.o> aegisub-3.1.2.ebuild:
105 + Update icon cache and desktop database, bug #508116. Respect LINGUAS, bug
106 + #508118. Fix sandbox access violation with openal, bug #508184. Thanks to
107 + Nikoli.
108
109 04 Feb 2014; Samuli Suominen <ssuominen@g.o> aegisub-3.1.2.ebuild,
110 aegisub-9999.ebuild: