summaryrefslogtreecommitdiff
path: root/java/netbeans (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Mk/**java.mk: Convert bsd.java.mk to USESMuhammad Moinur Rahman2024-12-311-4/+2
| | | | | | | | | | | | | | | | | | | The following features have been added or changed: - Instead of USE_JAVA use USES=java. This defaults to USES=java:build,run if NO_BUILD is undefined. Else it defaults to USES=java:run - Instead of USE_ANT=yes use USES=java:ant which also implies USES=java:build - Instead of JAVA_BUILD=yes use USES=java:build. Does not imply run or extract - Instead of JAVA_EXTRACT=yes use USES=java:extract does not imply build or run - Instead of JAVA_RUN=yes use USES=java:run does not imply extract or build - Instead of USE_JAVA=<version> use USES=java and JAVA_VERSION=<version> Approved by: mat (portmgr), glewis Differential Revision: https://reviews.freebsd.org/D48201
* java/netbeans: Update to 17.Koop Mast2023-04-233-30/+42
| | | | Changelog: https://github.com/apache/netbeans/releases/tag/17
* java/netbeans: update to 16.Koop Mast2022-12-293-174/+216
| | | | | | | | | | | | Update JAVA field to jdk 11 and 17, which are the offical supported jdk's. Changes 16: https://github.com/apache/netbeans/releases/tag/16 Changes 15: https://github.com/apache/netbeans/releases/tag/15 Changes 14: https://github.com/apache/netbeans/releases/tag/14 Changes 13: https://github.com/apache/netbeans/releases/tag/13 PR: 268268 Reported by: i@vboldin.ru
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* java: remove 'Created by' linesTobias C. Berner2022-07-201-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A big Thank You to the original contributors of these ports: * Alex Dupre <ale@FreeBSD.org> * Alex Semenyaka <alex@rinet.ru> * Alexander Yerenkow <yerenkow@gmail.com> * Anton Yudin (<contact@toha.org.ua>) * Anton Yudin <toha@toha.org.ua> * Benjamin Close <benjsc@FreeBSD.org> * Björn König <bkoenig@alpha-tierchen.de> * Conor McDermottroe <ports@mcdermottroe.com> * Danilo Egea Gondolfo <danilo@FreeBSD.org * Dave Glowacki <dglo@ssec.wisc.edu> * Ernst de Haan <znerd@FreeBSD.org> * Eugene Grosbein <ports@grosbein.net> * Filippo Natali <filippo@widestore.net> * Gerrit Beine <gerrit.beine@gmx.de> * Greg Lewis <glewis@FreeBSD.org> * Herve Quiroz <herve.quiroz@esil.univ-mrs.fr> * Jason Helfman <jgh@FreeBSD.org> * Jeremy <karlj000@unbc.ca> * Johannes Dieterich <dieterich@ogolem.org> * Johannes Dieterich <jmd@FreeBSD.org> * Jonathan Chen <jonc@chen.org.nz> * Jose Marques * Jose Marques <noway@nohow.demon.co.uk> * Lapo Luchini <lapo@lapo.it> * Lev Serebryakov <lev@FreeBSD.org> * Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> * Matthew Dillon <dillon@backplane.com> * Maxim Sobolev <sobomax@FreeBSD.org> * Mikhail T. <mi@aldan.algebra.com> * Mikhail T. <michael@fun-box.ru> * Mikhail Teterin * Nicola Vitale <nivit@FreeBSD.org> * Nicola Vitale <nivit@email.it> * OISHI Masakuni <yamasa@bsdhouse.org> * OKAZAKI Tetsurou * Pedro Giffuni * Simeo Reig <reig.simeo@gmail.com> * Sutra Zhou <zhoushuqun@gmail.com> * Tom Judge <tj@FreeBSD.org> * Volker Stolz <vs@FreeBSD.org> * Wen Heping <wenheping@gmail.com> * Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw> * gldisater@gldis.ca * ijliao * jake@checker.org * jpbeconne * lon_kamikaze@gmx.de * mi * nordwick@xcf.berkeley.edu * nork@FreeBSD.org * olgeni@FreeBSD.org * rasputin * rfarmer@predatorlabs.net * rtdean@cytherianage.net * tux@pinguru.net With hat: portmgr
* java/netbeans: Update to 12.6Koop Mast2021-12-303-131/+323
| | | | | | | | | | | For the replacing of the python command, use the default python 3 version instead of hardcoding python 2.7. Drop the netbeans version from the .desktop file. Don't use absolute path for the symlink and add a non-versioned. This also makes netbeans fetchable again, all distfiles prior to 12.6 where removed upsteam [1]. PR: ports/260414 [1] Reported by: Marko Cupać <marko.cupac@mimar.rs> [1]
* java/netbeans: Add CPE informationBernhard Froehlich2021-10-081-1/+3
| | | | Approved by: portmgr (blanket)
* java/netbeans: update to 12.3.Koop Mast2021-04-084-283/+296
| | | | | | | Set execute bit on maven binary so netbeans can run it. [1] PR: 248192 [1] Submitted by: akruijff@dds.nl
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update netbeans to 11.3.Koop Mast2020-03-053-98/+600
| | | | | | | Changelog: https://netbeans.apache.org/download/nb113/index.html Notes: svn path=/head/; revision=527823
* Update netbeans to 11.1.Koop Mast2019-08-073-16/+66
| | | | | | | Full Changelog: http://netbeans.apache.org/download/nb111/index.html Notes: svn path=/head/; revision=508316
* Update netbeans to 11.0.Koop Mast2019-05-144-22/+533
| | | | Notes: svn path=/head/; revision=501652
* Update netbeans to 10.0.Koop Mast2018-12-315-5286/+310
| | | | | | | | | | | | | This is the second release of Apache Netbeans (incubating). The first release (9.0) was skipped because it only included java support. This version should support most if not all of the project types the older netbeans 8.2 did. PR: 230420 Notes: svn path=/head/; revision=488794
* Update netbeans to 8.2.Koop Mast2018-01-163-152/+390
| | | | | | | | | | Limit java version to 1.8, netbeans does not run with another version. PR: 218111, 224554 Submitted by: Hadi <rezaee.hadi@gmail.com> Notes: svn path=/head/; revision=459157
* When there is a do-install target, do not use a post-install target, doMathieu Arnold2016-07-191-1/+0
| | | | | | | | | | | | | | | everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=418767
* Fixup some whitespace at the beginning of lines problems.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412342
* Update netbeans to 8.1.Koop Mast2015-12-123-83/+677
| | | | | | | | PR: 204359 Submitted by: sergey.v.brunov@gmail.com Notes: svn path=/head/; revision=403621
* - Fix shebangsDmitry Marakasov2015-07-281-1/+6
| | | | | | | | Approved by: portmgr blanket MFH: 2015Q3 (blanket) Notes: svn path=/head/; revision=393122
* Update netbeans to 8.0.2.Koop Mast2015-04-022-4/+4
| | | | | | | | PR: 197931 Submitted by: hardy.schumacher@gmx.de Notes: svn path=/head/; revision=383043
* Take maintainer.Koop Mast2014-12-121-2/+1
| | | | | | | Remove something random in the MASTER_SITE section of netbeans. Notes: svn path=/head/; revision=374602
* - Reset maintainership of my portsPietro Cerutti2014-12-101-1/+1
| | | | Notes: svn path=/head/; revision=374492
* - Update to 8.0.1Pietro Cerutti2014-09-263-532/+111
| | | | | | | | * Release notes: https://netbeans.org/community/releases/80/ * New and noteworthy: http://wiki.netbeans.org/NewAndNoteworthyNB801 Notes: svn path=/head/; revision=369324
* - Update netbeans to version 8.0Pietro Cerutti2014-04-115-419/+340
| | | | | | | | | Release notes: https://netbeans.org/community/releases/80/relnotes.html New and noteworthy: http://wiki.netbeans.org/NewAndNoteworthyNB80 - IGNORE netbeans-devel Notes: svn path=/head/; revision=350897
* Convert j* to USES=zipBaptiste Daroussin2014-03-101-1/+1
| | | | Notes: svn path=/head/; revision=347771
* - Add LICENSEPietro Cerutti2014-01-081-1/+4
| | | | | | | | PR: 185423 Submitted by: Hardy Schumacher <hardy.schumacher@gmx.de> Notes: svn path=/head/; revision=339083
* - Update to 7.4Pietro Cerutti2013-10-305-924/+662
| | | | | | | | | Release notes: https://netbeans.org/community/releases/74/relnotes.html Submitted by: Federico Bernoldi <federico@bernoldi.com.ar> Notes: svn path=/head/; revision=332088
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | java) Notes: svn path=/head/; revision=327738
* - Update to 7.3Pietro Cerutti2013-02-264-7216/+7831
| | | | | | | Release notes: http://netbeans.org/community/releases/73/relnotes.html Notes: svn path=/head/; revision=312972
* Bump PORTREVISION after DESKTOP_ENTRIES updateMax Brazhnikov2013-01-231-0/+1
| | | | Notes: svn path=/head/; revision=310871
* - Update to 7.2.1Pietro Cerutti2012-10-223-521/+517
| | | | | | | | | Release notes: http://netbeans.org/community/releases/72/relnotes.html Feature safe: yes Notes: svn path=/head/; revision=306260
* - Update to 7.2Pietro Cerutti2012-08-293-828/+903
| | | | | | | | | | Release notes: http://netbeans.org/community/releases/72/ PR: 171144 Submitted by: Douglas Carmichael <dcarmich@dcarmichael.net> Notes: svn path=/head/; revision=303325
* - Update to 7.1.2Pietro Cerutti2012-06-113-6/+6
| | | | | | | Release notes: http://netbeans.org/community/releases/71/relnotes.html Notes: svn path=/head/; revision=299039
* - Add desktop entryPietro Cerutti2012-04-121-0/+7
| | | | | | | | PR: 166785 Submitted by: Hardy Schumacher <hardy.schumacher@gmx.de> Notes: svn path=/head/; revision=294717
* - Update to 7.1.1Pietro Cerutti2012-03-123-30/+28
| | | | | | | | | Release notes: http://netbeans.org/community/releases/71/relnotes.html Feature safe: yes Notes: svn path=/head/; revision=293164
* - Update to 7.1Pietro Cerutti2012-02-173-594/+488
| | | | | | | Release notes: http://netbeans.org/community/news/show/1549.html Notes: svn path=/head/; revision=291556
* - Update to 7.0.1Pietro Cerutti2011-10-273-18/+31
| | | | | | | Release notes: http://netbeans.org/community/releases/70/relnotes.html Notes: svn path=/head/; revision=284423
* - fix typo that caused failure to installPietro Cerutti2011-08-031-2/+2
| | | | | | | | | | - bump portrevision PR: 159407 Submitted by: Andrei Lavreniyuk <andy.lavr@gmail.com> Notes: svn path=/head/; revision=278850
* - make maven binary executablePietro Cerutti2011-08-021-0/+4
| | | | Notes: svn path=/head/; revision=278798
* - Update to 7.0Pietro Cerutti2011-05-254-5598/+1538
| | | | | | | Release information: http://netbeans.org/community/releases/70/ Notes: svn path=/head/; revision=274614
* - Fix PLIST by making sure that all patched files backups are removed beforePietro Cerutti2011-04-141-2/+2
| | | | | | | | | COPYTREE_SHARE'ing into target directory Reported by: PH (via pav) Notes: svn path=/head/; revision=272716
* - Add patch to determine heap sizePietro Cerutti2011-04-011-0/+13
| | | | | | | Reported by: Seva Fwd <seva_fwd@yahoo.com> Notes: svn path=/head/; revision=272082
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - Update to 6.9.1Pietro Cerutti2010-10-184-9718/+11219
| | | | | | | Thanks to: Mario G. Pavlov <mgp@e-soul.org> Notes: svn path=/head/; revision=263180
* - Update to 6.8Pietro Cerutti2009-12-144-8797/+9725
| | | | Notes: svn path=/head/; revision=245762
* - Update to 6.7Pietro Cerutti2009-07-025-9448/+8876
| | | | Notes: svn path=/head/; revision=236929
* - Remove dependency on gconf2. If gnome is not used, it's not needed. [1]Pietro Cerutti2008-12-151-2/+1
| | | | | | | | | - Bump PORTREVISION Reported by: ale [1] (via private email) Notes: svn path=/head/; revision=224279
* - Refactor executable script [1]Pietro Cerutti2008-12-152-1/+62
| | | | | | | | | | - Add dependency on gconf2 - Bump PORTREVISION Reported by: Mats Andreassen <matsa@pvv.ntnu.no> (via private e-mail) Notes: svn path=/head/; revision=224270
* - Add additional MASTER_SITES entry, in the case that the main one respondsPietro Cerutti2008-12-091-1/+2
| | | | | | | | | with a 302. Reported by: Ilya A Zhuravlev <i.a.zhuravlev@cbtnet.ru> (private e-mail) Notes: svn path=/head/; revision=224029
* - Update to 6.5Pietro Cerutti2008-12-079-147/+9393
| | | | Notes: svn path=/head/; revision=223947