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 /autofs | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'autofs')
-rw-r--r-- | autofs/autofs_3.1.7.oe | 18 | ||||
-rw-r--r-- | autofs/autofs_4.0.0.oe | 16 |
2 files changed, 34 insertions, 0 deletions
diff --git a/autofs/autofs_3.1.7.oe b/autofs/autofs_3.1.7.oe index e69de29bb2..71e1df204e 100644 --- a/autofs/autofs_3.1.7.oe +++ b/autofs/autofs_3.1.7.oe @@ -0,0 +1,18 @@ +DEPENDS = "virtual/libc" +RDEPENDS = "libc6" + +SRC_URI = "ftp://ftp.kernel.org/pub/linux/daemons/autofs/v3/autofs-${PV}.tar.bz2" + +inherit autotools + +do_configure_prepend () { + if [ ! -e acinclude.m4 ]; then + cp aclocal.m4 acinclude.m4 + fi +} + +do_install () { + install -d ${D}/${mandir}/man5 ${D}/${mandir}/man8 \ + ${D}/${sbindir} + oe_runmake 'INSTALLROOT=${D}' install +} diff --git a/autofs/autofs_4.0.0.oe b/autofs/autofs_4.0.0.oe index e69de29bb2..555d9ec9f6 100644 --- a/autofs/autofs_4.0.0.oe +++ b/autofs/autofs_4.0.0.oe @@ -0,0 +1,16 @@ +DEPENDS = "virtual/libc" +RDEPENDS = "libc6" + +SRC_URI = "ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/autofs-${PV}-1.tar.bz2" + +inherit autotools + +do_configure_prepend () { + if [ ! -e acinclude.m4 ]; then + cp aclocal.m4 acinclude.m4 + fi +} + +do_install () { + oe_runmake 'INSTALLROOT=${D}' install +} |