summaryrefslogtreecommitdiff
path: root/mysql
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-09-29 19:52:47 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-09-29 19:52:47 +0000
commitcb6bf045e9f7d5b0e6620d355505b521b467688a (patch)
tree9357c4f71b4e2dba0df83aed6d5106223010ec28 /mysql
parente7accf1d04937aafeda19cf5575398465a7ccd5c (diff)
fix mysql-native
BKrev: 415b128fZr6bWQXnAvYHVjRSrNsFLQ
Diffstat (limited to 'mysql')
-rw-r--r--mysql/mysql-native_4.1.4a.oe6
-rw-r--r--mysql/mysql_4.1.4a.oe26
2 files changed, 20 insertions, 12 deletions
diff --git a/mysql/mysql-native_4.1.4a.oe b/mysql/mysql-native_4.1.4a.oe
index b26d4c5313..ee1af05021 100644
--- a/mysql/mysql-native_4.1.4a.oe
+++ b/mysql/mysql-native_4.1.4a.oe
@@ -6,6 +6,10 @@ PACKAGES = ""
DEPENDS = "ncurses-native"
EXTRA_OEMAKE = ""
-do_stage () {
+do_stage() {
install -m 0755 sql/gen_lex_hash ${STAGING_BINDIR}/
}
+
+do_install() {
+ :
+}
diff --git a/mysql/mysql_4.1.4a.oe b/mysql/mysql_4.1.4a.oe
index a71707b6a0..cf671cd79b 100644
--- a/mysql/mysql_4.1.4a.oe
+++ b/mysql/mysql_4.1.4a.oe
@@ -1,17 +1,13 @@
+DESCRIPTION = "The MySQL Open Source Database System"
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+SECTION = "libs"
+DEPENDS += "ncurses mysql-native"
PR = "r1"
-MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
SRC_URI = "http://mirrors.develooper.com/mysql/Downloads/MySQL-4.1/mysql-${PV}-gamma.tar.gz \
- file://autofoo.patch;patch=1 \
- file://gen_lex_hash.patch;patch=1"
+ file://autofoo.patch;patch=1 \
+ file://gen_lex_hash.patch;patch=1"
S = "${WORKDIR}/mysql-${PV}-gamma"
-DEPENDS += "ncurses mysql-native"
-
-PACKAGES =+ "libmysqlclient libmysqlclient-dev"
-
-FILES_libmysqlclient = "${libdir}/libmysqlclient*.so.*"
-FILES_libmysqlclient-dev = "${incdir}/mysql ${libdir}/lib* \
- ${bindir}/mysql_config"
inherit autotools
@@ -22,7 +18,15 @@ do_stage() {
oe_libinstall -a -so -C libmysql libmysqlclient ${STAGING_LIBDIR}
}
-do_install_append() {
+do_install() {
+ oe_runmake install
mv -f ${D}${libdir}/mysql/* ${D}${libdir}
rmdir ${D}${libdir}/mysql
}
+
+PACKAGES =+ "libmysqlclient libmysqlclient-dev"
+
+FILES_libmysqlclient = "${libdir}/libmysqlclient*.so.*"
+FILES_libmysqlclient-dev = "${incdir}/mysql ${libdir}/lib* \
+ ${bindir}/mysql_config"
+