diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-14 20:05:12 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-14 20:05:12 +0000 |
commit | 1d53017dcc04b1619c228059c1cc8094721f4edd (patch) | |
tree | 4586616614ff6e5ced3961efd64823b5f321ca79 /zlib/zlib-1.1.4.oe | |
parent | d5c08baedc06114af1fb4097564497e2fc6e4460 (diff) |
Rename a ton of files to deal with the seperator change.
BKrev: 3f8c56f8VmGkGikIZwqf-Y_cce7tdg
Diffstat (limited to 'zlib/zlib-1.1.4.oe')
-rw-r--r-- | zlib/zlib-1.1.4.oe | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/zlib/zlib-1.1.4.oe b/zlib/zlib-1.1.4.oe deleted file mode 100644 index 82a3979306..0000000000 --- a/zlib/zlib-1.1.4.oe +++ /dev/null @@ -1,35 +0,0 @@ -DESCRIPTION="Zlib Compression Library" -SECTION="libs" -PRIORITY="required" -MAINTAINER="Chris Larson <kergoth@handhelds.org>" -RDEPENDS="libc6" - -SRC_URI="http://www.libpng.org/pub/png/src/zlib-${PV}.tar.gz" -DEPENDS=virtual/libc -S="${WORKDIR}/${P}" - -export LDSHARED="${CC} -shared -Wl,-soname,libz.so.1" -export LDFLAGS:="${LDFLAGS} -L. -lz" -export CFLAGS:="-fPIC ${CFLAGS}" -export AR_append=" rc" -EXTRA_OEMAKE= - -do_compile() { - ./configure --prefix=${prefix} --exec_prefix=${exec_prefix} --shared --libdir=${libdir} --includedir=${includedir} - oe_runmake -e MAKEFLAGS="" libz.so.1.1.4 libz.a -} - -do_stage() { - install -m 0644 zlib.h ${STAGING_DIR}/target/include/zlib.h - install -m 0644 zconf.h ${STAGING_DIR}/target/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}/${prefix} ${D}/${includedir} ${D}/${libdir} - oe_runmake 'prefix=${D}/${prefix}' 'includedir=${D}/${includedir}' \ - 'libdir=${D}/${libdir}' install -} |