From 2ba996844db81f368f90c76a52e456712bdd0e4c Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Tue, 1 Jul 2003 22:42:49 +0000 Subject: Many files: Remove unnecessary base inherit. oe-1.0_bk.oe: Rename: content/oe-1.0_bk-r1.oe -> content/oe-1.0_bk.oe oe-1.0_bk-r1.oe: Rename: content/oe-1.0_bk.oe -> content/oe-1.0_bk-r1.oe tmake-1.11.oe: Add a few missing variables to tmake BKrev: 3f020e69dbkC3U9sTD1rCFFSuAne6Q --- content/dropbear-0.33.oe | 15 +++++++++++++++ content/glibc-2.3.1.oe | 2 -- content/ipkg-0.99.84.oe | 2 -- content/ipkg-utils-1.0_cvs.oe | 15 +++++++++++++++ content/kernel-headers-2.4.21.oe | 13 +++++++++++++ content/oe-1.0_bk.oe | 5 +++-- content/tmake-1.11.oe | 28 ++++++++++++++++++++++++++++ content/zlib-1.1.4.oe | 37 +++++++++++++++++++++++++++++++++++++ content/zsh-4.1.1.oe | 9 +++++++++ 9 files changed, 120 insertions(+), 6 deletions(-) (limited to 'content') diff --git a/content/dropbear-0.33.oe b/content/dropbear-0.33.oe index e69de29bb2..b5e2995e01 100644 --- a/content/dropbear-0.33.oe +++ b/content/dropbear-0.33.oe @@ -0,0 +1,15 @@ +DESCRIPTION="Dropbear SSH Implementation" +LICENSE="MIT" +SRC_URI="http://matt.ucc.asn.au/dropbear/dropbear-0.33.tar.bz2" +DEPENDS=virtual/libc content/zlib + +S="${WORKDIR}/${P}" + +do_compile() { + CFLAGS="${CFLAGS}" + LDFLAGS="${LDFLAGS}" + CPPFLAGS="${CPPFLAGS}" + CXXFLAGS="${CXXFLAGS}" + export CFLAGS LDFLAGS CXXFLAGS CPPFLAGS + base_do_compile $@ +} diff --git a/content/glibc-2.3.1.oe b/content/glibc-2.3.1.oe index b3f0eb8d7f..b67a4473dc 100644 --- a/content/glibc-2.3.1.oe +++ b/content/glibc-2.3.1.oe @@ -16,8 +16,6 @@ PACKAGES="libc6" FILES="" FILES_libc6="/lib/libc.so.6" -inherit base - do_unpack() { base_do_unpack $@ || die test -d ${S} || die diff --git a/content/ipkg-0.99.84.oe b/content/ipkg-0.99.84.oe index ec617b5f77..68837db6c4 100644 --- a/content/ipkg-0.99.84.oe +++ b/content/ipkg-0.99.84.oe @@ -6,8 +6,6 @@ DEPENDS=virtual/libc S="${WORKDIR}/ipkg/C" -inherit base - do_compile () { ( ./autoconfigure.sh && \ diff --git a/content/ipkg-utils-1.0_cvs.oe b/content/ipkg-utils-1.0_cvs.oe index e69de29bb2..c744923db2 100644 --- a/content/ipkg-utils-1.0_cvs.oe +++ b/content/ipkg-utils-1.0_cvs.oe @@ -0,0 +1,15 @@ +DESCRIPTION="Itsy Package Manager utilities" +LICENSE="GPL" +SRC_URI="cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=ipkg-utils" +#DEPENDS=virtual/libc + +S="${WORKDIR}/${PN}" + +do_stage() { + cp ipkg* ${STAGING_BINDIR}/ +} + +do_install() { + install -d ${D}/usr/bin + cp ipkg* ${D}/usr/bin/ +} diff --git a/content/kernel-headers-2.4.21.oe b/content/kernel-headers-2.4.21.oe index e69de29bb2..1792853acb 100644 --- a/content/kernel-headers-2.4.21.oe +++ b/content/kernel-headers-2.4.21.oe @@ -0,0 +1,13 @@ +DESCRIPTION="Kernel headers need to compile the C-Library" +LICENSE="GPL" +SRC_URI="http://www.uclibc.org/downloads/toolchain/${P}.tar.bz2" +PROVIDES=virtual/kernel-header +S="${WORKDIR}/linux" + +do_stage() { + mkdir -p ${STAGING_DIR}/target/include/{linux,asm} + cp -a include/linux/* ${STAGING_DIR}/target/include/linux/ + cp -a include/asm-${ARCH}/* ${STAGING_DIR}/target/include/asm/ + cp -a ${FILESDIR}/{version,autoconf}.h ${STAGING_DIR}/target/include/linux/ + chmod 644 ${STAGING_DIR}/target/include/linux/{version,autoconf}.h +} diff --git a/content/oe-1.0_bk.oe b/content/oe-1.0_bk.oe index 138906ffdc..9c18ef3a15 100644 --- a/content/oe-1.0_bk.oe +++ b/content/oe-1.0_bk.oe @@ -8,10 +8,11 @@ PRIORITY="optional" MAINTAINER="OpenEmbedded Team " do_install() { - install -d ${D}/usr/{share/oe/{build,classes,oe{,/parse}},bin} + install -d ${D}/usr/{share/oe/{build,classes,conf,oe{,/parse}},bin} install -m 0755 ${OEDIR}/bin/oe{make{,d},build} ${D}/usr/bin/ - install -m 0755 ${OEDIR}/bin/build/oe{build.sh,debug,note,fatal} ${D}/usr/share/oe/build/ + install -m 0755 ${OEDIR}/bin/build/oe{build.sh,debug,note,fatal} ${D}/usr/bin/ install -m 0644 ${OEDIR}/bin/classes/*.oeclass ${D}/usr/share/oe/classes/ install -m 0644 ${OEDIR}/bin/oe/*.py ${D}/usr/share/oe/oe install -m 0644 ${OEDIR}/bin/oe/parse/*.py ${D}/usr/share/oe/oe/parse/ + install -m 0644 ${OEDIR}/conf/oe.conf ${D}/usr/share/oe/conf/ } diff --git a/content/tmake-1.11.oe b/content/tmake-1.11.oe index e69de29bb2..ea3b68b403 100644 --- a/content/tmake-1.11.oe +++ b/content/tmake-1.11.oe @@ -0,0 +1,28 @@ +SRC_URI="ftp://ftp.trolltech.com/pub/freebies/tmake/tmake-${PV}.tar.gz" +DESCRIPTION="tmake is an easy-to-use tool for creating and maintaining makefiles across many platforms and compilers." +LICENSE="Unknown" +DEPENDS="" +SECTION="base" +PRIORITY="optional" +MAINTAINER="Chris Larson " + +S="${WORKDIR}/${P}" + +do_stage() { + install -m 0755 bin/tmake bin/progen ${STAGING_BINDIR}/ + + install -d ${STAGING_DIR}/share/tmake + cp -R lib/* ${STAGING_DIR}/share/tmake/ +} + +do_install() { + install -d ${D}/usr/bin + install -m 0755 bin/tmake bin/progen ${D}/usr/bin/ + + install -d ${D}/usr/share/tmake + cp -R lib/* ${D}/usr/share/tmake/ +} + +PACKAGES="tmake" +FILES="" +FILES_tmake="/usr/bin/tmake /usr/bin/progen /usr/share/tmake/*" diff --git a/content/zlib-1.1.4.oe b/content/zlib-1.1.4.oe index e69de29bb2..e0eacbf821 100644 --- a/content/zlib-1.1.4.oe +++ b/content/zlib-1.1.4.oe @@ -0,0 +1,37 @@ +DESCRIPTION="Zlib Compression Library" +SECTION="libs" +PRIORITY="required" +MAINTAINER="Chris Larson " +RDEPENDS="libc6" + +SRC_URI="http://www.libpng.org/pub/png/src/zlib-${PV}.tar.gz" +DEPENDS=virtual/libc +S="${WORKDIR}/${P}" + +EXTRA_OECONF="--shared" + +do_compile() { + unset CC CFLAGS CPPFLAGS LDFLAGS; ./configure --prefix=/usr --shared || die "failed configuring ${P}" + oemake LDSHARED="${CC} -shared -Wl,-soname,libz.so.1" CC="${CC}" CFLAGS="-fPIC ${CFLAGS}" LD="${LD}" CPP="${CC} -E" AR="${AR} rc" LDFLAGS="${LDFLAGS}" libz.so.1.1.4 libz.a || die "failed building ${P}" +} + +do_stage() { + install -d ${STAGING_DIR}/{bin,lib,include} + install -m 0644 zlib.h ${STAGING_DIR}/include/zlib.h + install -m 0644 zconf.h ${STAGING_DIR}/include/zconf.h + install -m 0755 libz.so.1.1.4 ${STAGING_LIBDIR}/libz.so.1.1.4 + install -m 0755 libz.a ${STAGING_LIBDIR}/libz.a + ln -sf ./libz.so.1.1.4 ${STAGING_LIBDIR}/libz.so.1 + ln -sf ./libz.so.1.1.4 ${STAGING_LIBDIR}/libz.so +} + +do_install() { + install -d ${D}/usr/lib + install -m 0755 libz.so.1.1.4 ${D}/usr/lib/libz.so.1.1.4 + ln -sf ./libz.so.1.1.4 ${D}/usr/lib/libz.so.1 + ln -sf ./libz.so.1.1.4 ${D}/usr/lib/libz.so +} + +PACKAGES="zlib1g" +FILES="" +FILES_zlib1g="/usr/lib/libz.so.1.1.4 /usr/lib/libz.so.1 /usr/lib/libz.so" diff --git a/content/zsh-4.1.1.oe b/content/zsh-4.1.1.oe index e69de29bb2..f05ca2af1f 100644 --- a/content/zsh-4.1.1.oe +++ b/content/zsh-4.1.1.oe @@ -0,0 +1,9 @@ +DESCRIPTION="Zsh shell" +SECTION="base" +PRIORITY="optional" +MAINTAINER="Chris Larson " +RDEPENDS="libc6" + +SRC_URI="http://www.zsh.org/pub/${P}.tar.bz2" +DEPENDS=virtual/libc +S="${WORKDIR}/${P}" -- cgit v1.2.3