107 Uninstall the eric files. |
107 Uninstall the eric files. |
108 """ |
108 """ |
109 global pyModDir |
109 global pyModDir |
110 |
110 |
111 # Remove the menu entry for Linux systems |
111 # Remove the menu entry for Linux systems |
112 if sys.platform.startswith("linux"): |
112 if sys.platform.startswith(("linux", "freebsd")): |
113 uninstallLinuxSpecifics() |
113 uninstallLinuxSpecifics() |
114 # Remove the Desktop and Start Menu entries for Windows systems |
114 # Remove the Desktop and Start Menu entries for Windows systems |
115 elif sys.platform.startswith(("win", "cygwin")): |
115 elif sys.platform.startswith(("win", "cygwin")): |
116 uninstallWindowsLinks() |
116 uninstallWindowsLinks() |
117 |
117 |