libtool-1.4.3.oe:
authorChris Larson <clarson@kergoth.com>
Wed, 10 Sep 2003 16:28:38 +0000 (16:28 +0000)
committerChris Larson <clarson@kergoth.com>
Wed, 10 Sep 2003 16:28:38 +0000 (16:28 +0000)
  add sed patch to fix a libtool oddity/borkedness
sedvar.patch:
  new file

BKrev: 3f5f5136CLyECmTCRvpqsln1Ofn8uQ

content/libtool-1.4.3-r0/sedvar.patch [new file with mode: 0644]
content/libtool-1.4.3.oe

diff --git a/content/libtool-1.4.3-r0/sedvar.patch b/content/libtool-1.4.3-r0/sedvar.patch
new file mode 100644 (file)
index 0000000..e69de29
index e69de29..8d9cb4b 100644 (file)
@@ -0,0 +1,41 @@
+PR = r0
+
+DESCRIPTION = Generic library support script\
+ This is GNU libtool, a generic library support script.  Libtool hides\
+ the complexity of generating special library types (such as shared\
+ libraries) behind a consistent interface.  To use libtool, add the\
+ new generic library building commands to your Makefile, Makefile.in,\
+ or Makefile.am.  See the documentation for details.  Libtool supports\
+ building static libraries on all platforms.\
+ Libtool supports generation of C, C++ and Java libraries.
+
+DEPENDS=
+
+SRC_URI = ${DEBIAN_MIRROR}/main/libt/${PN}/${PN}_${PV}.orig.tar.gz \
+         ${DEBIAN_MIRROR}/main/libt/${PN}/${PN}_${PV}-5.diff.gz \
+         file://${FILESDIR}/libdir.patch;patch=1 \
+         file://${FILESDIR}/sedvar.patch;patch=1
+S = "${WORKDIR}/${P}"
+
+EXTRA_OECONF = --disable-ltdl-install
+do_binary () {
+       set -e
+       ./bootstrap
+       oe_runconf
+}
+
+do_stage () {
+       install -d ${STAGING_DIR}/share/{libtool,aclocal}
+       install -m 0755 libtool ${STAGING_BINDIR}/libtool
+       install -m 0755 libtoolize ${STAGING_BINDIR}/libtoolize
+       install -c config.guess ${STAGING_DIR}/share/libtool/
+       install -c config.sub ${STAGING_DIR}/share/libtool/
+       install -c -m 0644 ltmain.sh ${STAGING_DIR}/share/libtool/
+       install -c -m 0644 libtool.m4 ${STAGING_DIR}/share/libtool/
+       install -c -m 0644 ltdl.m4 ${STAGING_DIR}/share/libtool/
+}
+
+do_install () {
+       EXTRA_OEMAKE=""
+       oe_runmake DESTDIR=${D} install
+}