mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
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>
This commit is contained in:
parent
740c67430a
commit
ec302b07bf
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=423993
9 changed files with 4176 additions and 0 deletions
|
@ -34,6 +34,7 @@
|
||||||
SUBDIR += intellij-fsnotifier
|
SUBDIR += intellij-fsnotifier
|
||||||
SUBDIR += intellij-pty4j
|
SUBDIR += intellij-pty4j
|
||||||
SUBDIR += intellij-pycharm
|
SUBDIR += intellij-pycharm
|
||||||
|
SUBDIR += intellij-ultimate
|
||||||
SUBDIR += jad
|
SUBDIR += jad
|
||||||
SUBDIR += jaf
|
SUBDIR += jaf
|
||||||
SUBDIR += jai
|
SUBDIR += jai
|
||||||
|
|
81
java/intellij-ultimate/Makefile
Normal file
81
java/intellij-ultimate/Makefile
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
# Created by: Andrey Cherkashin <andoriyu@gmail.com>
|
||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
# Based on the java/intellij port
|
||||||
|
|
||||||
|
PORTNAME= intellij-ultimate
|
||||||
|
PORTVERSION= 2016.2.4
|
||||||
|
CATEGORIES= java devel
|
||||||
|
MASTER_SITES= https://download.jetbrains.com/idea/ \
|
||||||
|
http://download.jetbrains.com/idea/
|
||||||
|
DISTNAME= ideaIU-${PORTVERSION}
|
||||||
|
|
||||||
|
MAINTAINER= andoriyu@gmail.com
|
||||||
|
COMMENT= IntelliJ IDEA Ultimate Edition
|
||||||
|
|
||||||
|
LICENSE= IntelliJ-Ultimate
|
||||||
|
LICENSE_NAME= Subscription license agreement for business and organizations
|
||||||
|
LICENSE_TEXT= See: https://www.jetbrains.com/store/license.html
|
||||||
|
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
||||||
|
|
||||||
|
RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \
|
||||||
|
intellij-pty4j>0:java/intellij-pty4j
|
||||||
|
|
||||||
|
USE_JAVA= yes
|
||||||
|
JAVA_VERSION= 1.8+
|
||||||
|
|
||||||
|
NO_ARCH= yes
|
||||||
|
NO_BUILD= yes
|
||||||
|
USE_LDCONFIG= ${IDEA_HOME}/plugins/tfsIntegration/lib/native/freebsd/x86_64/
|
||||||
|
USE_LDCONFIG32= ${IDEA_HOME}/plugins/tfsIntegration/lib/native/freebsd/x86/
|
||||||
|
|
||||||
|
WRKDIST= ${WRKDIR}/idea-IU-162.2032.8
|
||||||
|
|
||||||
|
.include "${.CURDIR}/../intellij/common.mk"
|
||||||
|
|
||||||
|
PLIST_SUB+= IDEA_HOME=${IDEA_HOME}
|
||||||
|
SUB_FILES+= idea idea.desktop pkg-message
|
||||||
|
SUB_LIST+= IDEA_HOME=${IDEA_HOME}
|
||||||
|
CONFLICTS= intellij-2016*
|
||||||
|
do-install:
|
||||||
|
${MKDIR} ${STAGEDIR}${IDEA_HOME}
|
||||||
|
@${TAR} -czf - -C ${WRKDIST} . | ${TAR} xzf - -C ${STAGEDIR}${IDEA_HOME}
|
||||||
|
# Linux/Windows/OS X only so remove them
|
||||||
|
@${RM} ${STAGEDIR}${IDEA_HOME}/bin/fsnotifier \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/bin/fsnotifier-arm \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/bin/fsnotifier64 \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/bin/libbreakgen.so \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/bin/libbreakgen64.so \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-linux-amd64-0.10.jar \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-linux-i386-0.10.jar \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-osx-amd64-0.10.jar \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-osx-i386-0.10.jar \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-windows-amd64-0.10.jar \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-windows-i386-0.10.jar \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/bin/libyjpagent-linux.so \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/bin/libyjpagent-linux64.so
|
||||||
|
@${RM} -r ${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/hpux/ \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/linux/ \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/macosx/ \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/solaris/ \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/win32/ \
|
||||||
|
${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/aix/
|
||||||
|
# ${STRIP_CMD} ${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/freebsd/x86/*.so
|
||||||
|
# ${STRIP_CMD} ${STAGEDIR}${IDEA_HOME}/plugins/tfsIntegration/lib/native/freebsd/x86_64/*.so
|
||||||
|
# Remove the bundled native Pty4J support libraries, they are replaced
|
||||||
|
# by java/intellij-pty4j
|
||||||
|
@${RM} -r ${STAGEDIR}${IDEA_HOME}/lib/libpty
|
||||||
|
@${RM} -r ${STAGEDIR}${IDEA_HOME}/jre/jre
|
||||||
|
@${RM} ${STAGEDIR}${IDEA_HOME}/lib/pty4j-0.7.1.jar
|
||||||
|
${INSTALL_SCRIPT} ${WRKDIR}/idea ${STAGEDIR}${PREFIX}/bin/idea
|
||||||
|
${INSTALL_MAN} ${FILESDIR}/idea.1 ${STAGEDIR}${PREFIX}/man/man1
|
||||||
|
${INSTALL_DATA} ${WRKDIR}/idea.desktop ${STAGEDIR}${PREFIX}/share/applications/
|
||||||
|
cd ${WRKDIST}/lib && ${JAVA_HOME}/bin/jar xf icons.jar
|
||||||
|
${INSTALL_DATA} ${WRKDIST}/lib/icon.png ${STAGEDIR}${IDEA_HOME}/idea.png
|
||||||
|
# TODO: Remove and enable fsnotifier when devel/libinotify is fixed
|
||||||
|
# Disable filewatcher warning message on IDEA startup
|
||||||
|
${ECHO} "idea.filewatcher.disabled=true" >> ${STAGEDIR}${IDEA_HOME}/bin/idea.properties
|
||||||
|
# Use fsnotifier replacement provided by java/intellij-fsnotifier
|
||||||
|
# ${ECHO} "idea.filewatcher.executable.path=${IDEA_HOME}/bin/fsnotifier" >> ${STAGEDIR}${IDEA_HOME}/bin/idea.properties
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
3
java/intellij-ultimate/distinfo
Normal file
3
java/intellij-ultimate/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
TIMESTAMP = 1476386721
|
||||||
|
SHA256 (ideaIU-2016.2.4.tar.gz) = f940fb9fa356e28351dd99cf2612c967d173e4413b66c0452ee8fa651b64b698
|
||||||
|
SIZE (ideaIU-2016.2.4.tar.gz) = 506828925
|
17
java/intellij-ultimate/files/idea.1
Normal file
17
java/intellij-ultimate/files/idea.1
Normal file
|
@ -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/.
|
12
java/intellij-ultimate/files/idea.desktop.in
Normal file
12
java/intellij-ultimate/files/idea.desktop.in
Normal file
|
@ -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;
|
2
java/intellij-ultimate/files/idea.in
Normal file
2
java/intellij-ultimate/files/idea.in
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
exec "%%IDEA_HOME%%/bin/idea.sh" $@
|
8
java/intellij-ultimate/files/pkg-message.in
Normal file
8
java/intellij-ultimate/files/pkg-message.in
Normal file
|
@ -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.
|
18
java/intellij-ultimate/pkg-descr
Normal file
18
java/intellij-ultimate/pkg-descr
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
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/
|
4034
java/intellij-ultimate/pkg-plist
Normal file
4034
java/intellij-ultimate/pkg-plist
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue