python-pyiw: added 0.3.2 - close #1635
authorNicolas Ferre <nicolasfr@gmail.com>
Sun, 3 Dec 2006 21:07:10 +0000 (21:07 +0000)
committerMarcin Juszkiewicz <hrw@openembedded.org>
Sun, 3 Dec 2006 21:07:10 +0000 (21:07 +0000)
packages/python/python-pyiw-0.3.2/.mtn2git_empty [new file with mode: 0644]
packages/python/python-pyiw-0.3.2/Makefile [new file with mode: 0644]
packages/python/python-pyiw_0.3.2.bb [new file with mode: 0644]

diff --git a/packages/python/python-pyiw-0.3.2/.mtn2git_empty b/packages/python/python-pyiw-0.3.2/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/python/python-pyiw-0.3.2/Makefile b/packages/python/python-pyiw-0.3.2/Makefile
new file mode 100644 (file)
index 0000000..2ea7bae
--- /dev/null
@@ -0,0 +1,18 @@
+# Simple Makfile
+
+NAME   = pyiw
+LIBS  += -liw
+
+#static: pyiw.c
+#      @echo "Statically Building/Linking $(NAME)"
+#      @$(CC) $(CFLAGS) -Istaticlibiw $(<) -shared -o $(NAME).so staticlibiw/libiw.a
+
+dynamic: pyiw.c
+       @echo "Dynamically Building/Linking $(NAME)"
+       @$(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) $(<) -shared -o $(NAME).so
+
+clean:
+       @rm -rf *.o
+       @rm -rf $(NAME).so
+       @rm -rf $(NAME).so.t*
+
diff --git a/packages/python/python-pyiw_0.3.2.bb b/packages/python/python-pyiw_0.3.2.bb
new file mode 100644 (file)
index 0000000..aa86a07
--- /dev/null
@@ -0,0 +1,32 @@
+DESCRIPTION = "PyIW is a simple Python extension module written in C \
+that interfaces with libiw  and provides a very 'pythonic' API to programmers."
+HOMEPAGE = "http://www.emperorlinux.com/etc/contrib/?page=pyiw"
+SECTION = "devel/python"
+PRIORITY = "optional"
+LICENSE = "GPL"
+DEPENDS = "wireless-tools"
+RDEPENDS = "python-core libiw"
+PR = "ml0"
+
+SRC_URI = "http://downloads.emperorlinux.com/contrib/pyiw/pyiw-${PV}.tbz2 \
+           file://Makefile"
+
+S="${WORKDIR}/pyiw-${PV}"
+
+do_unpack_real () {
+        tar jxvf pyiw-${PV}.tbz2
+        cp Makefile pyiw-${PV}/
+}
+do_unpack_real[dirs] = "${WORKDIR}"
+addtask unpack_real before do_patch after do_unpack
+
+inherit autotools pkgconfig distutils-base
+
+CFLAGS += "-I${STAGING_INCDIR}/${PYTHON_DIR}"
+
+do_install() {
+        install -d ${D}${libdir}/${PYTHON_DIR}/site-packages/
+        install -m 0755 pyiw.so ${D}${libdir}/${PYTHON_DIR}/site-packages/pyiw.so
+}
+
+FILES_${PN} = "${libdir}/${PYTHON_DIR}/site-packages/pyiw.so"