summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-02-03 19:42:25 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-02-03 19:42:25 +0000
commit9286db863d2e8fdc571852e0bdf97a96e92ad1d4 (patch)
tree6264b1501ad04a91e642cb561bf5f4d05e1d89ea /python
parent2a6cfe8cfd3743d59c653858be98ebbb7bb5f069 (diff)
BUGFIX: It helps to adjust S after changing package names...
BKrev: 401ff9a1tO172atTeihQp2ueQ6X7wg
Diffstat (limited to 'python')
-rw-r--r--python/python-ao_0.82.oe21
-rw-r--r--python/python-crypto_1.9a6.oe12
-rw-r--r--python/python-mad_0.5.1.oe20
-rw-r--r--python/python-ogg_1.3.oe24
-rw-r--r--python/python-pexpect_0.99.oe12
-rw-r--r--python/python-pycap_0.1.6.oe12
-rw-r--r--python/python-pygame_1.6.oe17
-rw-r--r--python/python-pyserial_2.0.oe13
-rw-r--r--python/python-pyxmlrpc_0.8.8.3.oe12
-rw-r--r--python/python-sgmlop_1.1.oe13
-rw-r--r--python/python-vorbis_1.3.oe23
11 files changed, 179 insertions, 0 deletions
diff --git a/python/python-ao_0.82.oe b/python/python-ao_0.82.oe
index e69de29bb2..f83a9226ee 100644
--- a/python/python-ao_0.82.oe
+++ b/python/python-ao_0.82.oe
@@ -0,0 +1,21 @@
+DESCRIPTION=Python AO Bindings
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 libao
+DEPENDS=virtual/libc libao
+SRCNAME=pyao
+
+SRC_URI = http://www.andrewchatham.com/pyogg/download/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
+do_configure_prepend() {
+ touch Setup
+ echo "ao_libs = ao" >>Setup
+ echo "ao_lib_dir = ${STAGING_LIBDIR}" >>Setup
+ echo "ao_include_dir = ${STAGING_INCDIR}" >>Setup
+}
+
+
diff --git a/python/python-crypto_1.9a6.oe b/python/python-crypto_1.9a6.oe
index e69de29bb2..8041a5927b 100644
--- a/python/python-crypto_1.9a6.oe
+++ b/python/python-crypto_1.9a6.oe
@@ -0,0 +1,12 @@
+DESCRIPTION="A collection of cryptographic algorithms and protocols"
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core gmp
+DEPENDS=virtual/libc gmp
+SRCNAME=pycrypto
+
+SRC_URI = http://www.amk.ca/files/python/crypto/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
diff --git a/python/python-mad_0.5.1.oe b/python/python-mad_0.5.1.oe
index e69de29bb2..d66ef530c7 100644
--- a/python/python-mad_0.5.1.oe
+++ b/python/python-mad_0.5.1.oe
@@ -0,0 +1,20 @@
+DESCRIPTION=Python libmad Bindings
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core libmad
+DEPENDS=virtual/libc libmad
+SRCNAME=pymad
+
+SRC_URI = http://spacepants.org/src/pymad/download/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
+do_configure_prepend() {
+ touch Setup
+ echo "endian = little" >>Setup # FIXME, not always true
+ echo "mad_libs = mad" >>Setup
+ echo "mad_lib_dir = ${STAGING_LIBDIR}" >>Setup
+ echo "mad_include_dir = ${STAGING_INCDIR}" >>Setup
+}
diff --git a/python/python-ogg_1.3.oe b/python/python-ogg_1.3.oe
index e69de29bb2..769e4a2f33 100644
--- a/python/python-ogg_1.3.oe
+++ b/python/python-ogg_1.3.oe
@@ -0,0 +1,24 @@
+DESCRIPTION=Python Ogg Vorbis Bindings
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core libogg
+DEPENDS=virtual/libc libogg
+SRCNAME=pyogg
+
+SRC_URI = http://www.andrewchatham.com/pyogg/download/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
+do_configure_prepend() {
+ touch Setup
+ echo "ogg_libs = ogg" >>Setup
+ echo "ogg_lib_dir = ${STAGING_LIBDIR}" >>Setup
+ echo "ogg_include_dir = ${STAGING_INCDIR}" >>Setup
+}
+
+do_stage() {
+ install -d ${STAGING_INCDIR}/pyogg
+ install -m 0644 include/pyogg/pyogg.h ${STAGING_INCDIR}/pyogg/pyogg.h
+}
diff --git a/python/python-pexpect_0.99.oe b/python/python-pexpect_0.99.oe
index e69de29bb2..b06fd8cbd3 100644
--- a/python/python-pexpect_0.99.oe
+++ b/python/python-pexpect_0.99.oe
@@ -0,0 +1,12 @@
+DESCRIPTION=A Pure Python Expect like Module for Python
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core python-io python-terminal python-resource python-fcntl
+DEPENDS=virtual/libc
+SRCNAME=pexpect
+
+SRC_URI = ${SOURCEFORGE_MIRROR}/${SRCNAME}/${SRCNAME}-${PV}.tgz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
diff --git a/python/python-pycap_0.1.6.oe b/python/python-pycap_0.1.6.oe
index e69de29bb2..79f177aa2a 100644
--- a/python/python-pycap_0.1.6.oe
+++ b/python/python-pycap_0.1.6.oe
@@ -0,0 +1,12 @@
+DESCRIPTION=Python Packet Capture Library
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core libnet (1.1.1) libpcap (0.7.2)
+DEPENDS=virtual/libc libpcap-0.7.2 libnet-1.1.1
+SRCNAME=pycap
+
+SRC_URI = ${SOURCEFORGE_MIRROR}/${SRCNAME}/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
diff --git a/python/python-pygame_1.6.oe b/python/python-pygame_1.6.oe
index e69de29bb2..4fbb3c6d10 100644
--- a/python/python-pygame_1.6.oe
+++ b/python/python-pygame_1.6.oe
@@ -0,0 +1,17 @@
+DESCRIPTION=Python libSDL Bindings
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core python-numeric libsdl libsdl-image libsdl-mixer libsdl-net libsdl-ttf smpeg
+DEPENDS=virtual/libc libsdl libsdl-image libsdl-mixer libsdl-net libsdl-ttf smpeg python-numeric
+SRCNAME=pygame
+
+SRC_URI = http://www.pygame.org/ftp/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
+do_configure_prepend() {
+ SDL="`sdl-config --cflags` `sdl-config --libs`"; echo "SDL=$SDL" >Setup
+ cat ${FILESDIR}/Setup >>Setup
+}
diff --git a/python/python-pyserial_2.0.oe b/python/python-pyserial_2.0.oe
index e69de29bb2..d4372cf044 100644
--- a/python/python-pyserial_2.0.oe
+++ b/python/python-pyserial_2.0.oe
@@ -0,0 +1,13 @@
+DESCRIPTION="Serial Port Support for Python"
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core
+DEPENDS=virtual/libc
+SRCNAME=pyserial
+
+SRC_URI = http://www.vanille.de/mirror/${SRCNAME}-${PV}.tar.bz2
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
diff --git a/python/python-pyxmlrpc_0.8.8.3.oe b/python/python-pyxmlrpc_0.8.8.3.oe
index e69de29bb2..15d48d7e4c 100644
--- a/python/python-pyxmlrpc_0.8.8.3.oe
+++ b/python/python-pyxmlrpc_0.8.8.3.oe
@@ -0,0 +1,12 @@
+DESCRIPTION=Fast Python XMLRPC Library
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core
+DEPENDS=virtual/libc
+SRCNAME=py-xmlrpc
+
+SRC_URI = ${SOURCEFORGE_MIRROR}/${SRCNAME}/${SRCNAME}-${PV}.tar.gz
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
diff --git a/python/python-sgmlop_1.1.oe b/python/python-sgmlop_1.1.oe
index e69de29bb2..0be5776861 100644
--- a/python/python-sgmlop_1.1.oe
+++ b/python/python-sgmlop_1.1.oe
@@ -0,0 +1,13 @@
+DESCRIPTION="Pythonware Fast SGML Parser for Python"
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core
+DEPENDS=virtual/libc
+SRCNAME=sgmlop
+
+SRC_URI = http://www.vanille.de/mirror/${SRCNAME}-${PV}.tar.bz2
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
diff --git a/python/python-vorbis_1.3.oe b/python/python-vorbis_1.3.oe
index e69de29bb2..58a7dd20e5 100644
--- a/python/python-vorbis_1.3.oe
+++ b/python/python-vorbis_1.3.oe
@@ -0,0 +1,23 @@
+DESCRIPTION=Python Vorbis Bindings
+SECTION=base
+PRIORITY=optional
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+RDEPENDS=libc6 python-core libvorbis pyogg
+DEPENDS=virtual/libc libvorbis pyogg
+SRCNAME=pyvorbis
+
+SRC_URI = http://www.andrewchatham.com/pyogg/download/${SRCNAME}-${PV}.tar.gz \
+ file://${FILESDIR}/disable-oggcheck.patch;patch=1
+S = ${WORKDIR}/${SRCNAME}-${PV}
+
+inherit distutils
+
+do_configure_prepend() {
+ touch Setup
+ echo "ogg_libs = ogg" >>Setup
+ echo "ogg_lib_dir = ${STAGING_LIBDIR}" >>Setup
+ echo "ogg_include_dir = ${STAGING_INCDIR}" >>Setup
+ echo "vorbis_libs = vorbis vorbisfile vorbisenc" >>Setup
+ echo "vorbis_lib_dir = ${STAGING_LIBDIR}" >>Setup
+ echo "vorbis_include_dir = ${STAGING_INCDIR}" >>Setup
+}