diff options
author | Chris Larson <clarson@kergoth.com> | 2003-11-02 03:56:51 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-11-02 03:56:51 +0000 |
commit | 405a6a4e79423dc59ac24bd90d07f3ef116bf044 (patch) | |
tree | 668ed8ba59e234d73fbb2ea4b773a66e4566db0e | |
parent | ae135913244383393b67448c2e52f51152991b7b (diff) |
Fix the nano builds when build with proper build ordering.
BKrev: 3fa48083q86sDqf-5hVuj1Tv9Uxl_Q
-rw-r--r-- | nano/nano-1.2.1/glib.m4 | 0 | ||||
-rw-r--r-- | nano/nano-1.3.0/glib.m4 | 0 | ||||
-rw-r--r-- | nano/nano_1.2.1.oe | 12 | ||||
-rw-r--r-- | nano/nano_1.3.0.oe | 12 |
4 files changed, 24 insertions, 0 deletions
diff --git a/nano/nano-1.2.1/glib.m4 b/nano/nano-1.2.1/glib.m4 new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/nano/nano-1.2.1/glib.m4 diff --git a/nano/nano-1.3.0/glib.m4 b/nano/nano-1.3.0/glib.m4 new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/nano/nano-1.3.0/glib.m4 diff --git a/nano/nano_1.2.1.oe b/nano/nano_1.2.1.oe index e69de29bb2..4194e508bc 100644 --- a/nano/nano_1.2.1.oe +++ b/nano/nano_1.2.1.oe @@ -0,0 +1,12 @@ +DEPENDS = virtual/libc ncurses +RDEPENDS = libc6 libncurses5 + +SRC_URI := ${GNU_MIRROR}/nano/nano-1.2.1.tar.gz \ + file://${FILESDIR}/configure.patch;patch=1 +S := ${WORKDIR}/${P} + +inherit autotools + +do_configure_prepend () { + cp ${FILESDIR}/glib.m4 m4/ +} diff --git a/nano/nano_1.3.0.oe b/nano/nano_1.3.0.oe index e69de29bb2..95e251c8d3 100644 --- a/nano/nano_1.3.0.oe +++ b/nano/nano_1.3.0.oe @@ -0,0 +1,12 @@ +DEPENDS = virtual/libc ncurses +RDEPENDS = libc6 libncurses5 + +SRC_URI := http://www.nano-editor.org/dist/v1.3/nano-${PV}.tar.gz \ + file://${FILESDIR}/configure.patch;patch=1 \ + file://${FILESDIR}/make.patch;patch=1 + +inherit autotools + +do_configure_prepend () { + cp ${FILESDIR}/glib.m4 m4/ +} |