summaryrefslogtreecommitdiff
path: root/lang/gcc/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2009-09-20corrected HOMEPAGE URL (old URL no longer exists)schwarz1-2/+2
2009-06-14Remove @dirrm related logic.joerg1-4/+1
2008-02-01gcc-2 needs to be built with gcc3 on netbsd-4. From Aleksej Saushev.tnn1-1/+6
2007-06-12Can't work on DragonFly due to missing TLS support.joerg1-2/+2
2006-09-27Set MAKE_ENV+=SHELL=${CONFIG_SHELL} for all gcc packages. Fixes SHELL setabs1-1/+2
to non sh compatible shell in environment. Thanks to Georg Schwarz.
2006-03-20* Nuke all references to and definitions of INFO_DIR in package Makefilesjlam1-5/+6
and replace with appropriate references to PKGINFODIR instead. * Properly account for split info files during installation. * Move info file listings directly into the package PLISTs. This fixes info-file-related PLIST problems.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-3/+3
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-5/+5
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-09NOT_FOR_PLATFORM Interix.tv1-2/+2
2005-06-24Prevent paths to the build directories from being included in the package.kristerw1-2/+5
Bump PKGREVISION.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-3/+3
Suggested by Roland Illig, ok'd by various.
2004-05-02Convert to buildlink3.snj1-2/+2
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-02-19gcc 2.95 does not support the x86_64 architecture.kristerw1-2/+2
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, toben1-2/+2
fix a build error when using gcc 3. Also bumps PKGREVISION.
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. unbumpgrant1-2/+2
PKGREVISIONs.
2003-07-13greatly simplify the handling of pkgsrc gcc, and eliminate a bug whichgrant1-2/+2
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"jtb1-2/+2
function in the specs file. Enables the linker to pick up crti.o and crtn.o if they exist.
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.seb1-4/+5
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.seb1-6/+8
Adjust and make uniform various substitution variables and MESSAGE files. No PKGREVISION bump right now.
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-28remove redundant commentgrant1-2/+1
2003-05-27on Solaris, install into ${PREFIX}/${PKGNAME_NOREV} as per othergrant1-12/+7
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-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-02Move the sample mk.conf file to share/examples/gcc/mk.conf, instead ofjmmv1-5/+8
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-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-20Install ${PREFIX}/etc/${PKGNAME}.mk on SunOS, too. From pkg/18627 byjlam1-1/+2
Lubomir Sedlacik.
2002-09-27Use bsd.pkg.install.mk, correct the PLISTs to refer to ${PKGNAME}.mkjlam1-60/+60
(instead of hardcoding the version number), and general cleanups to the Makefile to make this package easier to maintain.
2002-09-27Use ${BASENAME} instead of "basename", and fix a typo.jlam1-5/+5
2002-09-09- pull in the last bit of changes to sync this up with the netbsd-1-6-RELEASEdmcmahill1-2/+2
gcc. - enable building shared libstdc++ - add a -R to LDFLAGS in Makefile.gcc to point to the shared libs this pkg installs
2002-08-12pull in most recent patches to gcc-2.95.3 from the netbsd-1-6dmcmahill1-1/+4
branch. Includes fixes for sparc, alpha, and others. Should help in keeping pkgsrc running on 1.5.* systems. The patches which mirror those in the main netbsd source tree have been all put into a single distribution patch file. This makes it much easier to maintain and easier to easily see which patches are specific to pkgsrc.