Index: fe_block.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/features_extra/Attic/fe_block.install,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 fe_block.install
--- fe_block.install	1 Dec 2009 11:16:46 -0000	1.1.2.1
+++ fe_block.install	19 Mar 2010 09:13:27 -0000
@@ -16,6 +16,14 @@ function fe_block_uninstall() {
 }
 
 /**
+ * Implementation of hook_enable().
+ */
+function fe_block_enable() {
+  // Weight fe_block to come after other modules -- in particular, block module.
+  db_query("UPDATE {system} SET weight = 1 WHERE name = 'fe_block' AND type = 'module'");
+}
+
+/**
  * Implementation of hook_schema().
  */
 function fe_block_schema() {
Index: fe_nodequeue.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/features_extra/Attic/fe_nodequeue.install,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 fe_nodequeue.install
--- fe_nodequeue.install	1 Dec 2009 09:38:10 -0000	1.1.2.1
+++ fe_nodequeue.install	19 Mar 2010 09:13:27 -0000
@@ -16,6 +16,14 @@ function fe_nodequeue_uninstall() {
 }
 
 /**
+ * Implementation of hook_enable().
+ */
+function fe_nodequeue_enable() {
+  // Weight fe_nodequeue to come after other modules -- in particular, nodequeue module.
+  db_query("UPDATE {system} SET weight = 1 WHERE name = 'fe_nodequeue' AND type = 'module'");
+}
+
+/**
  * Implementation of hook_schema().
  */
 function fe_nodequeue_schema() {
Index: fe_taxonomy.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/features_extra/fe_taxonomy.install,v
retrieving revision 1.1
diff -u -p -r1.1 fe_taxonomy.install
--- fe_taxonomy.install	1 Dec 2009 09:00:18 -0000	1.1
+++ fe_taxonomy.install	19 Mar 2010 09:13:27 -0000
@@ -16,6 +16,14 @@ function fe_taxonomy_uninstall() {
 }
 
 /**
+ * Implementation of hook_enable().
+ */
+function fe_taxonomy_enable() {
+  // Weight fe_taxonomy to come after other modules -- in particular, taxonomy module.
+  db_query("UPDATE {system} SET weight = 1 WHERE name = 'fe_taxonomy' AND type = 'module'");
+}
+
+/**
  * Implementation of hook_schema().
  */
 function fe_taxonomy_schema() {
