summaryrefslogtreecommitdiff
path: root/lang/ocaml
AgeCommit message (Collapse)Author
2020-08-22lang/ocaml: Fix build with llvm 11Niclas Zeising
Fix the build of lang/ocaml with llvm 11. There are two issues, first off, te issue with -fno-common, which is default with llvm 11. This is fixed by pulling in a modified patch from upstream, as well as local patches. Secondly, there's a problem with how asm sections are handled, patch this locally. Thanks to dim@ for help with this. MFH: 2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-05-29ocaml depends on as(1) at runtimeAntoine Brodin
PR: 205250
2020-05-29lang/ocaml: add BUILD_DEPENDS as:devel/binutilsEd Maste
/usr/bin/as will soon be removed from the FreeBSD base system, for FreeBSD 13.0. Depend on as (not ${LOCALBASE}/bin/as) so that this will introduce no change for existing 11.x and 12.x, which will continue to use the base system GNU as 2.17.50. PR: 205250 Approved by: portmgr (blanket) Sponsored by: The FreeBSD Foundation
2019-12-16lang/ocaml: fix build on powerpc64 elfv2Piotr Kubaj
LLVM miscompiles ocaml on powerpc64 elfv2: ld: error: bytecomp/printlambda.ml:23:(.text+0x16): relocation R_PPC64_TOC16_DS out of range: 73024 is not in [-32768, 32767] Use GCC instead on powerpc64. Add a conditional patch enabled only on powerpc64 elfv2 to use elfv2 abi instead of elfv1. Add a bunch of other patches to correctly check for abi instead of relying on endianness. PR: 242389 Approved by: michipili@gmail.com (maintainer)
2019-11-06Add USES=xorg USES=gl, ports categories lNiclas Zeising
Add USES=xorg and USES=gl to ports in categories starting with 'l' While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
2019-10-20- Update WWWDmitry Marakasov
Approved by: portmgr blanket
2019-08-01lang/ocaml: fix build on armv7Piotr Kubaj
armv7 requires -Wl,-znotext in LDFLAGS (same as i386), added definition for triple target and include term.h in the test for tgetent. PR: 239157 Approved by: michipili@gmail.com (maintainer timeout), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D21085
2019-07-26Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
2019-07-12lang/ocaml: fix on powerpc64Piotr Kubaj
powerpc64 needs to be put to configure script to be recognized. PR: 238788 Approved by: michipili@gmail.com (maintainer timeout), tcberner (mat) Differential Revision: https://reviews.freebsd.org/D20891
2019-06-27Make sure that correct LDFLAGS are passed when linking shared libraries,Alexey Dokuchaev
otherwise the build would fail on i386 with recent versions of FreeBSD. PR: 218333
2019-06-25Fix up pkg-plist in case the THREADS option (which is on by default) isGerald Pfeifer
off by marking a couple of files added in revision 505020 conditional on that option. PR: 218333
2019-06-24Update OCaml to version 4.05.0 (this is the last version where stringsAlexey Dokuchaev
are unsafe by default, which is the main motivation why it was picked, but not the very latest one) and synchronize the rest of the stack and dependent ports with it, particularly: - Update `devel/ocaml-ocamlbuild' to version 0.14.0 and unbreak, register build dependency on all ports that require it (should be part of USE_OCAML, but we do not want to make any Mk-related changes the for time being) - Update `devel/ocaml-camlp4' to version 4.05+2 - Update `devel/ocaml-camlp5' to version 7.07 (the project had moved to GitHub) - Mark `devel/ocaml-deriving-ocsigen' as BROKEN for now, it is very outdated and requires quite a lot of work - Update `x11-toolkits/ocaml-labltk' to version 8.06.3 PR: 218333 Exp-run by: antoine
2019-01-08Do not set PORTDOCS twiceTobias Kortkamp
2018-09-18lang/ocaml: add -znotext to LDFLAGS on i386, for lldEd Maste
Example error: /usr/bin/ld: error: can't create dynamic relocation R_386_32 against symbol: caml_last_return_address in readonly segment; recompile object files with -fPIC This port links some non-PIC code, which fails with lld as it defaults to disallowing relocations against read-only segments. For i386 we can just add -znotext unconditionally: for GNU BFD ld it just affirms BFD's existing default. PR: 214864, 230209 Approved by: bapt Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D17200
2018-08-01To make tracking of upcoming changes easier, sort pkg-plist (per LANG=C).Alexey Dokuchaev
2017-12-18Further pre-update cleanups for `lang/ocaml':Alexey Dokuchaev
- Do not suppress .bak-files when patching things with ``sed(1) -i'', those can be useful for debugging and catching no-ops - Drop `files/manfiles', it is no longer used (looks like a relic from pre-staging times) - Do not pass ``-as "${AS} ${ASFLAGS}"'' in the initial CONFIGURE_ARGS: when ARM support was added in r361233, appropriate values are passed conditionally (subject to ${ARCH}), see line 69 - Simplify handling of CFLAGS (obtained from RedHat package): rather than passing them as part of the compiler and "fixing" one generated Makefile in `post-configure', teach the configure script about them
2017-12-18In sight of long-overdue update of `lang/ocaml', start cleaning things up:Alexey Dokuchaev
- Remove hunks from `patch-configure' that are irrelevant on *BSD - Do not aggressively edit configure script in `post-patch', especially when it is not required (e.g. no variables are expanded). This was the reason for bogus changes committed in r403835 by wen@ and r403898 by marino@ (cf. "$bytecclinkopts $bytecclinkopts $bytecclinkopts"); now ``make makepatch'' command is idempotent again - Do not needlessly pass STAGEDIR via MAKE_ENV: it is correctly passed via MAKE_ARGS (as DESTDIR), and OCaml's build system is aware of it, while nowhere referencing STAGEDIR variable - Drop permission fix for ld.conf that was added in r169472 by itetcu@ 11 years 4 months ago: it is no-op these days Build logs remain identical (modulo the whitespace), regression tests pass.
2017-12-18Actualize BROKEN_sparc64 statement. It was (re)marked broken last time inAlexey Dokuchaev
r138465 by mi@ (first time in r109062 by kris@), that's 12.5 years ago, and never revisited ever since (except minor facelifting in r387855 by marino@). The world was largely different back then, with GCC 3.4.4 and OCaml 3.08.3. Currently it does not build on 10.4-STABLE running under QEMU 2.9.0. While here, remove stale comment about hardcoded GCC for depend target that was added in r292093 by bf@ and later *not* removed in r385012 by marino@ together with in-place editing commands it was attributed to. I messed up the history with r456400, thinking it still applies yet not performing the proper archaeology check, and rightfully deserve a pointy hat for that.
2017-12-15First step to unbreak `lang/ocaml' on aarch64: teach configure script thatAlexey Dokuchaev
the architecture exists on FreeBSD. Unfortunately, this is not enough for build to succeed, it now complains that as(1) is not found: ../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.cmx` -c camlinternalFormatBasics.ml sh: as: not found File "camlinternalFormatBasics.ml", line 1: Error: Assembler error, input left in file /tmp/camlasm4329ae.s gmake[7]: *** [Makefile.shared:84: camlinternalFormatBasics.cmx] Error 2 Developed on: ref11-aarch64.freebsd.org
2017-12-15Improve handling of the system architecture in `lang/ocaml'.Alexey Dokuchaev
OCaml is using ARCH variable throughout its makefiles, which clashes with our own variable of the same name. To workaround it, OCAML_ARCH variable was introduced which is set based on ARCH, and makefiles later patched in the `post-configure' target. This approach does not scale well with porting OCaml to new architectures as being fragile and sometimes making the build non-idempotent under some circumstances. Instead of "fixing" makefiles post-configure, rename ARCH to SYSTEM_ARCH: this avoids the clash altogether and lets configure script to set correct values for supported architectures in the first place with no adjustments required afterwards. Tested on: i386, amd64, powerpc
2017-11-30Attempt to build on armv7 by generalizing from armv6 code.Mark Linimon
Unfortanately it didn't build for me on armv7: perhaps it is a difference in compiler. (It currently builds on armv6 on the freebsd.org cluster.) So, this is a necessary but insufficient step. Approved by: portmgr (tier-2 blanket)
2017-04-29Provide more descriptive error messages for ports failing on powerpc64.Mark Linimon
Approved by: portmgr (tier-2 blanket)
2016-10-21${RM} already has -f.Mathieu Arnold
PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
2016-10-12Mark as broken on aarch64.Mark Linimon
Approved by: portmgr (tier-2 blanket)
2016-04-21many ports: mark broken on powerpc64Steve Wills
2016-03-24Fix packaging on armv6 by enabling profiling libraries.Guido Falsi
PR: 206615 Submitted by: mikael.urankar at gmail.com Approved by: michipili at gmail.com (maintainer)
2016-01-04As usual, routinely update to the next version in r403835 had removed supportAlexey Dokuchaev
for DragonFly (readded in r403898) and FreeBSD/powerpc. Put it back (again).
2015-12-17lang/ocaml: Unbreak DragonFlyJohn Marino
The previous upgrade removed all the dragonfly patches. Bring those back to restore the port on DragonFly. PR: 203589
2015-12-16- Update to 4.02.3Wen Heping
PR: 203589 Submitted by: michipili@gmail.com(maintainer)
2015-10-02Backout r398381, it fails to packageAntoine Brodin
With hat: portmgr MFH: 2015Q4
2015-10-01Upgrade from 4.02.1 to 4.02.3. Disable adding of explicit -O to compiler flags,Mikhail Teterin
because that ends up lowering optimization for most people (from -O2). Approved by: maintainer (The upgrade is too minor to justify revision bumping of depending ports.)
2015-08-23lang/ocaml: pet portlint, change pkg-plist as suggested by ohauerKurt Jaeger
PR: 195736 Submitted by: ohauer
2015-08-16lang/ocaml: give execute permissions via pkg-plist to two filesKurt Jaeger
PR: 195736 Submitted by: mmatalka@gmail.com Approved by: Michael Gruenewald <michipili@gmail.com> (maintainer)
2015-07-30Fix the build on PowerPC (again) that was broken as of r385012.Alexey Dokuchaev
2015-05-31lang/ocaml: Remove softvfp option from ARMv6 build (no longer required)John Marino
PR: 200102 Submitted by: Mikael Urankar Approved by: maintainer (assumed good, not able to test)
2015-05-29lang/ocaml: Set BROKEN on 2 new ARCHESJohn Marino
The MIPS platforms can't build ocaml. Set it and rework the BROKEN for sparc64 while here. PR: 197127
2015-05-14MASTER_SITES cleanup.Mathieu Arnold
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
2015-05-13lang/ocaml: Tweak PROFILE handling to support DragonFlyJohn Marino
This changes a conditional statement to an equivalent variation. An internal transformation of DPorts was getting confused by this construct. Discussed with: Michael Gruenewald (maintainer)
2015-05-03- Remove incomplete check for configure arguments to fix build when ↵Sunpoet Po-Chuan Hsieh
CONFIGURE_ARGS contains = PR: 199884 Submitted by: sunpoet (myself) Approved by: Michael Grunewald <michipili@gmail.com> (maintainer)
2015-04-29lang/ocaml: Upgrade version 4.01 => 4.02John Marino
PR: 195736 Submitted by: Michael Gruenewald (maintainer) Add'l fixes: marino Besides typical port cleanup, the dragonfly patches which had been removed for the update were added back to the configure patch.
2015-04-25- Add CPE infoDmitry Marakasov
Approved by: portmgr blanket
2015-03-25lang category: Remove $PTHREAD_LIBSJohn Marino
Note: ecl did not pass check-plist (pre-existing), PR 198897 submitted. approved by: PTHREAD blanket
2014-10-27Cleanup plistBaptiste Daroussin
2014-10-20lang/ocaml: Remove special NO_PROFILE handling for DragonFlyJohn Marino
2014-08-22Canonicalize a few LICENSE_PERMSAntoine Brodin
With hat: portmgr
2014-08-19lang/ocaml: Improve jobcontrol in ocamlbuildJohn Marino
Apply patch for upstream issue 0005371. It improves job control in ocamlbuild and fixes some faulty sigpipe affecting ports build with ocamlbuild. PR: 189710 Submitted by: edwin (skylable.com) patch by: glondu Approved by: maintainer (Michael Gruenewald)
2014-08-02Unbreak the build and packaging on PowerPC.Alexey Dokuchaev
2014-07-15Add EXAMPLES to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MEXAMPLES.Adam Weinberger
2014-07-08lang/ocaml: Add ARMv6 supportJohn Marino
Redports confirms that changes do not break i386 and amd64 builds (8x). PR: 189063 Submitted by: maintainer (Michael Gruenewald) Patch by: Andy Ray
2014-06-10lang/ocaml: Remove DEF_OPT option (non-default option)John Marino
The option reacts poorly with ocamlp4, and phasing out DEF_OPT completely will prevent a lot of breakage with ports that also interact with ocamlp4. PR: 189176 Submitted by: Anil Madhavapeddy Prepared by: maintainer (Michael Gruenewald)