summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2013-03-17 17:37:08 +0000
committerSergey Popov <pinkbyte@gentoo.org>2013-03-17 17:37:08 +0000
commit736a8706b64ebd0cfb3edb9a794d50b66777036f (patch)
treeb51649eee0a6d563db438b78ff6c51cc7d3556f7 /net-misc/ofono
parentAdd proxy-maintainers to metadata.xml (diff)
downloadgentoo-2-736a8706b64ebd0cfb3edb9a794d50b66777036f.tar.gz
gentoo-2-736a8706b64ebd0cfb3edb9a794d50b66777036f.tar.bz2
gentoo-2-736a8706b64ebd0cfb3edb9a794d50b66777036f.zip
Drop old stable version by maintainer's request wrt bug #445938
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-misc/ofono')
-rw-r--r--net-misc/ofono/ChangeLog5
-rw-r--r--net-misc/ofono/ofono-1.0.ebuild66
2 files changed, 4 insertions, 67 deletions
diff --git a/net-misc/ofono/ChangeLog b/net-misc/ofono/ChangeLog
index 2e3ef80d7d20..998881041f28 100644
--- a/net-misc/ofono/ChangeLog
+++ b/net-misc/ofono/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/ofono
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ofono/ChangeLog,v 1.52 2013/03/17 15:52:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ofono/ChangeLog,v 1.53 2013/03/17 17:37:08 pinkbyte Exp $
+
+ 17 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> -ofono-1.0.ebuild:
+ Drop old stable version by maintainer's request wrt bug #445938
17 Mar 2013; Agostino Sarubbo <ago@gentoo.org> ofono-1.10.ebuild:
Stable for arm, wrt bug #461802
diff --git a/net-misc/ofono/ofono-1.0.ebuild b/net-misc/ofono/ofono-1.0.ebuild
deleted file mode 100644
index 1a952e16c6dd..000000000000
--- a/net-misc/ofono/ofono-1.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ofono/ofono-1.0.ebuild,v 1.7 2012/12/03 02:28:30 ssuominen Exp $
-
-EAPI="2"
-
-inherit multilib systemd
-
-DESCRIPTION="Open Source mobile telephony (GSM/UMTS) daemon."
-HOMEPAGE="http://ofono.org/"
-SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE="+atmodem bluetooth +caps +cdmamodem examples +isimodem +phonesim threads tools +udev"
-
-RDEPEND=">=sys-apps/dbus-1.2.24
- >=dev-libs/glib-2.16
- bluetooth? ( >=net-wireless/bluez-4.61 )
- caps? ( sys-libs/libcap-ng )
- udev? ( virtual/udev )
- examples? ( dev-python/dbus-python )
- tools? ( virtual/libusb:1 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- default
-
- # Fix build with newer glib due to G_DISABLE_SINGLE_INCLUDES
- grep -lre '<glib/gtypes.h>' "${S}" | while read i; do
- sed -ie 's:glib/gtypes.h:glib.h:' "${i}" || die "Unable to sed \"$i\""
- done
-}
-
-src_configure() {
- econf \
- $(use_enable caps capng) \
- $(use_enable threads) \
- $(use_enable udev) \
- $(use_enable isimodem) \
- $(use_enable atmodem) \
- $(use_enable cdmamodem) \
- $(use_enable bluetooth) \
- $(use_enable phonesim) \
- $(use_enable tools) \
- --enable-test \
- --localstatedir=/var \
- --with-systemdunitdir="$(systemd_get_unitdir)"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- if ! use examples ; then
- rm -rf "${D}/usr/$(get_libdir)/ofono/test"
- fi
-
- if use tools ; then
- dobin tools/{auto-enable,huawei-audio} || die
- fi
-
- newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
- dodoc ChangeLog AUTHORS doc/*.txt
-}