summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf/checksums.ini4
-rw-r--r--packages/gnome/pyorbit_2.24.0.bb25
2 files changed, 29 insertions, 0 deletions
diff --git a/conf/checksums.ini b/conf/checksums.ini
index 62be7eb72f..12be6980bd 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -13142,6 +13142,10 @@ sha256=10051f2894e901037dfa05b3c604fbdd76d891b9db2213a3c4f24ae79fbcc2a4
md5=3c4d42ae1a7303fd85071a842617043f
sha256=a3517e0ddaf23508f99e7489a23e3462f86c528ea24bce432e832a78ee4149db
+[http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.24/pyorbit-2.24.0.tar.bz2]
+md5=574593815e75ee6e98062c75d6d1581f
+sha256=8754669b8220aa1f151b920360029d5ea28c42bec55769059676725fe28397b8
+
[http://www.wiggy.net/files/pyrad-0.8.tar.gz]
md5=562ddc819d5f6b9d6e1458483e8bbd26
sha256=0ba5090c66aa76a78dac74f92162f3220ac244ad79ce3ee749ff59022c6ca9fd
diff --git a/packages/gnome/pyorbit_2.24.0.bb b/packages/gnome/pyorbit_2.24.0.bb
new file mode 100644
index 0000000000..fe6e2d1b0b
--- /dev/null
+++ b/packages/gnome/pyorbit_2.24.0.bb
@@ -0,0 +1,25 @@
+DESCRIPTION = "Python Orbit bindings"
+LICENSE = "LGPL"
+
+PR = "r0"
+
+inherit gnome distutils-base pkgconfig
+
+SRC_URI += "file://acinclude.m4"
+
+EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../"
+EXTRA_OEMAKE = "-e"
+
+do_configure() {
+ install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/
+ export HOST_SYS=${HOST_SYS}
+ export BUILD_SYS=${BUILD_SYS}
+ export CC=${TARGET_PREFIX}gcc
+ autotools_do_configure
+}
+
+do_stage() {
+ install -d ${STAGING_INCDIR}/pyorbit-2
+ install -m 0644 src/pyorbit.h ${STAGING_INCDIR}/pyorbit-2
+ autotools_stage_all
+}