diff options
author | 2011-02-15 10:28:05 +0000 | |
---|---|---|
committer | 2011-02-15 10:28:05 +0000 | |
commit | 4745ee4aab09ef67d5253a159a5cfb8ebb99632d (patch) | |
tree | 62d4d0b6bc4314eafe686f9c2b11bd9222cfc6fb /net-misc | |
parent | Today Python Patches (diff) | |
download | gentoo-2-4745ee4aab09ef67d5253a159a5cfb8ebb99632d.tar.gz gentoo-2-4745ee4aab09ef67d5253a159a5cfb8ebb99632d.tar.bz2 gentoo-2-4745ee4aab09ef67d5253a159a5cfb8ebb99632d.zip |
Add version 0.42
(Portage version: 2.1.9.39/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/ofono/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/ofono/ofono-0.42.ebuild | 56 |
2 files changed, 62 insertions, 1 deletions
diff --git a/net-misc/ofono/ChangeLog b/net-misc/ofono/ChangeLog index f4bce60aae51..bb5ab1d51b2a 100644 --- a/net-misc/ofono/ChangeLog +++ b/net-misc/ofono/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/ofono # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ofono/ChangeLog,v 1.27 2011/02/08 09:34:02 dagger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ofono/ChangeLog,v 1.28 2011/02/15 10:28:05 dagger Exp $ + +*ofono-0.42 (15 Feb 2011) + + 15 Feb 2011; Robert Piasek <dagger@gentoo.org> +ofono-0.42.ebuild: + Add version 0.42 08 Feb 2011; Robert Piasek <dagger@gentoo.org> -ofono-0.36.ebuild, +ofono-0.41.ebuild: diff --git a/net-misc/ofono/ofono-0.42.ebuild b/net-misc/ofono/ofono-0.42.ebuild new file mode 100644 index 000000000000..cb41d09b7b77 --- /dev/null +++ b/net-misc/ofono/ofono-0.42.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ofono/ofono-0.42.ebuild,v 1.1 2011/02/15 10:28:05 dagger Exp $ + +EAPI="2" + +inherit multilib + +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="~arm ~amd64 ~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? ( >=sys-fs/udev-143 ) + examples? ( dev-python/dbus-python ) + tools? ( dev-libs/libusb:1 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +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 +} + +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 +} |