If you are still working on this....
First some explanation :
When you load a database from dump, sybase initialises the device fragments for usage by the database in the same sequence as the original. So, if you had 1000 data + 200 log + 250 data + 200 log + 100 log, in the original database, that's what sybase will do for the target db.
At best, u can merge multiple fragments into one so u could have
1000 data + 200 log + 250 data + 300 log
Now a suggestion :
You could use sp_logdevice to move the log to a different device & then follow it up with a sp_dropsegment to stop utilising a device for log. Note the new device is used for the log on for future use. So, you can't drop the logsement immediately. You need to wait until it start utilizing the new log device & then you do a dump tran to clear the log.
I would suggest you try this on a test database if you haven't done this before. Once you are comfortable with the steps, do it on your live database.