new post-type how do i retain the plugins on my sidebar?

The plugin would need to support custom post types. You might be able to ask the plugin developer to add that. The custom post type API’s are fairly new and still don’t have widespread support.

You can see that they are adding the meta boxes only for posts and pages:

add_meta_box( 'WPPostsRateKeys-Keyword', 'SEOPressor Keyword', array(&$this,'add_box_in_post_form'), 'post', 'normal', 'high' );     
add_meta_box( 'WPPostsRateKeys-Keyword', 'SEOPressor Keyword', array(&$this,'add_box_in_post_form'), 'page', 'normal', 'high' );
add_meta_box( 'seo_pressor_post_suggestions', 'SEOPressor Score', array(&$this, 'show_score_box'), 'page', 'side', 'high' );             
add_meta_box( 'seo_pressor_post_suggestions', 'SEOPressor Score', array(&$this, 'show_score_box'), 'post', 'side', 'high' );  

But without knowing how much they rely on the different post types it’s hard to say how easy it would be to add those meta boxes to custom post types.