BUGFIX: It helps to adjust S after changing package names...
authorMichael Lauer <mickey@vanille-media.de>
Tue, 3 Feb 2004 19:42:25 +0000 (19:42 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Tue, 3 Feb 2004 19:42:25 +0000 (19:42 +0000)
BKrev: 401ff9a1tO172atTeihQp2ueQ6X7wg

python/python-ao_0.82.oe
python/python-crypto_1.9a6.oe
python/python-mad_0.5.1.oe
python/python-ogg_1.3.oe
python/python-pexpect_0.99.oe
python/python-pycap_0.1.6.oe
python/python-pygame_1.6.oe
python/python-pyserial_2.0.oe
python/python-pyxmlrpc_0.8.8.3.oe
python/python-sgmlop_1.1.oe
python/python-vorbis_1.3.oe

index e69de29..f83a922 100644 (file)
@@ -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
+}
+
+
index e69de29..8041a59 100644 (file)
@@ -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
index e69de29..d66ef53 100644 (file)
@@ -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
+}
index e69de29..769e4a2 100644 (file)
@@ -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
+}
index e69de29..b06fd8c 100644 (file)
@@ -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
index e69de29..79f177a 100644 (file)
@@ -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
index e69de29..4fbb3c6 100644 (file)
@@ -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
+}
index e69de29..d4372cf 100644 (file)
@@ -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
+
index e69de29..15d48d7 100644 (file)
@@ -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
index e69de29..0be5776 100644 (file)
@@ -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
+
index e69de29..58a7dd2 100644 (file)
@@ -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
+}