summaryrefslogtreecommitdiff
path: root/twin
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-07-27 22:31:09 +0000
committerPhil Blundell <philb@gnu.org>2004-07-27 22:31:09 +0000
commit6afadfd8894b17863427fde0826b93a7a7845708 (patch)
tree8c5832fa3d825eaf48ab415ca814957c7f5d042d /twin
parentd73f924c8cd71e5ab38467d5ed7abece37fef5fe (diff)
Merge bk://openembedded@openembedded.bkbits.net/packages
into workhouse.nexus.co.uk:/home/pb/oe/oe-packages 2004/07/28 00:25:57+02:00 uni-frankfurt.de!mickey Merge bk://openembedded@openembedded.bkbits.net/packages into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages 2004/07/28 00:25:48+02:00 uni-frankfurt.de!mickey install more twin-headers into staging and fix twutils build 2004/07/27 23:36:33+02:00 uni-frankfurt.de!mickey Merge bk://openembedded@openembedded.bkbits.net/packages into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages 2004/07/27 19:14:19+02:00 uni-frankfurt.de!mickey Merge bk://openembedded@openembedded.bkbits.net/packages into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages 2004/07/27 14:39:09+02:00 uni-frankfurt.de!mickey Merge bk://openembedded@openembedded.bkbits.net/packages into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages 2004/07/27 01:26:16+02:00 uni-frankfurt.de!mickey move fbi into nonworking until we find out how to disable curl and lirc dependencies with this odd buildsystem 2004/07/27 00:37:50+02:00 uni-frankfurt.de!mickey add description to x86-uml and start with a native machine .conf BKrev: 4106d7adAlvZr-woyMJcsbfTAE_yoA
Diffstat (limited to 'twin')
-rw-r--r--twin/twin_0.4.6.oe14
-rw-r--r--twin/twutils_0.2.oe11
2 files changed, 11 insertions, 14 deletions
diff --git a/twin/twin_0.4.6.oe b/twin/twin_0.4.6.oe
index 4ca0f80acc..9d661811a0 100644
--- a/twin/twin_0.4.6.oe
+++ b/twin/twin_0.4.6.oe
@@ -13,18 +13,8 @@ do_compile () {
oe_runmake 'HOSTCC=${BUILD_CC}'
}
-Tw_headers = "Tw1.h Twautoconf.h Twavl.h Tw_defs.h Twerrno.h Tw.h Tw++.h Twkeys.h Twstat_defs.h Twstat.h Twtypes.h"
-
-
do_stage () {
-# oe_libinstall -so -C libs/libTw libTw ${STAGING_LIBDIR}
-
- install -m 0644 ${S}/libs/libTw/libTw.la ${STAGING_LIBDIR}
- install -m 0644 ${S}/libs/libTw/libTw.so ${STAGING_LIBDIR}
- install -m 0644 ${S}/libs/libTw/libTw.so.3 ${STAGING_LIBDIR}
- install -m 0644 ${S}/libs/libTw/libTw.so.3.0.9 ${STAGING_LIBDIR}
+ oe_soinstall libs/libTw/libTw.so.3.0.9 ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/Tw
- for i in ${Tw_headers}; do
- install -m 0644 ${S}/include/Tw/$i ${STAGING_INCDIR}/Tw
- done
+ install -m 0644 include/Tw/*.h ${STAGING_INCDIR}/Tw/
}
diff --git a/twin/twutils_0.2.oe b/twin/twutils_0.2.oe
index d9a7b25475..45c2cffa72 100644
--- a/twin/twutils_0.2.oe
+++ b/twin/twutils_0.2.oe
@@ -4,7 +4,14 @@ DEPENDS = "twin"
SRC_URI = "http://linuz.sns.it/~max/twin/twutils-0.2.tar.gz"
-#EXTRA_OECONF = ""
-
inherit autotools
+CXXFLAGS_append = " -DHAVE_FUNC_ISINF"
+LDFLAGS_append = " -L${STAGING_LIBDIR}"
+
+do_compile() {
+ for i in admin twkalc
+ do
+ cd ${S}/$i && oe_runmake LDFLAGS="${LDFLAGS}"
+ done
+}