<?php

function configure_boxes($post_type) {
	if ( $post_type != 'thingy' )
		return;

	remove_meta_box('trackbacksdiv', $post_type, 'normal');
}

add_action('add_meta_boxes', 'configure_boxes');

