aboutsummaryrefslogtreecommitdiffstats
path: root/java/jikes
Commit message (Collapse)AuthorAgeFilesLines
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.tijl2015-10-101-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include <iconv.h> instead of <sys/iconv.h>. irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine)
* converters/libiconv:tijl2015-04-151-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine)
* Cleanup plistantoine2014-11-141-1/+0
|
* Convert a bunch of USE_BZIP2 to USES=tar:bzip2adamw2014-07-301-2/+1
| | | | Approved by: portmgr (not really, but touches unstaged ports)
* Support LIBS like LDFLAGS.tijl2014-06-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine)
* - Stage supportmiwi2014-02-012-5/+2
| | | | - Convert to USES
* Clean up some COMMENTseadler2013-10-161-1/+1
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-5/+2
| | | | java)
* - Convert USE_ICONV=yes to USES=iconvmva2013-04-271-1/+1
| | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising
* - Get Rid MD5 supportmiwi2011-03-201-1/+0
|
* - Switch SourceForge ports to the new File Release System: categories ↵amdmi32009-08-221-2/+1
| | | | starting with H,I,J,K,L
* - Remove FreeBSD 4.X support from unmaintained ports in categories startinggabor2007-04-181-7/+1
| | | | with letter i-m
* Reassign ports from archie@ back to pool at his request.linimon2006-11-261-1/+1
| | | | Hat: portmgr
* SHA256ifyedwin2006-01-221-0/+1
| | | | Approved by: krion@
* Fix problem with -encoding flag.archie2005-11-282-0/+18
| | | | PR: ports/89536
* Update master site.archie2005-10-081-1/+2
|
* Update project home page.archie2005-02-281-1/+1
|
* BROKEN on alpha 4.x: Internal compiler errorkris2005-01-021-1/+7
| | | | Approved by: portmgr (self)
* Update to version 1.22.archie2004-11-022-3/+3
|
* Upgrade to version 1.21.archie2004-05-172-3/+3
|
* Update to version 1.20.archie2004-04-202-4/+3
|
* SIZEify (maintainer timeout)trevor2004-03-311-0/+1
|
* - Use USE_ICONV knobkrion2004-03-311-2/+1
| | | | Approved by: portmgr
* Fix incorrect MASTER_SITES.archie2004-02-221-1/+1
|
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-0/+1
| | | | (Part 2)
* Upgrade to version 1.19.archie2004-02-034-15/+3
|
* Add iconv encoding support.archie2003-11-111-0/+5
| | | | | PR: ports/57725 Submitted by: Palle Girgensohn <girgen@pingpong.net>
* Clear moonlight beckons.ade2003-03-072-1/+1
| | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
* Update to version 1.18, but without using 'libicuuc' which seemsarchie2003-02-252-3/+3
| | | | to be what destablizes the jikes-devel port.
* Add missing includekris2003-01-141-0/+1
|
* Update MASTER_SITES after directory re-org.archie2002-10-141-1/+1
|
* Using libicuuc.a seems to make jikes more unstable. Since this is supposedarchie2002-08-313-46/+1
| | | | | to be the stable version, stop using it. Folks who need it can use the "jikes-devel" port.
* Split the jikes port into stable and development versions.archie2002-08-285-21/+19
| | | | | PR: ports/41961 Reviewed by: freebsd-java
* Don't compile jikes with '-O' because that makes core dumps more likely.archie2002-08-281-2/+3
| | | | | | Exactly why is not understood yet. PR: ports/41961
* LIB_DEPENDS should have been BUILD_DEPENDS.archie2002-08-081-2/+2
| | | | Submitted by: vanilla
* Add support for the -encoding option by utilizing the ICU library.archie2002-08-064-4/+50
| | | | PR: ports/38396
* Update to version 1.16.archie2002-07-193-4/+6
|
* respect PREFIX by using GNU_CONFIGURE, not HAS_CONFIGUREbillf2002-04-241-1/+1
| | | | Submitted by: Nick Johnson <freebsd@spatula.net>
* Update to version 1.15.archie2001-10-054-10/+14
|
* Update to version 1.14.archie2001-05-163-4/+4
| | | | PR: ports/27301
* Fix PLIST for new version 1.13.archie2001-03-121-6/+2
|
* Update to version 1.13.archie2001-03-012-2/+2
|
* Distfile location changed.archie2001-02-241-1/+1
| | | | Detected by: http://people.freebsd.org/~fenner/portsurvey
* Update MASTER_SITEcpiazza2000-08-101-1/+1
| | | | | PR: 20487 Submitted by: rwatson
* Update to version 1.12.archie2000-08-017-46/+23
|
* Move the stragler's www.freebsd.org/~user distfiles to the officalobrien2000-06-291-1/+2
| | | | MASTER_SITE_LOCAL site.
* Update master site.archie2000-05-111-1/+1
|
* Convert to the PORTNAME - PORTVERSION syntax.obrien2000-04-121-2/+2
|
* Update to version 1.11.archie2000-01-242-2/+2
| | | | | PR: ports/16259 Submitted by: des
* Jikes comes with its own man page now, so install that one insteadarchie1999-09-282-2/+2
| | | | of the placeholder man page.
* Upgrade to version 1.06. Also make myself the new maintainer.archie1999-09-273-10/+13
| | | | Handed over by: dillon
* Change Id->FreeBSD.obrien1999-08-251-1/+1
|
* grep -> ${GREP}mharo1999-08-231-2/+2
| | | | | true -> ${TRUE} false -> ${FALSE}
* New ports/{java,irc,x11-servers} categories, Step #4 - Adjust new Makefiles.billf1999-06-281-2/+2
|
* Yet more WWW: additionsmharo1999-05-031-1/+1
|
* Update to version 0.47archie1999-03-222-3/+3
|
* Update to version 0.46.archie1999-03-103-29/+23
|
* Update to jikes-0.45. Still need a better master site.archie1999-03-013-68/+31
|
* Yikes, there was another ../../files.asami1998-12-231-1/+2
|
* Use FILESDIR/PKGDIR instead of relative paths from ${WRKSRC}.asami1998-12-221-1/+2
|
* Remove trailing whitespace.asami1998-12-171-3/+3
|
* Create ports patches for patches found on ftp site maintained bydillon1998-12-162-1/+37
| | | | | | | | | | | | | | | | Vadim Zaliva. See Makefile comments. * add extended version info to 'jikes -h' so we can track bugs with the port * unused variables warnings * patch for array cloning bug * patch for makedepend bug * patch for ANSI fp handling (i.e. avoid faulting out on divide by 0 an such).
* Remove commented out DISTFILES declaration since this issteve1998-12-161-2/+1
| | | | its default value.
* Submitted by: Steve Price <sprice@hiwaay.net>dillon1998-12-112-5/+5
| | | | | Remove DISTFILES= in Makefile (default works fine), general cleanup to make portlint(1) clean.
* Add IBM's open-source jikes package to the ports collectiondillon1998-12-117-0/+89