Gentoo Archives: gentoo-commits

From: "Alin Nastac (mrness)" <mrness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-mobilephone/wammu: ChangeLog wammu-0.28.ebuild
Date: Tue, 19 Aug 2008 19:24:51
Message-Id: E1KVWoy-0007ba-D4@stork.gentoo.org
1 mrness 08/08/19 19:24:48
2
3 Modified: ChangeLog
4 Added: wammu-0.28.ebuild
5 Log:
6 Version bump. Change wxpython dependency atom (#225593).
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.32 app-mobilephone/wammu/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 7 Jun 2008 12:54:56 -0000 1.31
23 +++ ChangeLog 19 Aug 2008 19:24:47 -0000 1.32
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-mobilephone/wammu
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v 1.31 2008/06/07 12:54:56 mrness Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v 1.32 2008/08/19 19:24:47 mrness Exp $
29 +
30 +*wammu-0.28 (19 Aug 2008)
31 +
32 + 19 Aug 2008; Alin Năstac <mrness@g.o> +wammu-0.28.ebuild:
33 + Version bump. Change wxpython dependency atom (#225593).
34
35 *wammu-0.27 (07 Jun 2008)
36
37
38
39
40 1.1 app-mobilephone/wammu/wammu-0.28.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/wammu-0.28.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/wammu/wammu-0.28.ebuild?rev=1.1&content-type=text/plain
44
45 Index: wammu-0.28.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/wammu-0.28.ebuild,v 1.1 2008/08/19 19:24:47 mrness Exp $
50
51 inherit distutils
52
53 DESCRIPTION="front-end for gammu (Nokia and other mobiles)"
54 HOMEPAGE="http://www.cihar.com/gammu/wammu/"
55 SRC_URI="http://dl.cihar.com/wammu/v0/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86"
60 IUSE="bluetooth"
61
62 RDEPEND=">=dev-python/wxpython-2.8
63 >=dev-python/python-gammu-0.24
64 bluetooth? (
65 || (
66 dev-python/pybluez
67 net-wireless/gnome-bluetooth
68 )
69 )"
70 DEPEND="${RDEPEND}"
71
72 # Supported languages and translated documentation
73 # Be sure all languages are prefixed with a single space!
74 MY_AVAILABLE_LINGUAS=" af ca cs de es et fi fr gl he hu it ko nl pl pt_BR ru sk sv zh_CN zh_TW"
75 IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
76
77 src_unpack() {
78 unpack ${A}
79
80 pushd "${S}"/locale || die "locale directory not found"
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 ${lang}
93 fi
94 done
95 fi
96 popd
97 }
98
99 src_compile() {
100 # SKIPWXCHECK: else 'import wx' results in
101 # Xlib: connection to ":0.0" refused by server
102 SKIPWXCHECK=yes distutils_src_compile
103 }
104
105 src_install() {
106 DOCS="AUTHORS FAQ NEWS"
107 SKIPWXCHECK=yes distutils_src_install
108 }