Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-mobilephone/obexd: obexd-0.35.ebuild ChangeLog obexd-0.28.ebuild obexd-0.32.ebuild obexd-0.33.ebuild
Date: Sun, 31 Oct 2010 11:31:55
Message-Id: 20101031113150.6E74720051@flycatcher.gentoo.org
1 pacho 10/10/31 11:31:50
2
3 Modified: ChangeLog
4 Added: obexd-0.35.ebuild
5 Removed: obexd-0.28.ebuild obexd-0.32.ebuild
6 obexd-0.33.ebuild
7 Log:
8 Version bump and remove old.
9
10 (Portage version: 2.1.9.23/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.30 app-mobilephone/obexd/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/obexd/ChangeLog?rev=1.30&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/obexd/ChangeLog?rev=1.30&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/obexd/ChangeLog?r1=1.29&r2=1.30
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/ChangeLog,v
22 retrieving revision 1.29
23 retrieving revision 1.30
24 diff -u -r1.29 -r1.30
25 --- ChangeLog 7 Oct 2010 20:57:30 -0000 1.29
26 +++ ChangeLog 31 Oct 2010 11:31:50 -0000 1.30
27 @@ -1,6 +1,19 @@
28 # ChangeLog for app-mobilephone/obexd
29 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/ChangeLog,v 1.29 2010/10/07 20:57:30 pacho Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/ChangeLog,v 1.30 2010/10/31 11:31:50 pacho Exp $
32 +
33 +*obexd-0.35 (31 Oct 2010)
34 +
35 + 31 Oct 2010; Pacho Ramos <pacho@g.o>
36 + -files/obexd-0.21-fix_configure.patch, -obexd-0.28.ebuild,
37 + -obexd-0.32.ebuild, -obexd-0.33.ebuild, +obexd-0.35.ebuild:
38 + Drop old and version bump:
39 + Fix regression on suspend on opening.
40 + Fix suspend stream on opening if no data.
41 + Fix memory leaks in phonebook-tracker module.
42 + Fix not responding Not Found for filtered vcard-listing.
43 + Fix not responding Not Found when no entry is found.
44 + Fix issue with X-IRMC-CALL-DATETIME format.
45
46 *obexd-0.34 (07 Oct 2010)
47
48
49
50
51 1.1 app-mobilephone/obexd/obexd-0.35.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/obexd/obexd-0.35.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/obexd/obexd-0.35.ebuild?rev=1.1&content-type=text/plain
55
56 Index: obexd-0.35.ebuild
57 ===================================================================
58 # Copyright 1999-2010 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.35.ebuild,v 1.1 2010/10/31 11:31:50 pacho Exp $
61
62 EAPI="3"
63
64 inherit eutils
65
66 DESCRIPTION="OBEX Server and Client"
67 HOMEPAGE="http://www.bluez.org/"
68 SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.gz"
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ppc ~x86"
72 IUSE="debug -eds nokia -server usb"
73
74 RDEPEND="eds? ( gnome-extra/evolution-data-server )
75 !eds? ( dev-libs/libical )
76 net-wireless/bluez
77 >=dev-libs/openobex-1.4
78 >=dev-libs/glib-2.16:2
79 sys-apps/dbus
80 server? ( !app-mobilephone/obex-data-server )"
81
82 DEPEND="${RDEPEND}
83 dev-util/pkgconfig"
84
85 src_configure() {
86 econf \
87 $(use_enable debug) \
88 $(use_with eds phonebook ebook) \
89 $(use_enable nokia nokia-backup) \
90 $(use_enable server) \
91 $(use_enable usb)
92 }
93
94 src_install() {
95 emake DESTDIR="${ED}" install || die "emake install failed"
96 dodoc AUTHORS ChangeLog README doc/*.txt || die
97 }