diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /adns | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'adns')
-rw-r--r-- | adns/adns_1.0.oe | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/adns/adns_1.0.oe b/adns/adns_1.0.oe index e69de29bb2..0c84d0f268 100644 --- a/adns/adns_1.0.oe +++ b/adns/adns_1.0.oe @@ -0,0 +1,30 @@ +DEPENDS = "virtual/libc" +RDEPENDS = "libc6" + +SRC_URI = "ftp://ftp.gnu.org/gnu/adns/adns-${PV}.tar.gz \ + file://${FILESDIR}/configure.patch;patch=1" + +inherit autotools + +acpaths= +do_configure_prepend () { + if ! test -e acinclude.m4; then + cp aclocal.m4 acinclude.m4 + fi +} + +do_stage () { + install -m 0644 ${S}/src/adns.h ${STAGING_INCDIR}/ + install -m 0644 ${S}/src/libadns.a ${STAGING_LIBDIR}/ + install -m 0755 ${S}/dynamic/libadns.so.1.0 ${STAGING_LIBDIR}/ + ln -sf libadns.so.1.0 ${STAGING_LIBDIR}/libadns.so.1 + ln -sf libadns.so.1.0 ${STAGING_LIBDIR}/libadns.so +} + +do_install () { + install -d ${D}${prefix} ${D}${exec_prefix} \ + ${D}${bindir} ${D}${libdir} ${D}${includedir} + oe_runmake 'prefix=${D}${prefix}' 'exec_prefix=${D}${exec_prefix}' \ + 'bin_dir=${D}${bindir}' 'lib_dir=${D}${libdir}' \ + 'include_dir=${D}${includedir}' install +} |