diff options
-rw-r--r-- | flex/flex_2.5.31.oe | 12 | ||||
-rw-r--r-- | gpm/gpm_1.20.1.oe | 20 | ||||
-rw-r--r-- | liblockfile/liblockfile_1.05.oe | 1 | ||||
-rw-r--r-- | nonworking/centericq/centericq_4.9.7.oe | 9 | ||||
-rw-r--r-- | nonworking/links/links_2.1pre12.oe | 13 |
5 files changed, 54 insertions, 1 deletions
diff --git a/flex/flex_2.5.31.oe b/flex/flex_2.5.31.oe index e69de29bb2..370fa0e959 100644 --- a/flex/flex_2.5.31.oe +++ b/flex/flex_2.5.31.oe @@ -0,0 +1,12 @@ +DEPENDS = virtual/libc +RDEPENDS = libc6 + +SRC_URI = ${SOURCEFORGE_MIRROR}/lex/flex-2.5.31.tar.bz2 \ + file://${FILESDIR}/include.patch;patch=1 + +inherit autotools + +do_stage () { + install -m 0644 libfl.a ${STAGING_LIBDIR}/ + install -m 0644 FlexLexer.h ${STAGING_DIR}/target/include/ +} diff --git a/gpm/gpm_1.20.1.oe b/gpm/gpm_1.20.1.oe index e69de29bb2..336d277879 100644 --- a/gpm/gpm_1.20.1.oe +++ b/gpm/gpm_1.20.1.oe @@ -0,0 +1,20 @@ +SRC_URI = ftp://arcana.linux.it/pub/gpm/gpm-1.20.1.tar.bz2 +S = ${WORKDIR}/${P} + +inherit autotools + +export LIBS=-lm +do_configure_prepend () { + cp aclocal.m4 acinclude.m4 +} + +do_stage () { + install -m 0644 src/headers/gpm.h ${STAGING_DIR}/target/include/ + install -m 0644 src/lib/libgpm.a ${STAGING_LIBDIR}/ + install -m 0755 src/lib/libgpm.so.1.19.0 ${STAGING_LIBDIR}/ + ln -sf libgpm.so.1.19.0 ${STAGING_LIBDIR}/libgpm.so +} + +do_install () { + oe_runmake 'ROOT=${D}' install +} diff --git a/liblockfile/liblockfile_1.05.oe b/liblockfile/liblockfile_1.05.oe index f9bc02a1f3..452a9c8221 100644 --- a/liblockfile/liblockfile_1.05.oe +++ b/liblockfile/liblockfile_1.05.oe @@ -18,6 +18,5 @@ do_stage () { } do_install () { - install -d ${D}/${includedir} oe_runmake 'ROOT=${D}' INSTGRP='' install } diff --git a/nonworking/centericq/centericq_4.9.7.oe b/nonworking/centericq/centericq_4.9.7.oe index e69de29bb2..02f1d4e36a 100644 --- a/nonworking/centericq/centericq_4.9.7.oe +++ b/nonworking/centericq/centericq_4.9.7.oe @@ -0,0 +1,9 @@ +DEPENDS = virtual/libc openssl +RDEPENDS = libc6 libssl0 + +SRC_URI = http://thekonst.net/download/centericq-4.9.7.tar.bz2 +S = ${WORKDIR}/${P} + +inherit autotools + +EXTRA_OECONF = '--with-ssl --with-openssl=${STAGING_DIR}/target' diff --git a/nonworking/links/links_2.1pre12.oe b/nonworking/links/links_2.1pre12.oe index e69de29bb2..b6c0c52d88 100644 --- a/nonworking/links/links_2.1pre12.oe +++ b/nonworking/links/links_2.1pre12.oe @@ -0,0 +1,13 @@ +DEPENDS = virtual/libc jpeg libpng gpm flex openssl zlib +RDEPENDS = libc6 libjpeg libpng gpm openssl zlib1g + +SRC_URI = http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/download/links-2.1pre12.tar.bz2 +S = ${WORKDIR}/${P} + +inherit autotools + +EXTRA_OECONF = '--enable-javascript --with-libfl --enable-graphics \ + --with-ssl=${STAGING_DIR}/target --with-libjpeg \ + --without-libtiff --without-svgalib --without-x --with-fb \ + --without-directfb --without-pmshell --without-atheos \ + --without-x' |