Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (fauli)" <fauli@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-mobilephone/wammu: wammu-0.32.1.ebuild ChangeLog
Date: Mon, 01 Feb 2010 21:55:32
Message-Id: E1Nc4Ey-0000ZS-SN@stork.gentoo.org
1 fauli 10/02/01 21:55:28
2
3 Modified: ChangeLog
4 Added: wammu-0.32.1.ebuild
5 Log:
6 version bump for bug 297729
7 (Portage version: 2.1.7.16/cvs/Linux i686)
8
9 Revision Changes Path
10 1.42 app-mobilephone/wammu/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/ChangeLog?rev=1.42&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/ChangeLog?rev=1.42&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/ChangeLog?r1=1.41&r2=1.42
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v
19 retrieving revision 1.41
20 retrieving revision 1.42
21 diff -u -r1.41 -r1.42
22 --- ChangeLog 24 Oct 2009 11:03:45 -0000 1.41
23 +++ ChangeLog 1 Feb 2010 21:55:28 -0000 1.42
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-mobilephone/wammu
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v 1.41 2009/10/24 11:03:45 nixnut Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v 1.42 2010/02/01 21:55:28 fauli Exp $
30 +
31 +*wammu-0.32.1 (01 Feb 2010)
32 +
33 + 01 Feb 2010; Christian Faulhammer <fauli@g.o> +wammu-0.32.1.ebuild:
34 + version bump for bug 297729
35
36 24 Oct 2009; nixnut <nixnut@g.o> wammu-0.30.1.ebuild:
37 ppc stable #283672
38
39
40
41 1.1 app-mobilephone/wammu/wammu-0.32.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/wammu-0.32.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/wammu-0.32.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wammu-0.32.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/wammu-0.32.1.ebuild,v 1.1 2010/02/01 21:55:28 fauli Exp $
51
52 EAPI="2"
53
54 inherit distutils
55
56 DESCRIPTION="front-end for gammu (Nokia and other mobiles)"
57 HOMEPAGE="http://www.cihar.com/gammu/wammu/"
58 SRC_URI="http://dl.cihar.com/wammu/v0/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="bluetooth"
64
65 RDEPEND=">=app-mobilephone/gammu-1.25.0[python]
66 >=dev-python/wxpython-2.8
67 bluetooth? (
68 || (
69 dev-python/pybluez
70 net-wireless/gnome-bluetooth
71 )
72 )"
73 DEPEND="${RDEPEND}"
74
75 # Supported languages and translated documentation
76 # Be sure all languages are prefixed with a single space!
77 MY_AVAILABLE_LINGUAS=" af bg ca cs da de el es et fi fr gl he hu id it ko nl pl pt_BR ru sk sv zh_CN zh_TW"
78 IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
79
80 src_prepare() {
81 local lang support_linguas=no
82 for lang in ${MY_AVAILABLE_LINGUAS} ; do
83 if use linguas_${lang} ; then
84 support_linguas=yes
85 break
86 fi
87 done
88 # install all languages when all selected LINGUAS aren't supported
89 if [ "${support_linguas}" = "yes" ]; then
90 for lang in ${MY_AVAILABLE_LINGUAS} ; do
91 if ! use linguas_${lang} ; then
92 rm -r locale/${lang} || die
93 fi
94 done
95 fi
96 }
97
98 src_compile() {
99 # SKIPWXCHECK: else 'import wx' results in
100 # Xlib: connection to ":0.0" refused by server
101 SKIPWXCHECK=yes distutils_src_compile
102 }
103
104 src_install() {
105 DOCS="AUTHORS FAQ"
106 SKIPWXCHECK=yes distutils_src_install
107 }