summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-31 11:31:50 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-31 11:31:50 +0000
commitc4e3db4fc61e0951309a637ecac545a2ccc6da7d (patch)
tree29a8d89bd191fa32285d743097e7a1200c9465b2 /app-mobilephone
parentVersion bump and remove old. (diff)
downloadgentoo-2-c4e3db4fc61e0951309a637ecac545a2ccc6da7d.tar.gz
gentoo-2-c4e3db4fc61e0951309a637ecac545a2ccc6da7d.tar.bz2
gentoo-2-c4e3db4fc61e0951309a637ecac545a2ccc6da7d.zip
Version bump and remove old.
(Portage version: 2.1.9.23/cvs/Linux x86_64)
Diffstat (limited to 'app-mobilephone')
-rw-r--r--app-mobilephone/obexd/ChangeLog15
-rw-r--r--app-mobilephone/obexd/files/obexd-0.21-fix_configure.patch39
-rw-r--r--app-mobilephone/obexd/obexd-0.28.ebuild40
-rw-r--r--app-mobilephone/obexd/obexd-0.33.ebuild40
-rw-r--r--app-mobilephone/obexd/obexd-0.35.ebuild (renamed from app-mobilephone/obexd/obexd-0.32.ebuild)8
5 files changed, 18 insertions, 124 deletions
diff --git a/app-mobilephone/obexd/ChangeLog b/app-mobilephone/obexd/ChangeLog
index 2b950fdcf8b3..e0f11aebed26 100644
--- a/app-mobilephone/obexd/ChangeLog
+++ b/app-mobilephone/obexd/ChangeLog
@@ -1,6 +1,19 @@
# ChangeLog for app-mobilephone/obexd
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/ChangeLog,v 1.29 2010/10/07 20:57:30 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/ChangeLog,v 1.30 2010/10/31 11:31:50 pacho Exp $
+
+*obexd-0.35 (31 Oct 2010)
+
+ 31 Oct 2010; Pacho Ramos <pacho@gentoo.org>
+ -files/obexd-0.21-fix_configure.patch, -obexd-0.28.ebuild,
+ -obexd-0.32.ebuild, -obexd-0.33.ebuild, +obexd-0.35.ebuild:
+ Drop old and version bump:
+ Fix regression on suspend on opening.
+ Fix suspend stream on opening if no data.
+ Fix memory leaks in phonebook-tracker module.
+ Fix not responding Not Found for filtered vcard-listing.
+ Fix not responding Not Found when no entry is found.
+ Fix issue with X-IRMC-CALL-DATETIME format.
*obexd-0.34 (07 Oct 2010)
diff --git a/app-mobilephone/obexd/files/obexd-0.21-fix_configure.patch b/app-mobilephone/obexd/files/obexd-0.21-fix_configure.patch
deleted file mode 100644
index 2f26bb0baa81..000000000000
--- a/app-mobilephone/obexd/files/obexd-0.21-fix_configure.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From a35b4a2330ff042f362c8af69e6bbd3909a128d3 Mon Sep 17 00:00:00 2001
-From: Vinicius Costa Gomes <vinicius.gomes@openbossa.org>
-Date: Fri, 19 Feb 2010 11:34:55 -0300
-Subject: [PATCH 1/1] Fix compilation when passing the --without-<driver> option
-
-When we pass the --without-* option, the {withval} variable
-was being set to "no".
----
- configure.ac | 5 ++---
- 1 files changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index ba0f8a1..cca5ce9 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -105,10 +105,9 @@ AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
- CFLAGS="$CFLAGS -g"
- fi
- ])
--
- phonebook_driver=dummy
- AC_ARG_WITH(phonebook, AC_HELP_STRING([--with-phonebook=DRIVER], [select phonebook driver]), [
-- phonebook_driver=${withval}
-+ phonebook_driver=${withval}, phonebook_driver=dummy
- ])
-
- if (test "${phonebook_driver}" = "ebook"); then
-@@ -129,7 +128,7 @@ AC_SUBST([PHONEBOOK_DRIVER], [phonebook-${phonebook_driver}.c])
-
- telephony_driver=dummy
- AC_ARG_WITH(telephony, AC_HELP_STRING([--with-telephony=DRIVER], [select telephony driver]), [
-- telephony_driver=${withval}
-+ telephony_driver=${withval}, telephony_driver=dummy
- ])
-
- AC_SUBST([TELEPHONY_DRIVER], [telephony-${telephony_driver}.c])
---
-1.6.2.5
-
diff --git a/app-mobilephone/obexd/obexd-0.28.ebuild b/app-mobilephone/obexd/obexd-0.28.ebuild
deleted file mode 100644
index c777eba66f12..000000000000
--- a/app-mobilephone/obexd/obexd-0.28.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.28.ebuild,v 1.6 2010/07/20 15:10:46 jer Exp $
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="OBEX Server and Client"
-HOMEPAGE="http://www.bluez.org/"
-SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="debug -eds nokia -server usb"
-
-RDEPEND="eds? ( gnome-extra/evolution-data-server )
- !eds? ( dev-libs/libical )
- net-wireless/bluez
- >=dev-libs/openobex-1.4
- >=dev-libs/glib-2.16:2
- sys-apps/dbus
- server? ( !app-mobilephone/obex-data-server )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_with eds phonebook ebook) \
- $(use_enable nokia nokia-backup) \
- $(use_enable server) \
- $(use_enable usb)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README doc/*.txt
-}
diff --git a/app-mobilephone/obexd/obexd-0.33.ebuild b/app-mobilephone/obexd/obexd-0.33.ebuild
deleted file mode 100644
index 6a9454c8842e..000000000000
--- a/app-mobilephone/obexd/obexd-0.33.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.33.ebuild,v 1.1 2010/09/10 10:11:38 pacho Exp $
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="OBEX Server and Client"
-HOMEPAGE="http://www.bluez.org/"
-SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug -eds nokia -server usb"
-
-RDEPEND="eds? ( gnome-extra/evolution-data-server )
- !eds? ( dev-libs/libical )
- net-wireless/bluez
- >=dev-libs/openobex-1.4
- >=dev-libs/glib-2.16:2
- sys-apps/dbus
- server? ( !app-mobilephone/obex-data-server )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_with eds phonebook ebook) \
- $(use_enable nokia nokia-backup) \
- $(use_enable server) \
- $(use_enable usb)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README doc/*.txt
-}
diff --git a/app-mobilephone/obexd/obexd-0.32.ebuild b/app-mobilephone/obexd/obexd-0.35.ebuild
index 273037cf50b3..a07da7ec9ac4 100644
--- a/app-mobilephone/obexd/obexd-0.32.ebuild
+++ b/app-mobilephone/obexd/obexd-0.35.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.32.ebuild,v 1.1 2010/09/08 14:13:57 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexd/obexd-0.35.ebuild,v 1.1 2010/10/31 11:31:50 pacho Exp $
-EAPI="2"
+EAPI="3"
inherit eutils
@@ -35,6 +35,6 @@ src_configure() {
}
src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README doc/*.txt
+ emake DESTDIR="${ED}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog README doc/*.txt || die
}