summaryrefslogtreecommitdiff
path: root/mk
AgeCommit message (Collapse)AuthorFilesLines
2004-05-10Fix typo.xtraeme1-2/+2
2004-05-09add mipspro-ucode to _COMPILERS which was missed the first time.grant1-2/+2
2004-05-08remove a word which shouldn't be there.grant1-3/+3
2004-05-08correctly preserve the user-specified order of pseudo-compilers. patchgrant1-6/+5
from jlam@.
2004-05-08Rename NO_CONFIGURE_INFODIR to CONFIGURE_HAS_INFODIR (which defaults toreed1-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, thengrant1-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-08implement {NOT,ONLY}_FOR_COMPILER so that packages can be marked asgrant1-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-08If using GNU_CONFIGURE then set --infodir to ${PREFIX}/${INFO_DIR}.reed1-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-06Finally set _COMPILER_LD_FLAG.jschauma1-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-06Use system maximum command line lengthadam1-6/+5
2004-05-05Make sure buildlink3 file exists before trying to use it.xtraeme1-3/+7
2004-05-05Use numeric uid/gid instead of Administrator/+Administrators, as nativetv3-6/+6
language non-English versions of Windows name these accounts differently.
2004-05-05gcc can use -mabi=${ABI}, if ABI is set (for example on Irix).jschauma1-1/+8
(Includes ugly hack for ABI-inconsistency. See also PR pkg/22571.)
2004-05-04No longer used.snj1-87/+0
2004-05-04/usr/bin/cpp on darwin is a wrapper script that forces thedanw2-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-03Unused.wiz1-156/+0
2004-05-03Unused.wiz1-27/+0
2004-05-02Add buildlink3 bits.xtraeme1-11/+17
2004-05-02Rename GRUB_ISO9660 and GRUB_UFS2 to GRUB_USE_ISO9660 and GRUB_USE_UFS2xtraeme1-1/+11
respectively, and document them in bsd.pkg.defaults.mk.
2004-05-02Rename ENABLE_CACHE option to JWHOIS_ENABLE_CACHE, and document it inxtraeme1-1/+6
the defaults file.
2004-04-30Add an explicit DEPENDS on xpkgwedge-1.10 if USE_X11BASE is definedtv1-1/+6
(as 1.9 is not good enough).
2004-04-30No code change, but just indent two lines.reed1-3/+3
2004-04-30Use the shell's builtin echo instead of /bin/echo.reed1-2/+2
2004-04-29On older IRIX systems, /usr/bin/awk is actually less functional thanjschauma1-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-29add missing -r option that the usage claimed existed. Noted by garbled@dmcmahill1-2/+2
2004-04-28* Bl3ify.uebayasi1-7/+1
* Enable pkgviews installation. * Obsolete PRIV_CONF_DIR and follow PKG_SYSCONFDIR, the standard.
2004-04-28Add Autoconf overrides that prevent recognition of <poll.h> or poll(2).tv1-1/+7
2004-04-27Add a new install macro INSTALL_LIB for use when installing librariestv1-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-27if we need the devel/flex package and USE_BUILDLINK3 is set, thendmcmahill1-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-27Move the inclusion of tools.mk ahead of bsd.buildlink3.mk so that tools.mkjlam1-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-27Add ECHO_N to the list of substituted variables in [DE]INSTALL.tv2-2/+4
2004-04-27Indent properly.agc1-5/+5
2004-04-27Do the same USE_USERADD/USE_GROUPADD fix as done for Interix: use thetv5-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-27Add Interix hack: if user and group are the same name, trip up with atv1-1/+15
BROKEN message telling the user that they must be different.
2004-04-27Factor out dependency on "user" package to its own variable.tv1-3/+4
2004-04-27It's USE_GROUPADD, not USE_USERGROUP.tv1-2/+2
2004-04-27Use ${USE_USERADD:D...} as .if may not catch it in time.tv1-4/+3
2004-04-27Interix now has user(8) emulation; use it.tv1-5/+8
2004-04-26Revert mistaken commit.tv1-1/+1
2004-04-26PKGDIRMODE must be set *after* including defs.*.tv1-2/+2
2004-04-26Define BLNK_RECMETHOD.${_pkg_} not only for full dependency but alsominskim1-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-26Use a table instead of cascading if..else to dispatch to the correctjlam1-11/+7
buildlink3.mk for inclusion. Remove reference to BUILDLINK_PREFIX.db2 which doesn't exist (fixed by using the table).
2004-04-26Allow perl-thread to also be acceptable when USE_PERL5 is defined.jlam1-2/+2
2004-04-26ROOT_USER is parameterized, so use it in human-readable printed messagestv1-4/+4
as well.
2004-04-25Make sure PKGDIRMODE is always set in bsd.prefs.mk so it can be checkedtv2-3/+3
in lang/perl58/Makefile. (It had been set previously only in bsd.pkg.mk.)
2004-04-25Accept /usr/include/db.h as a valid db-1.85 header file only whenminskim1-3/+11
"^\#define.*HASHVERSION.*2$" is found.
2004-04-25PERL_REQD = 5.8.3nb1.tv1-2/+2
2004-04-24Don't treat ${BUILDLINK_DIR} like a local directory in the "${WRKSRC} ==jlam2-4/+10
${WRKDIR}" case when converting references to local libtool archives into the full paths.
2004-04-24Create links to .pc files in BUILDLINK_DIR when building a pkgviewsminskim1-2/+2
package. OK'ed by jmmv@.
2004-04-24flow.dl.sourceforge.net has been unreachable for a while now, due togrant1-2/+2
what appears to be a routing loop. comment it out for the moment.