First at all replace all <USER> with your username.
Replace all <PATH> with the path to the directory you've just unpacked.
Go to this directory: /home/<USER>/.local/share/applications/
Inside this directory create a new file "eclipse.desktop"
Open it with a text editor of your choice and paste this into it:
Code:
[Desktop Entry]
Version=1.0
Type=Application
Name=Eclipse
Comment=A Java Development Environment
Icon=eclipse
Terminal=false
StartupNotify=true
Exec=<PATH>/eclipse
Path=<PATH>
Icon=<PATH>/icon.xpm
Notice the last three lines:
Exec = is the path to the eclipse executable inside the directory you've just unpacked. E.G: /home/<USER>/eclipse/eclipse
Path = is just the path to this directory E.G: /home/<USER>/eclipse
Icon = is the path to the icon.xpm which can be found inside this directory E.G: /home/<USER>/eclipse/icon.xpm
Save the file, open the terminal and type "cd /home/<USER>/.local/share/applications/" then type "sudo chmod +x eclipse.desktop"
After this you should log off and log in again so that your "menu" can reload itself.