summaryrefslogtreecommitdiff
path: root/java/intellij-ultimate/files
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-10-14 21:07:02 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-10-14 21:07:02 +0000
commitec302b07bf0fa5ef34220b1f6d310e55f992fa22 (patch)
tree37d559d5f5269b93634b45a9dce28c04d1ce644f /java/intellij-ultimate/files
parentUpdate to 1.0.14 (diff)
New port: java/intellij-ultimate
IntelliJ IDEA is an advanced IDE developed by JetBrains and focused on developer productivity. The community edition features: * An intelligent code editor that understands Java code; provides refactorings, code inspections and intentions, and allows for fast code navigation. * Integration with such tools as JUnit and TestNG, Ant and Maven, and popular version control systems including: CVS, Subversion and git. * XML-Java interoperability and comprehensive Groovy programming language support. * The Swing UI designer complements the suite of tools for developing Java desktop applications. The difference between intellij and intellij-ultimate can be found at http://www.jetbrains.com/idea/features/editions_comparison_matrix.html WWW: http://www.jetbrains.com/idea/ PR: 212268 Submitted by: Andrey Cherkashin <andoriyu@gmail.com>
Notes
Notes: svn path=/head/; revision=423993
Diffstat (limited to 'java/intellij-ultimate/files')
-rw-r--r--java/intellij-ultimate/files/idea.117
-rw-r--r--java/intellij-ultimate/files/idea.desktop.in12
-rw-r--r--java/intellij-ultimate/files/idea.in2
-rw-r--r--java/intellij-ultimate/files/pkg-message.in8
4 files changed, 39 insertions, 0 deletions
diff --git a/java/intellij-ultimate/files/idea.1 b/java/intellij-ultimate/files/idea.1
new file mode 100644
index 000000000000..b4386407071b
--- /dev/null
+++ b/java/intellij-ultimate/files/idea.1
@@ -0,0 +1,17 @@
+.\" $OpenBSD: mdoc.template,v 1.10 2007/05/31 22:10:19 jmc Exp $
+.Dd $Mdocdate: April 9 2010 $
+.Dt IDEA 1
+.Os
+.Sh NAME
+.Nm idea
+.Nd launch IntelliJ IDEA Java Integrated Development Environment
+.Sh SYNOPSIS
+.Nm
+.Op jvm-args
+.Sh DESCRIPTION
+.Nm
+starts up the IntelliJ IDEA Community Edition Java Integrated
+Development Environment.
+.Sh SEE ALSO
+The web site
+http://www.jetbrains.com/idea/.
diff --git a/java/intellij-ultimate/files/idea.desktop.in b/java/intellij-ultimate/files/idea.desktop.in
new file mode 100644
index 000000000000..1d16e2d2cc81
--- /dev/null
+++ b/java/intellij-ultimate/files/idea.desktop.in
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Version=1.0
+Encoding=UTF-8
+Type=Application
+Name=IntelliJ IDEA Ultimate Edition
+GenericName=IntelliJ IDEA Ultimate Edition
+Comment=IntelliJ Integrated Development Environment
+Icon=%%IDEA_HOME%%/idea.png
+Exec=%%IDEA_HOME%%/bin/idea.sh
+Terminal=false
+StartupNotify=true
+Categories=Application;Development;
diff --git a/java/intellij-ultimate/files/idea.in b/java/intellij-ultimate/files/idea.in
new file mode 100644
index 000000000000..b4ba5da0e1a1
--- /dev/null
+++ b/java/intellij-ultimate/files/idea.in
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec "%%IDEA_HOME%%/bin/idea.sh" $@
diff --git a/java/intellij-ultimate/files/pkg-message.in b/java/intellij-ultimate/files/pkg-message.in
new file mode 100644
index 000000000000..79346fb43909
--- /dev/null
+++ b/java/intellij-ultimate/files/pkg-message.in
@@ -0,0 +1,8 @@
+There is experimental native (faster) file watching support which is
+disabled by default. Currently there are problems with watching large
+trees. To enable edit %%IDEA_HOME%%/bin/idea.properties and append
+
+ idea.filewatcher.disabled=false
+ idea.filewatcher.executable.path=%%IDEA_HOME%%/bin/fsnotifier
+
+Only enable fsnotifier if your projects have < 600 files.