aboutsummaryrefslogtreecommitdiff
path: root/math/octave-forge-base
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - Update to 1.5.Stephen Montgomery-Smith2020-11-152-6/+5
| | | | | | | | Add '-W' option to octave-cli so that octave-cli does not attempt to contact the X11 server. Notes: svn path=/head/; revision=555153
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=507372
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. 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, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-101-1/+1
| | | | | | | version 1.1.0 (via revision 464079). Notes: svn path=/head/; revision=464084
* - Add NO_ARCH=yes to those octave-forge-* ports that don't install anythingStephen Montgomery-Smith2018-02-251-0/+1
| | | | | | | | | compiled. Reported by: Yuri <yuri@rawbw.com> Notes: svn path=/head/; revision=462979
* - Small bug fix so that packages x.y and x.y.0 are considered the same.Stephen Montgomery-Smith2018-02-242-3/+5
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=462877
* Remove Perl core modulesSunpoet Po-Chuan Hsieh2017-06-301-2/+1
| | | | | | | | | - Bump PORTREVISION for dependency change With hat: perl Notes: svn path=/head/; revision=444743
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-5/+5
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Update to 1.4. The only change is to call octave-cli instead of octave.Stephen Montgomery-Smith2016-01-132-5/+5
| | | | Notes: svn path=/head/; revision=405979
* - Add rmdir $prefix/lib/octave/packages to the end of the installation script.Stephen Montgomery-Smith2015-10-042-2/+6
| | | | | | | | | | | This is because the octave packaging process can fail to delete this directory when it becomes empty. - Update to 1.3. Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> Notes: svn path=/head/; revision=398561
* Use load-octave-pkg in preunexec for octave-forge-base, this is the onlyAntoine Brodin2015-09-262-7/+5
| | | | | | | | octave-forge-* port where it makes sense since it provides load-octave-pkg (load-octave-pkg is no longer available postunexec) Notes: svn path=/head/; revision=397946
* Convert load-octave-pkg to proper @postexecBaptiste Daroussin2015-09-261-2/+2
| | | | Notes: svn path=/head/; revision=397912
* Cleanup plistAntoine Brodin2014-11-121-2/+1
| | | | Notes: svn path=/head/; revision=372501
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-101-1/+1
| | | | | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs) Notes: svn path=/head/; revision=347809
* Convert all USE_FORTRAN=yes to "USES=fortran, USE_GCC=yes". In most casesTijl Coosemans2014-02-161-1/+1
| | | | | | | | | | | | | | USE_GCC=yes has been omitted though. Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk. Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,... Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=344614
* - Add license=BSD2CLAUSE.Stephen Montgomery-Smith2014-01-121-0/+2
| | | | Notes: svn path=/head/; revision=339540
* - Implement staging for octave-forge ports.Stephen Montgomery-Smith2014-01-121-4/+3
| | | | Notes: svn path=/head/; revision=339520
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | math) Notes: svn path=/head/; revision=327746
* - convert to the new perl5 frameworkAndrej Zverev2013-09-121-1/+1
| | | | | | | | | - trim Makefile header Approved by: portmgr (bapt@, blanket) Notes: svn path=/head/; revision=327032
* - Remove .include <bsd.ports.pre.mk>; bsd.ports.post.mk to bsd.ports.mk;Stephen Montgomery-Smith2013-07-051-5/+1
| | | | | | | | | | | ${PORTSDIR} to ${.CURDIR}/../.. in the .include for bsd.octave.mk. This is because USE_GMAKE no longer works after .include <bsd.ports.pre.mk>. - Trim headers. - Clean whitespace. - Portlint. Notes: svn path=/head/; revision=322356
* Add load-octave-pkg to _FORCE_POST_PATTERNS.Antoine Brodin2013-06-151-1/+1
| | | | | | | | | | This fixes leftovers of octave-forge-* with pkg PR: ports/179559 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=320980
* - update png to 1.5.10Dirk Meyer2012-06-011-0/+1
| | | | Notes: svn path=/head/; revision=297915
* The variable is USE_PERL5 not USE_PERLEitan Adler2012-02-071-1/+1
| | | | | | | | | Submitted by: Alex Kozlov Reviewed by: perl (swills) Approved by: portmgr (pav) Notes: svn path=/head/; revision=290590
* - Update to 1.2.Stephen Montgomery-Smith2011-11-142-22/+29
| | | | | | | | | | Accomodate x.y and x.y.0 representing the same octave forge package. Approved by: portmgr Feature safe: yes Notes: svn path=/head/; revision=285767
* - Make compliant with PKG_PLIST when installing from package.Stephen Montgomery-Smith2011-07-194-23/+29
| | | | | | | | | - Bump portrevision. Approved by: maho (mentor) Notes: svn path=/head/; revision=277926
* - Account for octave using lib/octave/packages instead ofStephen Montgomery-Smith2011-07-133-7/+4
| | | | | | | | | | libexec/octave/packages. - Bump portrevision. Approved by: gabor (mentor) Notes: svn path=/head/; revision=277656
* - Update math/octave-forge-base to 1.1. Now includes the scriptStephen Montgomery-Smith2011-06-304-21/+253
| | | | | | | | | | load-octave-pkg to link the octave packaging system to the FreeBSD ports. - Update Mk/bsd.octave.mk so that octave-forge-* ports use this script. Approved by: gabor (mentor) Notes: svn path=/head/; revision=276747
* - Bump portrevision because math/octave updated to 3.4.1Stephen Montgomery-Smith2011-06-241-1/+1
| | | | | | | | | - Fix to work with math/octave-3.4.1 Approved by: maho (mentor) Notes: svn path=/head/; revision=276180
* - Remove some bits that stop build under tinderbox. The old version of ↵Stephen Montgomery-Smith2011-06-142-11/+7
| | | | | | | | | | | octave did not correctly install packages under tinderbox. Octave-3.4.0 fixes this problem. PR: ports/156942 Submitted by: stephen Approved by: gabor (mentor) Notes: svn path=/head/; revision=275603
* Maintainer: stephen@missouri.edu -> stephen@FreeBSD.orgStephen Montgomery-Smith2011-06-141-1/+1
| | | | | | | Approved by: maho (mentor) Notes: svn path=/head/; revision=275537
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
| | | | Notes: svn path=/head/; revision=249285
* Disable on pointyhat until I can get a time-slice to figure out what'sMark Linimon2009-11-151-0/+4
| | | | | | | | | going wrong. Hat: portmgr Notes: svn path=/head/; revision=244304
* Should have been marked unbroken with the revision 1.6 commit toMark Linimon2009-11-111-2/+0
| | | | | | | | | | bsd.octave.mk. PR: ports/139342 Submitted by: maintainer Notes: svn path=/head/; revision=244132
* - Mark BROKEN incomplete pkg-plistMartin Wilke2009-08-191-0/+2
| | | | Notes: svn path=/head/; revision=239940
* - Update maintainer mail addressDennis Herrmann2009-04-051-1/+1
| | | | | | | | | PR: ports/133397 Submitted by: Stephen Montgomery-Smith <stephen@missouri.edu> (maintainer) Approved by: tabthorpe (co-mentor) Notes: svn path=/head/; revision=231669
* Correct port name and create date.Maho Nakata2008-09-091-2/+2
| | | | | | | | | | PR: 127226 Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> and also Stephen Montgomery-Smith <stephen@math.missouri.edu> (maintainer) Approved by: portmgr@ (erwin) Notes: svn path=/head/; revision=220306
* Bump port revision accordingly (update of math/octave port).Maho Nakata2008-09-081-0/+1
| | | | Notes: svn path=/head/; revision=220198
* Add math/octave-forge-base.Maho Nakata2008-09-083-0/+53
This baseport provides the basic directory structure. Deleting this package will completely erase all the structure, and remaining files, associated with the octave packaging system. This is useful if things go wrong with the octave packaging system. (The octave-forge package is the result of The GNU Octave Repositry project, which is intended to be a central location for custom scripts, functions and extensions for GNU Octave. contains the source for all the functions plus build and install scripts.) PR: 127030 Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu> Notes: svn path=/head/; revision=220196