Hi MMG135,
I have used 1-wire, SPI and IIC, and I would avoid 1-wire for a serial EEProm. For temp-sensors and other things that go off-board, 1-wire is great. Look to Midon Designs for 1-wire devices and info.
The big advantage of 1-wire is that it takes . . . 1-wire. Outside of that, there is not much advantage. The Freescale MCUs have no direct hardware support for 1-wire, so you would need to bit-bang it. It will be slow and processor intensive. Whether or not it is easier to code depends on how much code you can scrape from other sources. I found SPI to be the easiest to code.
For a serial EEProm, I would look at either SPI or IIC (also called I2C), as the GT60 has hardware support for both. But I found the IIC interface on the GT60 to be poorly documented and "temperamental".
What size EEProm are you considering? I have used IIC EEproms as small as 1k-bit, and SPI EEProms as large as 32 megabit. As the size increases, the selection starts to favor SPI, as SPI can transfer faster than IIC.