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/mplayer: ChangeLog mplayer-1.0_rc2_p20090731.ebuild
Date: Sun, 02 Aug 2009 13:15:57
Message-Id: E1MXaup-0005ze-Iu@stork.gentoo.org
1 ssuominen 09/08/02 13:15:55
2
3 Modified: ChangeLog mplayer-1.0_rc2_p20090731.ebuild
4 Log:
5 Can't pass --language opts to ./configure because it will _die_ on false ones. Instead, use the system LINGUAS variable like before.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.659 media-video/mplayer/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/mplayer/ChangeLog?rev=1.659&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/mplayer/ChangeLog?rev=1.659&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/mplayer/ChangeLog?r1=1.658&r2=1.659
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-video/mplayer/ChangeLog,v
18 retrieving revision 1.658
19 retrieving revision 1.659
20 diff -u -r1.658 -r1.659
21 --- ChangeLog 1 Aug 2009 09:09:11 -0000 1.658
22 +++ ChangeLog 2 Aug 2009 13:15:55 -0000 1.659
23 @@ -1,10 +1,11 @@
24 # ChangeLog for media-video/mplayer
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/ChangeLog,v 1.658 2009/08/01 09:09:11 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/ChangeLog,v 1.659 2009/08/02 13:15:55 ssuominen Exp $
28
29 - 01 Aug 2009; Samuli Suominen <ssuominen@g.o>
30 + 02 Aug 2009; Samuli Suominen <ssuominen@g.o>
31 mplayer-1.0_rc2_p20090731.ebuild:
32 - Fix myconf_linguas sed by Emil Karlson.
33 + Can't pass --language opts to ./configure because it will _die_ on false
34 + ones. Instead, use the system LINGUAS variable like before.
35
36 01 Aug 2009; Diego E. Pettenò <flameeyes@g.o>
37 mplayer-1.0_rc2_p20090731.ebuild:
38
39
40
41 1.5 media-video/mplayer/mplayer-1.0_rc2_p20090731.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p20090731.ebuild?rev=1.5&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p20090731.ebuild?rev=1.5&content-type=text/plain
45 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p20090731.ebuild?r1=1.4&r2=1.5
46
47 Index: mplayer-1.0_rc2_p20090731.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p20090731.ebuild,v
50 retrieving revision 1.4
51 retrieving revision 1.5
52 diff -u -r1.4 -r1.5
53 --- mplayer-1.0_rc2_p20090731.ebuild 1 Aug 2009 12:34:39 -0000 1.4
54 +++ mplayer-1.0_rc2_p20090731.ebuild 2 Aug 2009 13:15:55 -0000 1.5
55 @@ -1,6 +1,6 @@
56 # Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p20090731.ebuild,v 1.4 2009/08/01 12:34:39 ssuominen Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p20090731.ebuild,v 1.5 2009/08/02 13:15:55 ssuominen Exp $
60
61 EAPI="2"
62
63 @@ -226,19 +226,12 @@
64 }
65
66 src_configure() {
67 -
68 local myconf=""
69
70 # MPlayer reads in the LINGUAS variable from make.conf, and sets
71 # the languages accordingly. Some will have to be altered to match
72 # upstream's naming scheme.
73 - if [[ -n $LINGUAS ]]; then
74 - LINGUAS="${LINGUAS/da/dk}"
75 - available_linguas=$(echo $LINGUAS | awk '{ print $1 }')
76 - myconf_linguas=$(echo $LINGUAS | sed s/\ /,/g)
77 - myconf="${myconf} --language=${available_linguas} \
78 - --language-doc=${myconf_linguas} --language-man=${myconf_linguas}"
79 - fi
80 + [[ -n $LINGUAS ]] && LINGUAS="${LINGUAS/da/dk}"
81
82 # mplayer ebuild uses "use foo || --disable-foo" to forcibly disable
83 # compilation in almost every situation. The reason for this is