summaryrefslogtreecommitdiff
path: root/lang/gcc
AgeCommit message (Collapse)AuthorFilesLines
2004-03-25When building devel/gmake as a build dependency, build it without localejlam1-1/+2
support. This makes it easier to "bootstrap" the installation of a pkgsrc compiler without a lot of additional indirect build dependencies on gettext, libiconv, libtool, etc.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-5/+4
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-5/+8
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-24Buildlink the gcc libraries and headers early so that fake-la can findjlam1-2/+2
them.
2004-02-19gcc 2.95 does not support the x86_64 architecture.kristerw1-2/+2
2004-02-05bsd.compiler.mk no longer adds dependencies or includes buildlink*.mk filesjlam1-2/+5
if it's being included by bsd.prefs.mk, so we can safely move the BUILDLINK_DEPENDS line to its usual location.
2004-02-05List the correct directories for finding GCC libraries so that they willjlam1-1/+3
be added automatically to library and run-time library search paths.
2004-02-02Don't rely on _GCCARCHSUBDIR.jlam1-8/+8
2004-02-01Add a buildlink3.mk file for use by bsd.compiler.mk. Note that we alwaysjlam1-0/+22
add the dependency regardless of the depth.
2004-02-01Use _GCC_REQD instead of GCC_REQD since we just want a single value.jlam1-2/+4
2004-02-01Changes to support new compiler selection framework.jlam1-6/+10
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-12-18Apply patch from Harry Waddell in PR 23289 to chill in gcc 2.95.3, toben3-3/+19
fix a build error when using gcc 3. Also bumps PKGREVISION.
2003-11-25Make this patch be more selective so that this package will workdmcmahill2-11/+32
on NetBSD/alpha versions 1.6 and newer. Previously, this package only worked on pre-1.6. Fixes problems noted in recent bulk builds.
2003-09-12tidy up handling of LDFLAGS wrt USE_GCC_SHLIB a little.grant1-7/+1
2003-09-12start of improved compiler handling, mostly derived from the existinggrant1-17/+3
gcc buildlink2.mk files and splitting the non-buildlink2.mk bits out into compiler.mk. this allows USE_GCC2 and USE_GCC3 to work with non-buildlink2 packages again.
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-08-08include major version number in COMMENT for distinction, some minorgrant1-2/+2
COMMENT tweaks.
2003-07-23fix GCC_VERSION so GCC_ARCHDIR is correctly set.grant1-9/+8
re-arrange gcc/Makefile a bit to more closely resemble gcc3/Makefile.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13oops, we still want the mk files for non-pkgsrc purposes. unbumpgrant3-4/+12
PKGREVISIONs.
2003-07-13greatly simplify the handling of pkgsrc gcc, and eliminate a bug whichgrant4-49/+11
has allowed these packages to work :) set CC, CXX, CPP and F77 in gcc{,3}/buildlink2.mk. you now only need to define USE_GCC2 or USE_GCC3 to use the pkgsrc gcc of your choice. the share/examples/gcc/mk.conf and gcc3/mk.conf files are no longer installed. bump PKGREVISIONs.
2003-07-12Add some patches against basesrc gcc implementing the "if-exists"jtb4-3/+527
function in the specs file. Enables the linker to pick up crti.o and crtn.o if they exist.
2003-07-06Ooops I missed this INSTALL script while doing the conversionseb1-26/+0
to USE_NEW_TEXINFO (I should have added it to INSTALL_TEMPLATES). Anyway as info files are now registered in a package specific info directory file I guess it can be removed.
2003-07-06Reorder a bit so pkglint is happier.seb1-4/+5
2003-07-06No need anymore to specify --infodir=... to configure.seb1-6/+3
Factorize some install commands.
2003-07-06set GCC_VERSION for use in GCC_ARCHDIR. remove a superfluous commentgrant1-2/+3
about GCC_PREFIX. XXX why is GCC_PREFIX ${PREFIX}/gcc3 ?
2003-07-04Convert to USE_NEW_TEXINFO.seb6-141/+7
Remove or trim "info related" patch files. Install info files in package specific directory. Hence the PLIST files are now nearly empty... This should finish making these two packages really non-conflicting. Bump PKGREVISION.
2003-07-04Install example mk.conf in package specific directory.seb4-14/+17
Adjust and make uniform various substitution variables and MESSAGE files. No PKGREVISION bump right now.
2003-06-24Make patches f,g,h work correctly.jmc4-13/+13
2003-06-05add -L${PREFIX}/gcc-2.95.3/lib to LDFLAGS if USE_GCC_SHLIB is defined,grant1-2/+2
so packages built with this can find shared libstdc++. s/-R/${RPATH_FLAG}/ while I'm here.
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-05-29s/USE_CXX/USE_GCC_SHLIB/ - there are more shared libraries than justgrant1-5/+5
libstdc++ in gcc3. when defined, USE_GCC_SHLIB ensures that the correct rpath is passed to the linker, and a full dependency on the compiler package is registered. packages which define USE_GCC_SHLIB should not include mk/gcc.buildlink2.mk (or gcc{,3}/buildlink2.mk) as it is handled automatically.
2003-05-28grammar fix in commentgrant1-2/+2
2003-05-28remove redundant commentgrant1-2/+1
2003-05-27on Solaris, install into ${PREFIX}/${PKGNAME_NOREV} as per othergrant4-338/+8
platforms, and remove the related Solaris MESSAGE and PLIST. prevents gcc from always searching ${PREFIX}/{include,lib} for include files and libraries which breaks buildlink2, preventing some packages from being built, depending on what is already installed. noted by Mark Davies and others, and address my PR pkg/21122. bump PKGREVISION. note: if you update to this version, be sure to rebuild libtool-base since the path to crti.o, crtbegin.o, etc is hardcoded in libtool at compile-time.
2003-05-27add pulling in buildlink includes/libraries from lang/gcc, or gcc3grant1-4/+4
when USE_GCC3 is defined. ok'd by jlam@.
2003-05-26Remove build-dependency on bison by applying patch from Todd Vierlingjschauma1-5/+2
provided in PR pkg/21227, which applies for lang/gcc as well as lang/gcc3.
2003-05-24use ${INSTALL_INFO} rather than install-info, so that we don't accidentlyjschauma4-1/+70
use an old or non-compatible version that may be in the base system. This makes this package install flawlessly under Linux.
2003-05-02Move the sample mk.conf file to share/examples/gcc/mk.conf, instead ofjmmv4-11/+16
installing in in etc/ (and not honouring PKG_SYSCONFDIR). Bump PKGREVISION.
2003-04-14only assume GNU toolchain on Linux and BSD and use try to use sanegrant1-7/+3
defaults for "unknown" platforms. drop unneeded parens, whitespace police. (the last update was broken, oops)
2003-04-14use the bootstrap target unless we know we are using gcc (either bygrant1-8/+23
platform or by name). use
2003-04-10use `gcc -dumpversion' instead of `gcc --version', so this worksgrant1-2/+2
with both gcc2 and gcc3. as suggested by Berndt Wulf on tech-pkg.
2003-03-28Remove unnecessary empty lines.wiz1-1/+0
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-2/+2
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2003-01-11Mark this NOT_FOR_PLATFORM Darwin.grant1-1/+3
2002-12-12Check if $CC is defined first, next comparison breaks otherwise.salo1-2/+2
2002-12-05use automatic MESSAGE handling.grant1-2/+1
2002-10-26GNU make with its support of micro- and nano-second timestamp and stat(2)seb1-14/+16
related information keeps pestering me while building this package on Solaris. So... - Replace WRKDIR and SRCDIR hack with CONFIGURE_DIRS and BUILD_DIRS tuning: automake-*-override can now properly do their job. - Prevent gperf invocation with the right touch command in pre-configure target. - Create BUILD_DIRS in pre-configure target.
2002-10-22Unused.jlam1-25/+0