Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2004-05-09 | add mipspro-ucode to _COMPILERS which was missed the first time. | grant | 1 | -2/+2 | |
2004-05-08 | remove a word which shouldn't be there. | grant | 1 | -3/+3 | |
2004-05-08 | correctly preserve the user-specified order of pseudo-compilers. patch | grant | 1 | -6/+5 | |
from jlam@. | |||||
2004-05-08 | Rename NO_CONFIGURE_INFODIR to CONFIGURE_HAS_INFODIR (which defaults to | reed | 1 | -2/+3 | |
"yes"). So any packages that have old GNU configure script that does not support --infodir option (while using INFO_FILES) can set CONFIGURE_HAS_INFODIR=NO. This was suggested by agc@ as a clearer definition. | |||||
2004-05-08 | _PKGSRC_COMPILER needs to contain the real compiler first, then | grant | 1 | -2/+2 | |
pseudo-compilers such as ccache and distcc. fixes problem where lang/gcc{,3} would be incorrectly pulled in when it should not be. | |||||
2004-05-08 | implement {NOT,ONLY}_FOR_COMPILER so that packages can be marked as | grant | 1 | -5/+39 | |
requiring a specific compiler (most often those which use gcc-specific hacks^wfeatures). this allows users to define PKGSRC_COMPILER to multiple real compilers in order to implement a compiler preference. for example, PKGSRC_COMPILER="sunpro gcc" will use sunpro as the default compiler, and fall back to gcc where a package is marked NOT_FOR_COMPILER=sunpro or ONLY_FOR_COMPILER=gcc. | |||||
2004-05-08 | If using GNU_CONFIGURE then set --infodir to ${PREFIX}/${INFO_DIR}. | reed | 1 | -1/+4 | |
I have used this successfully to install over 300 info files using INFO_DIR=share/info. Also add new variable called NO_CONFIGURE_INFODIR (as suggested by Greg Woods) because some autoconf-style configure scripts don't know --infodir. (The alternative is to use HAS_CONFIGURE and add the needed CONFIGURE_ARGS.) Please note that the info tool may not find custom INFO_DIR unless it is configure to know it. (I will update gtexinfo for this, but if using native info you are on your own if you customize this.) | |||||
2004-05-06 | Finally set _COMPILER_LD_FLAG. | jschauma | 1 | -1/+4 | |
(Not having this set caused various rpath related problems, as the compiler was passed ' -rpath,/path' instead of '-Wl,-rpath,/path', leading to a rpath of ",path", which of course wouldn't work.) | |||||
2004-05-06 | Use system maximum command line length | adam | 1 | -6/+5 | |
2004-05-05 | Make sure buildlink3 file exists before trying to use it. | xtraeme | 1 | -3/+7 | |
2004-05-05 | Use numeric uid/gid instead of Administrator/+Administrators, as native | tv | 3 | -6/+6 | |
language non-English versions of Windows name these accounts differently. | |||||
2004-05-05 | gcc can use -mabi=${ABI}, if ABI is set (for example on Irix). | jschauma | 1 | -1/+8 | |
(Includes ugly hack for ABI-inconsistency. See also PR pkg/22571.) | |||||
2004-05-04 | No longer used. | snj | 1 | -87/+0 | |
2004-05-04 | /usr/bin/cpp on darwin is a wrapper script that forces the | danw | 2 | -4/+7 | |
-traditional flag; you need to use "gcc -E" to get sane behavior. Override sys.mk's definition of CPP in defs.Darwin.mk, and don't re-override CPP in gcc.mk if ${OPSYS} == Darwin. | |||||
2004-05-03 | Unused. | wiz | 1 | -156/+0 | |
2004-05-03 | Unused. | wiz | 1 | -27/+0 | |
2004-05-02 | Add buildlink3 bits. | xtraeme | 1 | -11/+17 | |
2004-05-02 | Rename GRUB_ISO9660 and GRUB_UFS2 to GRUB_USE_ISO9660 and GRUB_USE_UFS2 | xtraeme | 1 | -1/+11 | |
respectively, and document them in bsd.pkg.defaults.mk. | |||||
2004-05-02 | Rename ENABLE_CACHE option to JWHOIS_ENABLE_CACHE, and document it in | xtraeme | 1 | -1/+6 | |
the defaults file. | |||||
2004-04-30 | Add an explicit DEPENDS on xpkgwedge-1.10 if USE_X11BASE is defined | tv | 1 | -1/+6 | |
(as 1.9 is not good enough). | |||||
2004-04-30 | No code change, but just indent two lines. | reed | 1 | -3/+3 | |
2004-04-30 | Use the shell's builtin echo instead of /bin/echo. | reed | 1 | -2/+2 | |
2004-04-29 | On older IRIX systems, /usr/bin/awk is actually less functional than | jschauma | 1 | -2/+2 | |
/usr/bin/nawk. On newer IRIX systems, the former is a symlink to the latter. So just always use nawk. Pointed out by Georg Schwarz. | |||||
2004-04-29 | add missing -r option that the usage claimed existed. Noted by garbled@ | dmcmahill | 1 | -2/+2 | |
2004-04-28 | * Bl3ify. | uebayasi | 1 | -7/+1 | |
* Enable pkgviews installation. * Obsolete PRIV_CONF_DIR and follow PKG_SYSCONFDIR, the standard. | |||||
2004-04-28 | Add Autoconf overrides that prevent recognition of <poll.h> or poll(2). | tv | 1 | -1/+7 | |
2004-04-27 | Add a new install macro INSTALL_LIB for use when installing libraries | tv | 1 | -1/+7 | |
(mainly intended for shlib use, but for homeful use on all libraries so that currently static libs can be "provisioned" for future shlib use). | |||||
2004-04-27 | if we need the devel/flex package and USE_BUILDLINK3 is set, then | dmcmahill | 1 | -1/+5 | |
pull in devel/flex/buildlink3.mk instead of just listing a BUILD_DEPENDS. This is needed because flex installs a library. | |||||
2004-04-27 | Move the inclusion of tools.mk ahead of bsd.buildlink3.mk so that tools.mk | jlam | 1 | -3/+3 | |
can include buildlink3.mk files. This change also causes work/.tools/bin to appear after work/.buildlink/bin in the PATH, but we never relied on this behaviour, so this side-effect should have no impact. | |||||
2004-04-27 | Add ECHO_N to the list of substituted variables in [DE]INSTALL. | tv | 2 | -2/+4 | |
2004-04-27 | Indent properly. | agc | 1 | -5/+5 | |
2004-04-27 | Do the same USE_USERADD/USE_GROUPADD fix as done for Interix: use the | tv | 5 | -20/+20 | |
construct "DEPENDS+=${USE_USERADD:D${_USER_DEPENDS}}" to ensure that the conditional is not expanded until after USE_*ADD is actually defined. | |||||
2004-04-27 | Add Interix hack: if user and group are the same name, trip up with a | tv | 1 | -1/+15 | |
BROKEN message telling the user that they must be different. | |||||
2004-04-27 | Factor out dependency on "user" package to its own variable. | tv | 1 | -3/+4 | |
2004-04-27 | It's USE_GROUPADD, not USE_USERGROUP. | tv | 1 | -2/+2 | |
2004-04-27 | Use ${USE_USERADD:D...} as .if may not catch it in time. | tv | 1 | -4/+3 | |
2004-04-27 | Interix now has user(8) emulation; use it. | tv | 1 | -5/+8 | |
2004-04-26 | Revert mistaken commit. | tv | 1 | -1/+1 | |
2004-04-26 | PKGDIRMODE must be set *after* including defs.*. | tv | 1 | -2/+2 | |
2004-04-26 | Define BLNK_RECMETHOD.${_pkg_} not only for full dependency but also | minskim | 1 | -2/+3 | |
for build dependency. Also fix a related pasto. This fixes a malformed conditional error that occurs when a package in build dependency has BUILDLINK_RECOMMENDED.*. OK'ed by jmmv@. | |||||
2004-04-26 | Use a table instead of cascading if..else to dispatch to the correct | jlam | 1 | -11/+7 | |
buildlink3.mk for inclusion. Remove reference to BUILDLINK_PREFIX.db2 which doesn't exist (fixed by using the table). | |||||
2004-04-26 | Allow perl-thread to also be acceptable when USE_PERL5 is defined. | jlam | 1 | -2/+2 | |
2004-04-26 | ROOT_USER is parameterized, so use it in human-readable printed messages | tv | 1 | -4/+4 | |
as well. | |||||
2004-04-25 | Make sure PKGDIRMODE is always set in bsd.prefs.mk so it can be checked | tv | 2 | -3/+3 | |
in lang/perl58/Makefile. (It had been set previously only in bsd.pkg.mk.) | |||||
2004-04-25 | Accept /usr/include/db.h as a valid db-1.85 header file only when | minskim | 1 | -3/+11 | |
"^\#define.*HASHVERSION.*2$" is found. | |||||
2004-04-25 | PERL_REQD = 5.8.3nb1. | tv | 1 | -2/+2 | |
2004-04-24 | Don't treat ${BUILDLINK_DIR} like a local directory in the "${WRKSRC} == | jlam | 2 | -4/+10 | |
${WRKDIR}" case when converting references to local libtool archives into the full paths. | |||||
2004-04-24 | Create links to .pc files in BUILDLINK_DIR when building a pkgviews | minskim | 1 | -2/+2 | |
package. OK'ed by jmmv@. | |||||
2004-04-24 | flow.dl.sourceforge.net has been unreachable for a while now, due to | grant | 1 | -2/+2 | |
what appears to be a routing loop. comment it out for the moment. | |||||
2004-04-24 | add a -s | --specific-pkgs option which will set SPECIFIC_PKGS=1 for the | dmcmahill | 1 | -3/+16 | |
build. Suggested by Christoph Badura. |