Here's how I use it locally:
When I am already running Apple's X11 in rootless mode, I can issue
xinit ~/.xenlightenment -- /usr/X11R6/bin/Xnest :99 -geometry 1200x800 2>| /dev/null &
where the file contains:
#!/bin/sh
# Execute enlightenment. ALWAYS make sure this is at the end of this
# startup file - and ALWAYS run things before it with an & at the end.
# For example:
# xterm &
# kpanel &
# It is suggested to use Enlightenment's Remember dialog for having apps
# spawned automatically on login.
source /sw/bin/init.sh &
/sw/bin/rxvt -bg black -fg white -cr grey -ls -geometry 80X25 -colorBD yellow -troughColor grey -font 9x15 -sr -scrollColor RoyalBlue3 -internalBorder 5 &
/sw/bin/rxvt -bg black -fg white -cr grey -ls -geometry 80X25 -colorBD yellow -troughColor grey -font 9x15 -sr -scrollColor RoyalBlue3 -internalBorder 5 &
exec /sw/bin/enlightenment
The last line of this is what is important -- and starts the window manager.
So my guess is that you can substitute in what you do for the remote linux display, but I haven't tried it yet.