Index: blueprint.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/blueprint/Attic/blueprint.info,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 blueprint.info
--- blueprint.info	1 Dec 2009 17:35:10 -0000	1.1.2.7
+++ blueprint.info	12 May 2010 17:44:38 -0000
@@ -4,8 +4,7 @@
 
 core = 6.x
 engine = phptemplate
-stylesheets[screen,projection][] = blueprint/blueprint/screen.css
-stylesheets[print][] = blueprint/blueprint/print.css
+dependencies[] = libraries
 stylesheets[screen,projection][] = css/blueprint.css
 stylesheets[screen,projection][] = css/style.css
 
Index: template.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/blueprint/template.php,v
retrieving revision 1.15.2.1.2.23
diff -u -r1.15.2.1.2.23 template.php
--- template.php	22 Mar 2010 14:31:28 -0000	1.15.2.1.2.23
+++ template.php	12 May 2010 18:43:37 -0000
@@ -14,6 +14,19 @@
  * @param $vars
  *   A sequential array of variables passed to the theme function.
  */
+function blueprint_preprocess(&$variables, $hook) {
+  $blueprint_path = module_invoke('libraries', 'get_path', 'blueprint');
+  drupal_add_css($blueprint_path.'/blueprint/screen.css', 'theme', 'screen,projection');
+  drupal_add_css($blueprint_path.'/blueprint/print.css', 'theme', 'print');
+}
+
+
+/**
+ * Intercept page template variables
+ *
+ * @param $vars
+ *   A sequential array of variables passed to the theme function.
+ */
 function blueprint_preprocess_page(&$vars) {
   global $user;
   $vars['path'] = base_path() . path_to_theme() .'/';

