diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-27 21:56:32 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-27 21:56:32 +0000 |
commit | 77b7e2daf37c44b85723b373ea245bf2bba506c7 (patch) | |
tree | 53d5f6824503121c01a3cd2df1556a64d4d18367 /patcher | |
parent | dfc75d408b9ab582f05b01bb99803609fb4dddc2 (diff) |
configure.patch:
Update lisa's patch to remove a reference to a var that was defined in one of the kde macros.
modutils_2.4.25.oe:
Set sbindir to /sbin for modutils.
ncurses_5.3.oe:
Fix the ncurses build -- just disable the call of auto* for now.
glibc_2.3.2.oe:
Make glibc use the standard autotools class build vs source dir seperation.
tslib.oe:
Dont enable the multievent stuff atm, its page faulting on arm :)
BKrev: 3f9d9490WKCzak7G5KQ4Ek7afaejvw
Diffstat (limited to 'patcher')
-rw-r--r-- | patcher/patcher_1.0.oe | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/patcher/patcher_1.0.oe b/patcher/patcher_1.0.oe index e69de29bb2..f2c5724502 100644 --- a/patcher/patcher_1.0.oe +++ b/patcher/patcher_1.0.oe @@ -0,0 +1,24 @@ +SRC_URI="http://www.mn-logistik.de/unsupported/pxa250/patcher" +DESCRIPTION="Patcher tool" +LICENSE="Unknown" +DEPENDS= +SECTION="base" +PRIORITY="optional" +MAINTAINER="Chris Larson <kergoth@handhelds.org>" + +inherit base + +do_unpack() { + oenote "Nothing to unpack!" +} + +do_stage() { + install -m 0755 ${DL_DIR}/patcher ${STAGING_BINDIR}/ +} + +do_install() { + install -d ${D}/usr/bin + install -m 0755 ${DL_DIR}/patcher ${D}/usr/bin +} + +DEPENDS_prepend_delete="patcher " |