Yes, look in your PBP manual and read about defining the LCD.
Here is an example (for a different PIC)
Code:
    DEFINE LCD_DREG     PORTG 
    DEFINE LCD_DBIT     0
    DEFINE LCD_RSREG    PORTE 
    DEFINE LCD_RSBIT    0
    DEFINE LCD_EREG     PORTE 
    DEFINE LCD_EBIT     1
    DEFINE LCD_BITS     4 
    DEFINE LCD_LINES    4
    DEFINE LCD_COMMANDUS    3000 
    DEFINE LCD_DATAUS   150
DREG has to be all on the same port, either upper or lower. DT has a LCD ANY PIN trick someplace if if you are adventurous