diff options
author | 2009-02-08 00:33:22 +0000 | |
---|---|---|
committer | 2009-02-08 00:33:22 +0000 | |
commit | 44780a4737c2b5a86da37dd3a108ca82009418e0 (patch) | |
tree | 77686e3194deaba9cb2f0915a0ff8aae09100755 /dev-python | |
parent | New ebuild for EXPERIMENTAL gsm muxer (diff) | |
download | embedded-cross-44780a4737c2b5a86da37dd3a108ca82009418e0.tar.gz embedded-cross-44780a4737c2b5a86da37dd3a108ca82009418e0.tar.bz2 embedded-cross-44780a4737c2b5a86da37dd3a108ca82009418e0.zip |
Python RTC helper, needed for frameworkd to be able to adjust time
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pyrtc/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyrtc/pyrtc-9999.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/pyrtc/Manifest b/dev-python/pyrtc/Manifest new file mode 100644 index 0000000..523f5b1 --- /dev/null +++ b/dev-python/pyrtc/Manifest @@ -0,0 +1 @@ +EBUILD pyrtc-9999.ebuild 580 RMD160 865db00a3a029928b3ead22cebb59a5383cd3c96 SHA1 64ee31a6dbe1edeb0d48b47b5bb0238c0346ea0b SHA256 cebbb028595be4a3bef181699d1f06bd79a049d3088171d088359ea1244c7de7 diff --git a/dev-python/pyrtc/pyrtc-9999.ebuild b/dev-python/pyrtc/pyrtc-9999.ebuild new file mode 100644 index 0000000..dcaa122 --- /dev/null +++ b/dev-python/pyrtc/pyrtc-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit distutils git + +DESCRIPTION="The FreeSmartPhone.org Python RTC helper" +HOMEPAGE="http://www.freesmartphone.org" +EGIT_REPO_URI="git://git.freesmartphone.org/python-helpers.git" +EGIT_PROJECT="python-helpers.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~arm" +IUSE="" + +RDEPEND="dev-lang/python + >=sys-apps/dbus-1.2" +DEPEND="dev-python/cython" + +src_compile() { + + cd ${S}/${PN} + + distutils_src_compile +} + +src_install() { + + cd ${S}/${PN} + distutils_src_install +} |