New commits:
commit 667e589771913afb256a68314553200e55d25e4f
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>
disk/grub:
PRE_BUILD, configure.ac.patch: added a patch to get rid of
automake-1.9, works with automake now
DEPENDS: switched to automake, no need in gcc34, builds fine with
gcc 4.1.1
DETAILS: removed GCC_VERSION, UPDATED, added PATCHLEVEL
BUILD: using automake now, install_rootifying, removed invoke_gcc
INSTALL: install and track_rootifying
commit 281496dccdc6924c77b2598313535d2680d4d328
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>
diff --git a/database/mysql/BUILD b/database/mysql/BUILD
index c86789c..bfe76e4 100755
--- a/database/mysql/BUILD
+++ b/database/mysql/BUILD
@@ -1,20 +1,30 @@
if list_find "$MSQL_ENGINES" "ARCHIVE" ; then
OPTS="--with-archive-storage-engine $OPTS"
+else
+ OPTS="--without-archive-storage-engine $OPTS"
fi &&
if ! list_find "$MSQL_ENGINES" "BerkeleyDB" ; then
OPTS="--without-berkeley-db $OPTS"
fi &&
if list_find "$MSQL_ENGINES" "BLACKHOLE" ; then
OPTS="--with-blackhole-storage-engine $OPTS"
+else
+ OPTS="--without-blackhole-storage-engine $OPTS"
fi &&
if list_find "$MSQL_ENGINES" "CSV" ; then
OPTS="--with-csv-storage-engine $OPTS"
+else
+ OPTS="--without-csv-storage-engine $OPTS"
fi &&
if list_find "$MSQL_ENGINES" "EXAMPLE" ; then
OPTS="--with-example-storage-engine $OPTS"
+else
+ OPTS="--without-example-storage-engine $OPTS"
fi &&
if list_find "$MSQL_ENGINES" "FEDERATED" ; then
OPTS="--with-federated-storage-engine $OPTS"
+else
+ OPTS="--without-federated-storage-engine $OPTS"
fi &&
if list_find "$MSQL_ENGINES" "InnoDB" ; then
OPTS="--with-innodb $OPTS"
@@ -23,6 +33,8 @@ else
fi &&
if list_find "$MSQL_ENGINES" "ndbcluster" ; then
OPTS="--with-ndbcluster $OPTS"
+else
+ OPTS="--without-ndbcluster $OPTS"
fi &&
SOURCE_HASH=sha512:c2bc9ffc8583aeae71cee9ddcc4418969768d4e3764d47307da54f93981c0109fb07d84b061b3a3628bd00ba4d14a54742bc04848110eb3ae8ca25dbfbaabadb
WEB_SITE=http://www.gnu.org/software/grub/
ENTERED=20020403
- UPDATED=20050513
- GCC_VERSION=3.4
+ PATCHLEVEL=1
LICENSE[0]=GPL
VOYEUR="on"
SHORT="GNU GRUB bootloader"
diff --git a/disk/grub/HISTORY b/disk/grub/HISTORY
index 47c5754..61d1cf1 100644
--- a/disk/grub/HISTORY
+++ b/disk/grub/HISTORY
@@ -1,3 +1,12 @@
+2006-12-20 Pol Vinogradov <vin.public AT gmail.com>
+ * PRE_BUILD, configure.ac.patch: added a patch to get rid of
+ automake-1.9, works with automake now
+ * DEPENDS: switched to automake, no need in gcc34, builds fine with
+ gcc 4.1.1
+ * DETAILS: removed GCC_VERSION, UPDATED, added PATCHLEVEL
+ * BUILD: using automake now, install_rootifying, removed invoke_gcc
+ * INSTALL: install and track_rootifying
+
2006-11-05 Thomas Orgis <sobukus AT sourcemage.org>
* DEPENDS, BUILD: using automake-1.9
diff --git a/disk/grub/INSTALL b/disk/grub/INSTALL
index 281337d..e49a39c 100755
--- a/disk/grub/INSTALL
+++ b/disk/grub/INSTALL
@@ -1,12 +1,12 @@
-if [ ! -e /boot/grub ]; then
- mkdir /boot/grub
+if [ ! -e ${TRACK_ROOT}/boot/grub ]; then
+ mkdir -p ${INSTALL_ROOT}/boot/grub
fi &&