aboutsummaryrefslogtreecommitdiffstats
path: root/lang/gcc47
Commit message (Collapse)AuthorAgeFilesLines
* Remove expired port:Rene Ladan2018-07-157-201/+0
| | | | 2018-07-13 lang/gcc47: Unsupported by upstream. Use GCC 6 or newer instead.
* Run "/usr/sbin/service ldconfig restart" for USE_LDCONFIG instead ofTijl Coosemans2018-05-151-1/+1
| | | | | | | | | | | | | | "ldconfig -m <path>" so the order of ldconfig search directories after package installation is the same as after a reboot. The original command simply appends the path to the list of directories while the ldconfig rc.d script uses "sort -u". Bump lang/gcc* which are known to install libraries with exactly the same name so the library loaded at runtime depends on the order of the search directories. PR: 228046 Approved by: portmgr (antoine)
* Add an EXPIRATION_DATE of 2018-07-13 since this version of GCC will notGerald Pfeifer2018-05-141-0/+1
| | | | | have been maintained upstream for more than three years by then. It also is not used anywhere in the FreeBSD Ports tree.
* Simplify MASTER_SITES in all GCC-ports related to end-of-lifed releasesGerald Pfeifer2018-05-141-1/+1
| | | | | | | (gcc47, gcc48, gcc49, and gcc5), taking advantage of the default for GCC releases provided by MASTER_SITES_ABBREVS. Reported by: portlint
* Update mpfr to 4.0.1 release and bump PORTVERSION of dependent ports.Alex Dupre2018-04-191-1/+1
|
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-111-1/+1
| | | | version 1.1.0 (via revision 464079).
* Backport the change to ensure what we install is stripped (i.e., debugGerald Pfeifer2017-11-241-0/+4
| | | | | | | | | | info is removed) from lang/gcc7 to lang/gcc47, lang/gcc48 and lang/gcc49. (For more background see revisions 454177 and 454422.) Reported by: Ports QA Framework, miwi, sobomax Discussed with: tijl, miwi Differential Revision: https://reviews.freebsd.org/D10357
* Given that GCC 5 has gone end-of-life now, recommend GCC 6 or laterGerald Pfeifer2017-11-201-1/+1
| | | | | instead of GCC 5 or later in the deprecation messages for lang/gcc46 to lang/gcc49.
* Add deprecation notes for lang/gcc47, lang/gcc48, and lang/gcc49,Gerald Pfeifer2017-10-051-1/+2
| | | | | | | | but no expiration date at this point (since at least the latter two still have users in the ports tree and sparc64 relies on the latter). PR: 222373 Submitted by: Yasuhiro KIMURA <yasu@utahime.org>
* Backport several cleanups and one real fix from lang/gcc5:Gerald Pfeifer2017-09-242-5/+6
| | | | | | | | | | | | | | | | | | - Move ONLY_FOR_ARCHS into the right position of the Makefile. - Omit a comment describing GCC_VERSION and SUFFIX. - Do not quote constant strings compared with ${ARCH}. [1] - Last, but not least the only functional change (and an important one at that): Remove headers being created by GCC's fixincludes machinery from the installation / packaging to avoid breakage when FreeBSD's headers are changing afterwards. - On the way, add a TIMESTAMP to distinfo. PR: 221905 [1] Submitted by: linimon [1]
* Remove workarounds for PR 219274 that bapt@ had put in place in 2014Gerald Pfeifer2017-07-201-1/+0
| | | | | | from the end-of-life lang/gcc4* ports. PR: 219274
* Adjust WWW reference in pkg-descr to https and avoid a trailing slashGerald Pfeifer2017-06-151-1/+1
| | | | for all lang/gcc4* ports.
* Remove powerpc64 from ONLY_FOR_ARCHS and remove BROKEN_powerpc64.Gerald Pfeifer2017-05-281-3/+1
| | | | | | | | This is an old version of GCC (a couple of generations end-of-lifed) that is not going to be fixed realistically, and we have newer ports that work. Discussed with: linimon, andreast
* Mark some ports failing on power64. In cases where the error messageMark Linimon2017-05-231-0/+2
| | | | | | | | | was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Reported by: swills
* Update print/texinfo to 6.3Sunpoet Po-Chuan Hsieh2017-05-082-1/+21
| | | | | | | Changes: http://savannah.gnu.org/forum/forum.php?forum_id=8679 Differential Revision: https://reviews.freebsd.org/D PR: 218972 Exp-run by: antoine
* Simplify the setting of INFO.Gerald Pfeifer2017-04-301-6/+3
|
* Pet portlint wrt. patch files format warnings.Gerald Pfeifer2017-04-231-0/+1
|
* Remove Java support (both the JAVA option and everything associated withGerald Pfeifer2017-04-174-95/+7
| | | | | | | | | | | it as well as java from CATEGORIES) from this port. After GCC 4.7 went end-of-life upstream in June 2014 there isn't much use of that not better served by newer lang/gcc* ports and it speeds up the build and simplifies this port significantly. In addition to the expected changes to Makefile, pkg-plist, and pkg-descr, this also removes files/java-patch-hier.
* - Fix shebangMartin Wilke2017-04-151-1/+4
| | | | Approved by: gerald (maintainer via mail)
* Completely remove DIST_VERSION that mat introduced in revisionGerald Pfeifer2017-04-121-6/+4
| | | | | | | 438272 to avoid DISTVERSION in this port . On the way also drop the definition of DISTNAME and simplify the definition of GCC_VERSION since GCC 4.7 is EOL.
* Make defining both PORTVERSION and DISTVERSION a DEV_ERROR.Mathieu Arnold2017-04-111-3/+4
| | | | | | | | | | | | | | | | | There are two cases: - The upstream versionning is compatible with our versionning, or using DISTVERSION's magic leads to a compatible PORTVERSION, use DISTVERSION. If it is possible to use DISTVERSIONPREFIX and DISTVERSIONSUFFIX to make it compatible, use them. - The upstream versionning is not compatible with our versionning, and DISTVERSION's magic does not lead to a correct PORTVERSION, then set PORTVERSION to the equivalent of our versionning, and set DISTNAME. It is possible to use a third variable where you store upstream's version and use it to compute PORTVERSION and/or DISTNAME, like the dns/bind9* ports do. Sponsored by: Absolight
* ${RM} already has -f.Mathieu Arnold2016-10-211-4/+4
| | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
* Apply the following to all common GCC ports based on end-of-life versionsGerald Pfeifer2016-05-071-2/+0
| | | | | | | | of GCC including lang/gcc: Only override CONFIGURE_TARGET for amd64 which is x86-64/x86_64 for the rest of the world including GNU and GCC. For all other architectures it already defaults to the value we were setting.
* No longer conflict with gcc-4.7.* (which lang/gcc used to be untilGerald Pfeifer2016-05-051-1/+0
| | | | some 20 months ago).
* lang/gcc*: convert to CONFIGURE_OUTSOURCEJan Beich2016-04-131-10/+5
| | | | | | | PR: 208294, 208309 Exp-run by: antoine Approved by: gerald (maintainer) Differential Revision: https://reviews.freebsd.org/D4157
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-9/+9
| | | | | With hat: portmgr Sponsored by: Absolight
* Remove deprecated @exec/@unexec from ports using ccache-update-linksAntoine Brodin2015-09-261-2/+2
|
* Remove UNIQUENAME and LATEST_LINK.Mathieu Arnold2015-08-171-1/+0
| | | | | | | | | | | | | | | | | UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
* Merge MASTER_SITES and MASTER_SITE_SUBDIR into just the former.Gerald Pfeifer2015-04-301-2/+1
| | | | Suggested by: mat
* lang/gcc(46,47,48,49,5): Use OPTIONS_EXCLUDE_DragonFly to block JAVAJohn Marino2015-03-271-0/+1
| | | | | | | | | | | | The JAVA frontend doesn't build on DragonFly on any release. The new OPTIONS_EXCLUDE_${OPSYS} feature is a nice way to avoid the use of Makefile.DragonFly (most are in dports, but one is in lang/gcc5). The recent addition of CXXFLAGS to lang/gcc5 prevents Makefile.DragonFly on lang/gcc5 from being removed outright. There are a couple of options available to allow its removal, but I'll need to discuss with Gerald. Approved by: DragonFly blanket
* Fix UNIQUENAME not being unique after recent PORTNAME shuffle.Bryan Drewery2015-03-241-1/+2
| | | | | | | | | This was causing the gcc packages to be generated with a /usr/local/libdata/ldconfig/gcc file. All were conflicting. Bump PORTREVISION to fix packages built during this time. With hat: portmgr Reported by: sunpoet
* Add CPE information. [1]Gerald Pfeifer2015-03-231-3/+4
| | | | | | | | | Use PKGNAMESUFFIX so that PORTNAME falls back to plain gcc and we can avoid setting DISTNAME and CPE_PRODUCT. [2] PR: 198256 [1] Submitted by: shun.fbsd.pr@dropcut.net [1] Suggested by: mat [2]
* When building the gcc ports using a full bootstrap, tell the configureDimitry Andric2014-12-311-0/+1
| | | | | | | | | | | | | | | | script to assume the BUILD_CONFIG is set to bootstrap-debug, instead of letting it auto-detect. With clang 3.5.0 this auto-detection can fail, due to a discrepancy [1] [2] in its debug information, when objects are produced with and without -g. When the auto-detection fails, gcc will compare objects with full debug information during the stage comparisons, and this sometimes causes those stage comparisons to fail unexpectedly. [1] http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20141222/250134.html [2] http://llvm.org/PR22046 Approved by: gerald (maintainer)
* Remove all traces of @dirrm from pkg-plist, including the dynamicallyGerald Pfeifer2014-10-202-7/+0
| | | | generated parts via the Makefile.
* Comment out info/dir filesBaptiste Daroussin2014-10-072-2/+2
| | | | | | indexinfo is taking care of generating it at package installation time Reported by: peter
* Add USES=libtoolTijl Coosemans2014-09-111-4/+3
|
* Also clean *.la files in LIBEXEC, and recursively so, here and forGerald Pfeifer2014-07-131-1/+2
| | | | TARGLIB.
* Fix build on system built WITHOUT_INFOBaptiste Daroussin2014-06-251-1/+1
| | | | With hat: portmgr
* Convert GMAKE to MAKE_CMDBaptiste Daroussin2014-06-251-1/+1
| | | | | | | Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr
* Update to the GCC 4.7.4 release which closes the GCC 4.7 release branch.Gerald Pfeifer2014-06-242-11/+10
| | | | | | | Due to the way we have been handling PORTREVISION before lang/gcc48 this requires PORTEPOCH. Also, since this is now final and stable, no longer bootstrap this port.
* Convert all :U to :tu and :L to :tlBaptiste Daroussin2014-05-051-2/+2
| | | | | | | | | | | | | | Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
* Update to the 20140419 snapshot of GCC 4.7.4.Gerald Pfeifer2014-04-213-3/+12
| | | | | | Add pkg-message that references the need to use -Wl,-rpath=... . [1] PR: 185902 [1]
* Update to the 20140412 snapshot of GCXC 4.7.4.Gerald Pfeifer2014-04-132-4/+5
| | | | Extend full-regression-test by running contrib/test_summary.
* Properly remove man/man1/rebuild-gcj-db47.1.gz by removing theGerald Pfeifer2014-04-081-1/+1
| | | | | | uncompressed version since post-install runs before compress-man. Submitted by: mat
* Update to the 20140405 snapshot of GCC 4.7.4.Gerald Pfeifer2014-04-073-5/+5
| | | | | No longer install rebuild-gcj-db47 (which requires bash among others) and its man page.
* Update to the 20140329 snapshot of GCC 4.7.4.Gerald Pfeifer2014-04-012-5/+4
| | | | Replace USE_BZIP2 by USES=tar:bzip2.
* Update to the 20140315 snapshot of GCC 4.7.4.Gerald Pfeifer2014-03-172-3/+3
|
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. This adds powerpc64 as a supported architecture (and removes ia64, though it can be supported by manually installing lang/gcc48). New binaries %%GNU_HOST%%-gcc-ar47, %%GNU_HOST%%-gcc-nm47, and %%GNU_HOST%%-gcc-ranlib47 are provided to support link-time optimization (LTO) which scales significantly better. And it adds support for indirect functions (IFUNCS), experimental support for transactional memory in the compiler as well as a supporting run-time library called libitm, a new string length optimization pass, and support for atomic operations specifying the C++11/C11 memory model. Version 3.1 of the OpenMP specification is now supported for the C, C++, and Fortran compilers. GCC accepts the options -std=c11 and -std=gnu11 for the C11 revision of the ISO C standard which inlcude support for unicode strings, nonreturning functions (_Noreturn and <stdnoreturn.h>), alignment support (_Alignas, _Alignof, max_align_t, <stdalign.h>), and a __builtin_complex built-in function. The C++ frontend now accepts the -std=c++11, -std=gnu++11, and -Wc++11-compat options and implements many C++11 features of the language including extended friends syntax, explicit override control, non-static data member initializers, user-defined literals, alias declarations, delegating constructors, atomic classes, and more. The C++ standard library and Fortran frontend have received many improvements. See http://gcc.gnu.org/gcc-4.7/changes.html for an extense list of changes; http://gcc.gnu.org/gcc-4.7/porting_to.html for information on how to port to that new version. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
* Update to the 20140222 snapshot of GCC 4.7.4.Gerald Pfeifer2014-02-272-3/+3
|
* Update to the 20140215 snapshot of GCC 4.7.4.Gerald Pfeifer2014-02-222-3/+6
| | | | | Set the license to a combination of GPLv3 (for the compiler itself) and GPLv3 with GCC Runtime Library Exception (for the runtime).
* Update to the 20140208 snapshot of GCC 4.7.4.Gerald Pfeifer2014-02-152-6/+5
| | | | | | | | | | | | | | | Configure with --enable-gnu-indirect-function to enable the "ifunc" attribute, a GCC extension. [1] Remove the man7 pages, which we are not packaging, from the staging area to silence some warnings some are concerned about. [2] No longer run ccache-update-links as part of post-install which, in the world of staging, no longer is what it used to be. Rely on the existing @exec and @unexec in pkg-plist instead. [3] Submitted by: jmg [1], miwi [2] Discussed with: kib [1], antoine [2][3]
* Remove references to long unsupported alpha.Alexey Dokuchaev2014-01-291-2/+2
|
* Update to the 20140118 snapshot of GCC 4.7.4.Gerald Pfeifer2014-01-232-3/+3
|
* Fix properties on pkg-plistBaptiste Daroussin2014-01-221-1/+0
|
* Update to the 20131214 snapshot of GCC 4.7.4.Gerald Pfeifer2013-12-162-3/+3
|
* Update to the 20131130 snapshot of GCC 4.7.4.Gerald Pfeifer2013-12-022-4/+3
| | | | | | | | | No longer add -I${LOCALBASE}/include to CFLAGS. Since we now configure with --with-gmp=${LOCALBASE} this is no longer necessary, and due to bugs in binutils (which should not install ansidecl.h into ${PREFIX}/include) and GCC (which should search its own include directories with higher priority) can lead to build failures.
* Change PORTNAME from gcc to gcc47 to match the actual name of thisGerald Pfeifer2013-11-252-5/+5
| | | | | | | port and avoid a package name collision with other GCC ports. This also allows us to remove LATEST_LINK. On the way update to the 20131123 snapshot of GCC 4.7.4.
* Update to the 20131109 snapshot of GCC 4.7.4.Gerald Pfeifer2013-11-102-3/+3
| | | | Reported by: portscout
* Update to the 20131026 snapshot of GCC 4.7.4.Gerald Pfeifer2013-10-283-43/+39
| | | | | | | | | | Remove a (long) obsolete dependency on bison. [1] Migrate to the new LIB_DEPENDS standard. STAGEify. Reported by: marino [1]
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-0/+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)
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-211-0/+1
| | | | lang)
* SSP support has been added to ports with WITH_SSP for i386 and amd64Bryan Drewery2013-09-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | on FreeBSD 10, and amd64 on earlier versions. SSP_UNSAFE is added to disable in a port if it fails to build, but this should only be used in rare circumstances such as kernel modules. Otherwise, the port may just be failing due to lack of respecting LDFLAGS. On FreeBSD 10, this uses an ldscript in /usr/lib/libc.so to pull in libssp_nonshared.a to address issues linking on i386 [1]. On earlier FreeBSD versions the WITH_SSP knob will add -lssp_nonshared to LDFLAGS on i386. This is not needed on amd64. However, several hundred ports do not currently respect LDFLAGS, so this support is disabled currently as it causes build failures if a dependency is looking for the stack_chk symbols. Many thanks to jlh@ for this as he had many years of patience in getting all of the necessary pieces [1][2] in. [1] http://svnweb.freebsd.org/base/head/lib/libc/libc.ldscript?revision=251668&view=markup PR: ports/138228 [2] Submitted by: jlh (bsd.ssp.mk based on) Reviewed by: bapt With hat: portmgr exp-runs done: 37 over a month on 91i386,91amd64,10i386,10amd64
* Convert to new perl frameworkBaptiste Daroussin2013-09-171-2/+2
| | | | Convert from USE_GMAKE to USES=gmake
* lang/gcc*: define CONFIGURE_TARGET genericly (8 ports)John Marino2013-09-121-2/+2
| | | | | | | | Instead of hardcoding the compiler target as FreeBSD, use the OPSYS variable to it. This makes no practical difference for FreeBSD, but it helps DragonFly get properly configured. Approved by: gerald
* Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.Boris Samorodov2013-09-051-1/+1
| | | | | | | | It's value is "--with-libiconv-prefix=/usr/local" for systems before 100043 with ports libiconv and to use at systems post 100043 with base iconv it's value is "" (NULL). Co-authors: bapt, madpilot and bsam (me)
* Update to the 20130831 snapshot of GCC 4.7.4.Gerald Pfeifer2013-09-053-3/+13
| | | | | | | | | | | | | | | Work around a bug in libcpp that pulls in the optional system iconv if present instead of relying on the port we actually depend on. [1] The issue is that /usr/include/iconv.h has #include <stdbool.h> which in turn, since both are included very late in the game, conflicts with similar definintions by libcpp itself. Interestingly enough, lang/gcc46 and lang/gcc48 did not fail under the same test scenarios and libstdc++ does not seem to require adjustments, so PR 161417 may not be relevant in full. PR: 161417 [1]
* Replace USE_GMAKE by USES=gmake.Gerald Pfeifer2013-08-182-5/+4
| | | | Update to the 20130817 snapshot of GCC 4.7.4.
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-151-1/+0
| | | | Approved by: portmgr (bdrewery)
* Update to the 20130810 snapshot of GCC 4.7.4.Gerald Pfeifer2013-08-112-9/+10
| | | | | | | | | Rename VERSIONSTRING to the standard DISTVERSION. [1] Add more notes on the various variables carrying version information. Suggested by: crees [1] ~
* Update to the 20130803 snapshot of GCC 4.7.4.Gerald Pfeifer2013-08-052-3/+3
|
* Update to the 20130706 snapshot of GCC 4.7.4.Gerald Pfeifer2013-07-082-3/+3
|
* Update to the 20130518 snapshot of GCC 4.7.4.Gerald Pfeifer2013-06-022-4/+11
| | | | | | | | | | Introduce a new option BOOTSTRAP that allows switching between a full bootstrap of GCC and just running a simple build. Bootstrapping is the default upstream, and for very stable and old flavors of GCC we disable this by default since that is a huge win in terms of build time of the port. No change in default behavior for this port, for the time being we continue to bootstrap.
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-2/+1
| | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising
* Update to the 20130413 snapshot of GCC 4.7.4. This encompasses allGerald Pfeifer2013-04-202-3/+3
| | | | | | those fixes in the GCC 4.7.3 release. Feature safe: yes
* Update to the 20130323 snapshot of GCC 4.7.3.Gerald Pfeifer2013-03-242-3/+3
|
* Convert USE_BISON to USES= bisonBaptiste Daroussin2013-03-081-1/+1
| | | | | | | | | | | | | | It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
* Update to the 20130302 snapshot of GCC 4.7.3. This should now alsoGerald Pfeifer2013-03-032-3/+3
| | | | build with texinfo 5.0 more or less.
* Replace the use of DISTFILES by DISTNAME, since we are now down toGerald Pfeifer2013-02-172-4/+4
| | | | | | one in all cases. On the way, update to the 20130216 snapshot of GCC 4.7.3.
* Update to the 20130202 snapshot of 4.7.3.Gerald Pfeifer2013-02-092-3/+3
|
* Remove stray entry from packaging list.Gerald Pfeifer2013-01-261-1/+0
| | | | Reported by: Paul Reynold <preynold@redcom.com>
* Use the new lang/gcc-ecj45 port when building the Java frontendGerald Pfeifer2013-01-212-15/+8
| | | | | | | | | instead of including a pre-built version of the Eclipse Java Compiler (ECJ) ourselves. [1] On the way, update to the 20130119 snapshot of GCC 4.7.3. PR: 175072 [1]
* Update to the 20121208 snapshot of GCC 4.7.3.Gerald Pfeifer2012-12-132-3/+3
|
* Make binutils a build dependency as well (not just a run-time dependency).Gerald Pfeifer2012-12-022-3/+4
| | | | | | | | Without this, the libiberty build fails locating ar. Also update to the 20121124 snapshot of 4.7.3. Feature safe: yes
* Update to the 20121103 snapshot of GCC 4.7.3.Gerald Pfeifer2012-11-052-3/+3
| | | | Feature safe: yes
* Update to the 20121027 snapshot of GCC 4.7.3.Gerald Pfeifer2012-11-022-3/+3
| | | | Feature safe: yes
* Forward port inclusion and use of the Eclipse Java compiler. [1]Gerald Pfeifer2012-10-223-4/+16
| | | | | | | Update to the 20121013 snapshot of GCC 4.7.3. Submitted by: jkim [1] Feature safe: yes
* Forward port revision 282369 [1] which carried the following description:Gerald Pfeifer2012-09-303-17/+20
| | | | | | | | | | On the way rename %%GCC_VER%% in pkg-plist to %%GCC_VERSION%% and make the Makefile machinery a bit more generic to minimize differences between lang/gcc ports based on releases and those based on snapshots. On the way, update to the 20120929 snapshot of GCC 4.7.3. Submitted by: jkim [1]
* Update to the 20120922 snapshot of GCC 4.7.3, which is pretty closeGerald Pfeifer2012-09-282-12/+8
| | | | | | | | | | | | | | | to the GCC 4.7.2 release. It also fixes an ABI problem introduced with earlier GCC 4.7 releases. Cut down the comments at the top of Makefile per recent guidance. Revamp the handling of different languages (frontends, run-times) by GCC to allow for orthogonal setting them in the future. [1] Print the list of languages being built as part of pre-everything and shorten the output of operating system and version there. Inspired by: jkim [1]
* Update to the 20120908 snapshot of GCC 4.7.2.Gerald Pfeifer2012-09-102-3/+3
|
* Update to the 20120825 snapshot of GCC 4.7.2.Gerald Pfeifer2012-08-262-3/+3
|
* Update to the 20120818 snapshot of GCC 4.7.2.Gerald Pfeifer2012-08-222-3/+3
|
* Update to the 20120804 snapshot of GCC 4.7.2.Gerald Pfeifer2012-08-052-3/+3
|
* Convert to the new options framework.Gerald Pfeifer2012-07-302-9/+8
| | | | On the way update to the 20120728 snapshot of GCC 4.7.2.
* Update to the 20120721 snapshot of GCC 4.7.2.Gerald Pfeifer2012-07-252-6/+6
| | | | Remove ABI version numbers for all library dependencies.
* Update to the 20120714 snapshot of GCC 4.7.2.Gerald Pfeifer2012-07-162-3/+3
|
* Update to the 20120707 snapshot of GCC 4.7.2.Gerald Pfeifer2012-07-112-3/+3
|
* Update to the 20120630 snapshot of GCC 4.7.2.Gerald Pfeifer2012-07-032-3/+3
|
* Update to the 20120616 snapshot of GCC 4.7.2, very close to the GCC 4.7.1Gerald Pfeifer2012-06-202-4/+4
| | | | | | release. Fix a portlint warning (tab vs space).
* Add powerpc64 support.Andreas Tobler2012-06-161-1/+5
| | | | Approved by: gerald
* Update to the 20120609 snapshot of GCC 4.7.1.Gerald Pfeifer2012-06-112-3/+3
|
* Update to the 20120602 snapshot of GCC 4.7.1.Gerald Pfeifer2012-06-042-3/+3
|
* Update to the 20120526 snapshot of GCC 4.7.1.Gerald Pfeifer2012-05-282-3/+3
|
* Update to the 20120512 snapshot of GCC 4.7.1.Gerald Pfeifer2012-05-172-3/+3
|
* Update to the 20120505 snapshot of GCC 4.7.1.Gerald Pfeifer2012-05-082-3/+3
|
* Update to the 20120428 snapshot of GCC 4.7.1.Gerald Pfeifer2012-05-012-3/+3
|
* Update to the 20120414 snapshot of GCC 4.7.1.Gerald Pfeifer2012-04-162-3/+3
|
* Update to the 20120407 snapshot of GCC 4.7.1.Gerald Pfeifer2012-04-082-3/+3
| | | | Feature safe: yes
* Update to the 20120324 snapshot of GCC 4.7.1.Gerald Pfeifer2012-04-042-3/+3
| | | | Feature safe: yes
* Update to the 20120225 snapshot of GCC 4.7.0.Gerald Pfeifer2012-02-272-3/+3
|
* Update to the 20120204 snapshot of GCC 4.7.0.Gerald Pfeifer2012-02-122-3/+3
|
* Update to the 20120128 snapshot of GCC 4.7.0. This fixesGerald Pfeifer2012-02-042-3/+3
| | | | -fstack-protector-all on FreeBSD (thanks to tijl).
* Update to the 20120121 snapshot of GCC 4.7.0.Gerald Pfeifer2012-01-222-3/+3
| | | | | This fixes a bootstrap comparison failure rearing its ugly head in some cases, plus GNU/kFreeBSD.
* Update to the 20120114 snapshot of GCC 4.7.0. Re-enable the Objective-CGerald Pfeifer2012-01-162-5/+5
| | | | front end and accordingly also the run-time.
* Update to the 20120107 snapshot of GCC 4.7.0.Gerald Pfeifer2012-01-142-3/+3
|
* Update to the 20111231 snapshot of GCC 4.7.0.Gerald Pfeifer2012-01-072-3/+3
|
* Update to the 20111217 snapshot of GCC 4.7.0.Gerald Pfeifer2011-12-192-3/+3
|
* Update to the 20111210 snapshot of GCC 4.7.0.Gerald Pfeifer2011-12-132-3/+3
| | | | Feature safe: yes
* Update to the 20111203 snapshot of GCC 4.7.0. This addresses anGerald Pfeifer2011-12-052-3/+3
| | | | | | | incorrectly named library (libjavamath.so.0.0) introduced by the fixes for FreeBSD 10 support. Feature safe: yes
* Update to the 20111126 snapshot of GCC 4.7.0. This now builds onGerald Pfeifer2011-11-272-3/+3
| | | | | | FreeBSD 10 without problems and any additional tweaks. Feature safe: yes
* Update to the 20111119 snapshot of GCC 4.7.0 which brings supportGerald Pfeifer2011-11-272-5/+6
| | | | | | | | | | for transactional memory on i386, amd64 and alpha. We handle the corresponding info file inclusively by listing all supported architecture and move the libquadmath info file to the same schema. Feature safe: yes
* Remove ia64 from the list of supported platforms. It's broken andGerald Pfeifer2011-11-151-1/+1
| | | | | | now developer, only a sole user, ever cared for the last many years. Feature safe: yes
* Update to the 20111105 snapshot of GCC 4.7.0. This allows us to removeGerald Pfeifer2011-11-103-22/+3
| | | | | | a hack of mine for libgcc on ia64. Feature safe: yes
* Update to the 20111029 snapshot of GCC 4.7.0.Gerald Pfeifer2011-10-303-3/+9
| | | | This adds new programs gcc-ar47, gcc-nm47, and gcc-ranlib47.
* Update to the 20111022 snapshot of GCC 4.7.0.Gerald Pfeifer2011-10-242-3/+3
|
* Update to the 20111015 snapshot of GCC 4.7.0.Gerald Pfeifer2011-10-162-3/+3
|
* Update to the 20111008 snapshot of GCC 4.7.0.Gerald Pfeifer2011-10-102-3/+3
|
* Update to the 20111001 snapshot of GCC 4.7.0.Gerald Pfeifer2011-10-023-3/+22
|
* Update to the 20110924 snapshot of GCC 4.7.0.Gerald Pfeifer2011-09-252-3/+3
|
* Update to the 20110917 snapshot of GCC 4.7.0.Gerald Pfeifer2011-09-182-3/+3
|
* Update to the 20110910 snapshot of GCC 4.7.0.Gerald Pfeifer2011-09-112-3/+3
|
* Update to the 20110903 snapshot of GCC 4.7.Gerald Pfeifer2011-09-113-3/+8
| | | | | | | | On the way update ccache links (when appropriate) when installing and deinstalling this port/package. [1] PR: 155568 [1] Submitted by: ehaupt [1]
* Update to the 20110827 snapshot of GCC 4.7.0 (which apparently requiresGerald Pfeifer2011-09-053-22/+3
| | | | | | | the newer version of binutils that we are using). Remove a patch for ia64 that was not accepted upstream and where the are in question was restructured recently.
* Update to the 20110730 snapshot of GCC 4.7.0.Gerald Pfeifer2011-08-012-3/+3
|
* Update to the 20110723 snapshot of GCC 4.7.0, which addresses bootstrapGerald Pfeifer2011-07-242-3/+3
| | | | issues on ia64.
* Update to the 20110716 snapshot of GCC 4.7.0.Gerald Pfeifer2011-07-202-3/+3
|
* Update to the 20110709 snapshot of GCC 4.7.0.Gerald Pfeifer2011-07-112-3/+3
|
* Update to the 20110702 snapshot of GCC 4.7.0.Gerald Pfeifer2011-07-042-3/+3
|
* Update to the 20110611 snapshot of GCC 4.7.0.Gerald Pfeifer2011-06-122-3/+3
|
* Update to the 20110604 snapshot of GCC 4.7.0. Upstream now only providesGerald Pfeifer2011-06-062-16/+6
| | | | | | | | | a single tarball and this update brings a number of changes around that. Enable c, c++, and fortran (and only these) explicitly by default, and Java when/where available. [1] Reported by: Scott Allendorf <scott-allendorf@uiowa.edu> [1]
* Update to the 20110521 snapshot of GCC 4.7.0.Gerald Pfeifer2011-05-222-11/+11
|
* Update to the 20110514 snapshot of GCC 4.7.0.Gerald Pfeifer2011-05-162-11/+11
|
* Update to the 20110507 snapshot of GCC 4.7.0.Gerald Pfeifer2011-05-082-11/+11
|
* Update to the 20110430 snapshot of GCC 4.7.0.Gerald Pfeifer2011-05-062-11/+11
|
* Update to the 20110423 snapshot of GCC 4.7.0.Gerald Pfeifer2011-04-272-15/+12
| | | | | | | Replace the, now dysfunctional, post-patch target with a configure option that marks this build of GCC as "FreeBSD Ports Collection". [1] Reported by: Bjoern Koenig <bkoenig@alpha-tierchen.de> [1]
* Update to the 20110416 alpha snapshot of GCC 4.7.0.Gerald Pfeifer2011-04-172-11/+11
|
* Update to the 20110409 alpha snapshot of GCC 4.6.0.Gerald Pfeifer2011-04-162-11/+11
|
* Update to the 20110326 snapshot of GCC 4.7.0.Gerald Pfeifer2011-03-272-11/+11
| | | | | | On SPARC the target CPU type may now be set via -mcpu instead of being limited to the hardcoded equivalent of -mcpu=ultrasparc and TLS support is enabled if available.
* Add support for 32-bit powerpc.Gerald Pfeifer2011-03-231-2/+2
| | | | Submitted by: andreast
* Welcome the GCC 4.7 series which at this point is just a few days afterGerald Pfeifer2011-03-214-17/+17
| | | | | | | the GCC 4.6 branch has been carved, thus quite similar to that. Over the next months this will see a lot of active and partially invasive development. Accordingly this port is for early exposure and not yet production use.
* Update to the 20110318 snapshot of GCC 4.6.0.Gerald Pfeifer2011-03-192-11/+13
| | | | | | Make the full-regression-test target conditional on MAINTAINER_MODE. [1] Reported by: andreast, marius [1]
* Update to the 20110312 snapshot of GCC 4.6.0. On the way, remove theGerald Pfeifer2011-03-192-19/+12
| | | | | LTO option. This is now the default, without any drawbacks or extra dependencies.
* Update to the 20110305 snapshot of GCC 4.6.0. Remove the dependencyGerald Pfeifer2011-03-142-14/+12
| | | | | on libelf when building with link-time optimization (LTO) support which is not needed any more.
* Update to the 20110226 snapshot of GCC 4.6.0. The change for codeGerald Pfeifer2011-02-273-36/+11
| | | | | generation on i386 to default to i486 on FreeBSD 6 and above is now upstream, too, so we can shed our specific patch.
* Update to the 20110219 snapshot of GCC 4.6.0.Gerald Pfeifer2011-02-231-0/+25
| | | | | | | | | | | | | This addresses the pollution of common namespace by share/python/aotcompile.py and share/python/classfile.py which are now saved in version-specific directories. By means of an extra patch default code generation on i386 now defaults to i486 on FreeBSD 6 and above. [1] Submitted by: tijl [1] Reported by: Yuri Karaban <tech@askold.net> [1] PR: 154364 [1]
* Update to the 20110219 snapshot of GCC 4.6.0.Gerald Pfeifer2011-02-233-14/+14
| | | | | | | | | | | | | This addresses the pollution of common namespace by share/python/aotcompile.py and share/python/classfile.py which now go into version-specific directories. By means of an extra patch default code generation on i386 defaults to i486 on FreeBSD 6 and above. [1] Submitted by: tijl [1] Reported by: Yuri Karaban <tech@askold.net> [1] PR: 154364 [1]
* Update to the 20110212 snapshot of GCC 4.6.0.Gerald Pfeifer2011-02-152-11/+11
|
* Omit the libquadmath info file on sparc64 and ia64.Gerald Pfeifer2011-02-101-2/+4
| | | | Reported by: Anton Shterenlikht <mexas@bristol.ac.uk>
* Update to the 20110205 snapshot of GCC 4.6.0. This finally addressesGerald Pfeifer2011-02-062-14/+11
| | | | | | | | a long standing issue around libgcj that's been hitting us and allows me to remove the stop gap I had put in place years ago. [1] PR: 81788 [1] Feature safe: yes
* Update to the 20110129 snapshot of GCC 4.6.0.Gerald Pfeifer2011-01-302-11/+11
| | | | Feature safe: yes
* Update to the 20110122 snapshot of GCC 4.6.0. Among others, thisGerald Pfeifer2011-01-242-11/+11
| | | | | | | improves GOMP support on FreeBSD with a patch of mine to resolve linking issues. Feature safe: yes
* Update to the 20110115 snapshot of GCC 4.6.0.Gerald Pfeifer2011-01-172-13/+13
| | | | | | Provide more background on the need to use --disable-rpath as a workaround. Feature safe: yes
* Update to the 20110108 snapshot of GCC 4.6.0.Gerald Pfeifer2011-01-152-11/+11
| | | | Feature safe: yes
* Update to the 20110101 snapshot of GCC 4.6.0.Gerald Pfeifer2011-01-022-11/+11
|
* Update to the 20101225 snapshot of GCC 4.6.0. This addresses theGerald Pfeifer2010-12-273-14/+13
| | | | | original pollution of include file namespace around libquadmath and adds a GNU info file for libquadmath.
* Update to the 20101127 snapshot of GCC 4.6.0.Gerald Pfeifer2010-11-292-11/+11
|
* Update to the 20101120 snapshot of GCC 4.6.0. This brings libquadmathGerald Pfeifer2010-11-223-11/+13
| | | | | | (better support for 128 bit floating point types, which for now poisons global include file namespace though this won't be an issue before GCC 4.7 and I have reported it upstream).
* Update to the 20101113 snapshot of GCC 4.6.0.Gerald Pfeifer2010-11-152-11/+11
|
* Update to the 20101106 snapshot of GCC 4.6.0.Gerald Pfeifer2010-11-072-11/+11
|
* Update to the 20101030 snapshot of GCC 4.6.0.Gerald Pfeifer2010-10-312-16/+11
| | | | Look ma', no more MD5 distinfo.
* Update to the 20101023 snapshot of GCC 4.6.0. This removes the gccbugGerald Pfeifer2010-10-243-17/+16
| | | | script which had allowed submitting bugs like send-pr in FreeBSD.
* Update to the 20101016 snapshot of GCC 4.6.0.Gerald Pfeifer2010-10-172-16/+16
|
* Update to the 20101009 snapshot of GCC 4.6.0.Gerald Pfeifer2010-10-112-16/+16
|
* Replace the explicit build dependency on devel/binutils by USE_BINUTILS.Gerald Pfeifer2010-09-281-1/+1
| | | | Submitted by: bf
* Fix a small whitespace issue in OPTIONS.Gerald Pfeifer2010-09-271-1/+1
|
* Update to the 20100925 snapshot of GCC 4.6.0.Gerald Pfeifer2010-09-262-16/+16
|
* Update to the 20100918 snapshot of GCC 4.6.0 which now defaults to i486Gerald Pfeifer2010-09-192-16/+16
| | | | architecture support on i386 thanks to a patch by tijl.
* Update to the 20100911 snapshot of GCC 4.6.0. This brings one fix forGerald Pfeifer2010-09-123-17/+36
| | | | | FreeBSD/ia64 that I made upstream and together with another, which is a local patch for now, ia64 can become part of ONLY_FOR_ARCHS.
* Update to the 20100904 snapshot of GCC 4.6.0. This brings first supportGerald Pfeifer2010-09-062-17/+16
| | | | for _float128 on i386 and proper symbol versioning for libgcc.
* Similar to lang/gcc45, add a new option LTO that enables GCC's newGerald Pfeifer2010-09-051-1/+11
| | | | | | | | | | | | link-time optimization framework and optimizations. GCC 4.6 has been seeing a lot of work since GCC 4.5, but we are still keeping this disable by default for now Using LTO adds libelf as a new dependency and in either case the environment does not have an influence any more. Bumping PORTREVISION since someone who had libelf on his system previously to this change would get LTO enabled automatically and then run into problems if libelf was removed.
* Update to the 20100828 snapshot of GCC 4.6.0.Gerald Pfeifer2010-08-302-16/+16
|
* Update to the 20100821 snapshot of GCC 4.6.0. This now really does notGerald Pfeifer2010-08-232-16/+16
| | | | | | | | work with the ancient version of GNU as that is part of FreeBSD 8.1 and earlier (and likely later), so where the dependency this port has on devel/binutils was a strong recommendation until now and necessary to leverage new processor features and the -mtune=native option when running on those newer processors, it is now strictly needed on x86-64 at least.
* Update to the 20100814 snapshot of GCC 4.6.0.Gerald Pfeifer2010-08-212-17/+17
| | | | | | Replace NOT_FOR_ARCHS by ONLY_FOR_ARCHS. [1] Suggested by: linimon
* Update to the 20100807 snapshot of GCC 4.6.0.Gerald Pfeifer2010-08-082-16/+16
|
* Update to the 20100724 snapshot of GCC 4.6.0.Gerald Pfeifer2010-07-252-16/+16
|
* Update to the 20100717 snapshot of GCC 4.6.0.Gerald Pfeifer2010-07-192-16/+16
| | | | Feature safe: yes
* Update to the 20100710 snapshot of GCC 4.6.0.Gerald Pfeifer2010-07-112-16/+16
| | | | Feature safe: yes
* Update to the 20100703 snapshot of GCC 4.6.0.Gerald Pfeifer2010-07-052-16/+16
| | | | Feature safe: yes
* Update to the 20100626 snapshot of GCC 4.6.0.Gerald Pfeifer2010-06-272-16/+18
| | | | | | | Make Java support an OPTION (JAVA) so it is easier to deselect. [1] Suggested by: doubg [1] Feature safe: yes
* Simplify full-regression-test.Gerald Pfeifer2010-06-271-1/+1
| | | | Feature safe: yes
* Update to the 20100619 snapshot of GCC 4.6.0.Gerald Pfeifer2010-06-202-16/+16
| | | | Feature safe: yes
* Update to the 20100612 snapshot of GCC 4.6.0.Gerald Pfeifer2010-06-132-17/+16
|
* Chase mpfr library and bump PORTREVISION.Alex Dupre2010-06-111-1/+2
|
* Update to the 20100605 snapshot of GCC 4.6.0.Gerald Pfeifer2010-06-062-16/+16
|
* Update to the 20100529 snapshot of GCC 4.6.0.Gerald Pfeifer2010-05-302-16/+16
|
* Update to the 20100515 snapshot of GCC 4.6.0.Gerald Pfeifer2010-05-222-16/+16
|
* Adjust references to the GCC version to refer to 4.6.Gerald Pfeifer2010-05-082-5/+5
| | | | Reported by: Eitan Adler <eitanadlerlist@gmail.com>
* Update to the 20100501 snapshot of GCC 4.6.0.Gerald Pfeifer2010-05-022-16/+16
|
* Complete the creation of this port by adjusting it from GCC 4.5 to theGerald Pfeifer2010-04-263-17/+17
| | | | | 20100424 snapshot of GCC 4.6.0, which is a very, very early version of said release which likely won't happen before 2011.
* Update to the 20100422 snapshot of GCC 4.5.1.Gerald Pfeifer2010-04-252-17/+16
|
* Switch to use newer GMP version.Alex Dupre2010-04-191-1/+2
| | | | | | PR: ports/144487 Submitted by: ale Approved by: portmgr (-exp run by erwin)
* Update to the 20100415 snapshot of GCC 4.5.1. This is basically theGerald Pfeifer2010-04-192-16/+16
| | | | | official release of GCC 4.5.0, thought that one may still have some kinks and I recommend staying with GCC 4.4 for production use.
* Update to the 20100401 snapshot of GCC 4.5.0.Gerald Pfeifer2010-04-022-16/+16
|
* Update to the 20100318 snapshot of GCC 4.5.0.Gerald Pfeifer2010-03-192-16/+16
|
* Update to the 20100311 snapshot of GCC 4.5.0.Gerald Pfeifer2010-03-132-16/+16
|
* Update to the 20100304 snapshot of GCC 4.5.0.Gerald Pfeifer2010-03-082-16/+16
|
* Update to the 20100225 snapshot of GCC 4.5.0.Gerald Pfeifer2010-02-272-16/+16
| | | | Feature safe: yes
* Update to the 20100218 snapshot of GCC 4.5.0.Gerald Pfeifer2010-02-192-16/+16
| | | | Feature safe: yes
* Update to the 20100211 snapshot of GCC 4.5.0.Gerald Pfeifer2010-02-142-16/+16
|
* Update to the 20100204 snapshot of GCC 4.5.0.Gerald Pfeifer2010-02-062-16/+16
|
* Update to the 20100128 snapshot of GCC 4.5.0.Gerald Pfeifer2010-02-022-16/+16
|
* Also build Java on amd64.Gerald Pfeifer2010-01-221-1/+1
| | | | Submitted by: Andreas Tobler <andreast@fgznet.ch>
* Update to the 20100114 snapshot of GCC 4.5.0.Gerald Pfeifer2010-01-172-16/+17
| | | | | Since we already require devel/binutils for the assembler, also enforce use of the linker from there.
* Update to the 20100107 snapshot of GCC 4.5.0.Gerald Pfeifer2010-01-082-16/+16
|
* Update to the 20091231 snapshot of GCC 4.5.0 which brings some keyGerald Pfeifer2010-01-022-25/+16
| | | | | | | improvements to libffi (Java), especially on amd64. Remove the WITH_JAVA_AWT knob which really has not been used a lot, if at all.
* Update to the 20091224 snapshot of GCC 4.5.0. On the way, sort pkg-plistGerald Pfeifer2009-12-283-23/+23
| | | | a bit differently.
* Update to the 20091217 snapshot of GCC 4.5.0.Gerald Pfeifer2009-12-192-17/+16
|
* Use current GNU binutils from ports (devel/binutils) instead of theGerald Pfeifer2009-12-011-5/+9
| | | | | | | | | | | system tools. The latter are half a decade old and fail to properly support modern CPUs and their standard features such as SSE or AVX in the case of AMD64/Intel64 which means that they even break when using a simple -march=native. On the way, sort CONFIGURE_ARGS. PR: 140995, 136607
* Update to the 20091126 snapshot of GCC 4.5.0. Among others this failsGerald Pfeifer2009-11-302-16/+16
| | | | | to build emulators/wine due to problems with debuginfo, but then this is more of an experimental port than anything, so always use with care.
* With lang/gcc295 gone (and not building for most of the last year), we canGerald Pfeifer2009-11-251-8/+0
| | | | | now remove the check for a gcc295 binary that might cause build failure in libgcj.
* Update to the 20091119 snapshot of GCC 4.5.0.Gerald Pfeifer2009-11-202-16/+16
|
* No longer download Objective-C related files which we don't actually use.Gerald Pfeifer2009-11-203-15/+6
| | | | | | | | Minor style changes. Adjust the ports description to the new style I am using for the various gcc ports and remove an obsolete note on memory consumption when building libgcj (the Java library).
* Update to the 20091112 snapshot of GCC 4.5.0.Gerald Pfeifer2009-11-132-19/+19
|
* Update to the 20091105 snapshot of GCC 4.5.0.Gerald Pfeifer2009-11-072-19/+19
|
* Update to the 20091029 snapshot of GCC 4.5.0.Gerald Pfeifer2009-10-312-19/+19
|
* Update to the 20091022 snapshot of GCC 4.5.0.Gerald Pfeifer2009-10-252-19/+19
|
* Update to the 20091015 snapshot of GCC 4.5.0.Gerald Pfeifer2009-10-172-19/+19
|
* Update to the 20091008 snapshot of GCC 4.5.0. Add math/mpc as aGerald Pfeifer2009-10-112-20/+21
| | | | | dependency going forward; it will become mandatory in the next weeks and for the final GCC 4.5.0 release.
* Update to the 20091001 snapshot of GCC 4.5.0.Gerald Pfeifer2009-10-032-19/+19
|
* For GCC 4.5 libgcj has been broken up such compilation no longer requiresGerald Pfeifer2009-09-271-9/+0
| | | | | | | more than half a GB of memory. Accordingly, we can now remove the build- time test for that from pre-everything. Feature safe: yes
* Update to the 20090924 snapshot of GCC 4.5.0.Gerald Pfeifer2009-09-262-19/+19
| | | | Feature safe: yes
* Update to the 20090917 snapshot of GCC 4.5.0.Gerald Pfeifer2009-09-192-19/+19
| | | | Feature safe: yes
* Update to the 20090910 snapshot of GCC 4.5.0.Gerald Pfeifer2009-09-112-19/+19
|
* Update to the 20090827 snapshot of GCC 4.5.0.Gerald Pfeifer2009-09-042-19/+19
|
* Update to the 20090820 snapshot of GCC 4.5.0.Gerald Pfeifer2009-08-222-19/+19
|
* Update to the 20090813 snapshot of GCC 4.5.0.Gerald Pfeifer2009-08-142-19/+19
|
* Update to the 20090806 snapshot of GCC 4.5.0.Gerald Pfeifer2009-08-072-19/+19
|
* Update to the 20090730 snapshot of GCC 4.5.0.Gerald Pfeifer2009-08-012-19/+19
|
* Update to the 20090723 snapshot of GCC 4.5.0.Gerald Pfeifer2009-07-252-19/+19
|
* Update to the 20090716 snapshot of GCC 4.5.0.Gerald Pfeifer2009-07-182-19/+19
|
* Update to the 20090709 snapshot of GCC 4.5.0.Gerald Pfeifer2009-07-122-19/+19
|
* Update to the 20090625 snapshot of GCC 4.5.0.Gerald Pfeifer2009-06-272-19/+19
|
* The new libffi man pages depend on Java, thus are not available on x86-64.Gerald Pfeifer2009-06-221-3/+3
| | | | Reported by: QAT
* Update to the 20090618 snapshot of GCC 4.5.0. Tweak pkg-descr "footer".Gerald Pfeifer2009-06-204-26/+32
| | | | | | | | | | | | Add hack for non-default LOCALBASE until the ports infrastructure has been fixed. [1] The new share/libstdc++/python/libstdcxx has now moved to a version specific location based on an upstream report of mine. And there are now three new ffi related man pages. Dedicated to:
* Update to the 20090604 snapshot of GCC 4.5.0.Gerald Pfeifer2009-06-062-19/+19
|
* Update to the 20090528 snapshot of GCC 4.5.0.Gerald Pfeifer2009-05-303-23/+30
| | | | | | | | | | Move the snapshot date from PORTREVISION to being a part of PORTVERSION to allow for PORTREVISION bumps. Simplify pre-everything and adjust PLIST_SUB accordingly. Move VERSIONSTRING down to pacify portlint after all those years and extract it from PORTVERSION, too.
* Update to the 20090521 snapshot of GCC 4.5.0.Gerald Pfeifer2009-05-242-19/+19
|
* Make the determination of SUFFIX more general and the one ofGerald Pfeifer2009-05-191-2/+2
| | | | CONFIGURE_SCRIPT more robust.
* Update to the 20090514 snapshot of GCC 4.5.0.Gerald Pfeifer2009-05-182-24/+24
| | | | | | | | | Extract SUFFIX from PORTVERSION. Use SUFFIX for TARGLIB (and thus for the library path used by this port). Also use SUFFIX for the libexec directory instead of the full port version and flatten the directory structure and simplify the logic along the way. Tinder-tested by: itetcu@
* - Chase math/libgmp4 shlib bumpPav Lucistnik2009-05-141-1/+1
| | | | | Reported by: pointyhat Pointy hat to: ale
* Update to the 20090507 snapshot of GCC 4.5.0.Gerald Pfeifer2009-05-102-19/+19
|