summaryrefslogtreecommitdiff
path: root/mk
AgeCommit message (Collapse)AuthorFilesLines
2000-09-15rcs id policehubertf3-3/+3
2000-09-15Allow setting ftp_proxy and http_proxy in build.conf or $environmenthubertf2-2/+16
2000-09-15Bulk build frameworkhubertf6-0/+446
2000-09-15Whitespace fixhubertf1-2/+2
2000-09-15Fix a problem with the print-pkg-size-this on Solaris.veego1-5/+8
It use the wrong ls when you have /usr/ucb before /usr/bin in your PATH. The usb-ls doesn't print the group field, so the size is the 4th field and not the 5th one. Fixed by using the /usr/bin one. Added and use: ${LS} which points to the correct ls. Also add a space after the 0 in the AWK part of this target and one after the '+'. Noticed by Klaus Klein. Changes reviewed by Hubert Feyrer.
2000-09-15Add comments explaining each of the three singleton licenses (kermit-license,jwise1-1/+9
sun-jsdk20-license and sun-swing-license), and what licenses they correspond to. It is especially important that people do not blindly add these values to ACCEPTABLE_LICENSES, as these values indicate that the user has read and accepted specific license agreements, not general terms of redistribution as with the `generic' LICENSE values.
2000-09-15Use "dc" instead of "expr" to calculate total package size to avoidtron1-2/+2
another integer overflow which occured on "i386", too.
2000-09-15Rewrite "print-pkg-size-depends" target to work without invoking "awk".tron1-5/+5
2000-09-15Fix cut and paste error in last commit.tron1-2/+2
2000-09-15Because "awk" keeps getting overflows on "arm32" while calculating thetron1-8/+13
size of a large package we use "dc" now.
2000-09-14Update "libtool" version number in comment.tron1-2/+2
2000-09-14Make sure we use the latest (and greatest!) libtool.skrll1-2/+2
2000-09-13Fix bug in 'describe, introduced in rev. 1.529.hubertf1-2/+2
Reported by Launey Thomas <ljt@alum.mit.edu> in private mail.
2000-09-10Improve wording of warning if required package is not found, whichwiz1-2/+2
causes a dependency to be not registered, to minimize confusion like in pkg/9043.
2000-09-09Add a new mechanism for handling "crypto" packages, as discussedfredb2-2/+18
on tech-pkg. Setting either USE_SSL or CRYPTO in the package's Makefile will permit the package to build or not, depending on the setting of MKCRYPTO (set to yes by default).
2000-09-09Note CYRUS_USER and CYRUS_GROUP used by mail/cyrus-imapd.veego1-1/+13
2000-09-07Correct a factual error in the comment "ways to disable a package":fredb1-11/+10
we actually check for "X", and not just Motif. Also, clean up word wrap, and rearrange the sections to be in the same order as the checks they refer to.
2000-09-07Revert last change. I only tested this on netbsd-1-4; it doesn't seem tofredb2-26/+12
work on netbsd-1-5 at all.
2000-09-06Introduce a new category, "crypto", with a special property: If the userfredb2-12/+26
sets MKCRYPTO=no, packages in this category won't be fetched, installed, built, or packaged. Also, binary package users forbidden, by law, from using strong cryptography would presumably find the list on the category's automatically generated web page useful for ensuring compliance.
2000-09-06Move PKG_DEVELOPER and WRKOBJDIR out of the "NetBSD&" section, and intofredb1-13/+13
the "packages only" section.
2000-09-06Move PERL5_* variable definitions out of USE_PERL5 .if.endif block;jlam1-2/+2
they're already protected by .if exists(${PERL5}).
2000-09-05Fix a EVAL_PREFIX problem with XPM and xfree86 4.xveego1-2/+9
Patch from Alistair G. Crooks with a small change from me after a comment from Matthias Scheler.
2000-09-02Update for new 'netscape' wrapper, plus note 'NS_NAVIGATOR' variableabs1-1/+6
2000-09-02remove debug codehubertf1-2/+2
2000-09-02log more stuff to buildloghubertf1-17/+23
2000-09-01Fix broken MANZ handling in PERL5_PACKLIST case. Closes PR#10930 with fixjlam1-6/+6
provided by Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>.
2000-09-01Back out the 'make reinstall' change from rev. 1.557:hubertf1-2/+2
On 'make reinstall', the DEPENDS_TARGET is also set to reinstall, and for pkgs with dependencies this results in all dependencies being removed and reinstalled.
2000-08-31Make sure PKG_DBDIR is set for each call to pkg_info etc. by settinghubertf1-10/+2
PKG_INFO etc. properly. Make sure the PKGTOOLS_VERSION does not get confused. Code from Al 'trapped behind a firewall' Crooks <agc@netbsd.org>.
2000-08-31remove debug code from last commithubertf1-2/+1
2000-08-31 * add CHECK_SHLIBS variable that can be set to "no" in emul/compat packages,hubertf1-3/+5
to precent check-shlibs from discovering that ldd(8) can't deal with e.g. Linux binaries * On "make reinstall", make sure the package gets deinstalled first. No more 'make deinstall ; make reinstall'.
2000-08-30Use only the first field of the perl5 packlist. Some packlists list thejlam1-3/+3
type of the file and additional information in successive fields of the packlist. Note that this will break if the installed filenames have spaces in them, which I don't think happens, yet.
2000-08-30Add 'TCSH_STATIC' variable for producing static tcsh binary.abs1-1/+6
If only 'make LDFLAGS+=-static' would work...
2000-08-29Fix errors with not finding perl in another way.jlam1-8/+22
Also only compute PERL5_* variables once and pass into MAKEFLAGS, following model of IS_LESSTIF (thanks to hubertf for the suggestion).
2000-08-28Don't output any errors if perl isn't available when doing a "make clean"jlam1-4/+4
in a package which has USE_PERL5.
2000-08-28Surround the PERL5_* in PLIST_SUBST with .if defined(USE_PERL5) ... .endifjlam1-3/+5
2000-08-28Correct thinko which caused p5-Tk to not register installation correctly.jlam1-3/+3
"/X/" was mistakenly replaced with "/", which broke the translation of the packlist to a correct PLIST.
2000-08-27Changes for building dynamic PLIST for perl packages:jlam1-11/+39
* Add a PERL5 variable that is always defined, set to the path of a pkgsrc-installed perl5 binary (${LOCALBASE}/bin/perl). * Define three new variables PERL5_SITELIB, PERL5_SITEARCH, and PERL5_ARCHLIB that define special locations used by perl. In particular, it seems packlists are always found under PERL5_SITEARCH. * Substitute the above three variables when generating PLISTs, but stripping away the initial ${LOCALBASE}/ part. This is for perl packages which don't generate packlists because they don't use the perl Makefile generator during the build process. * Append to the PLIST any files listed in the packlists named by PERL5_PACKLIST. Also append statements to try removing the directories installed into by the packlist-ed files.
2000-08-25a couple of minor changes to the bulk-check-uptodate target:dmcmahill1-9/+11
- quote arguments to pkg_admin so the shell doesn't try to expand any *'s. - be sure that all required binary packages exist. The previous version made sure the required packages were not newer, but missed catching missing required packages. Still todo: When examining required binary packages to see if they have changed, the test only looks at the modification time of the binary package. It does not verify that the required binary package is also up to date with respect to its pkgsrc files.
2000-08-24In check-shlibs, use ${LDD}, instead of directly invoking "ldd" to checkjlam1-5/+10
whether the proper shared libs are available. Packages which use the emulation system should set LDD to the path of a the emulated ldd, or simply set it to true, e.g.: LDD?= /emul/linux/usr/bin/ldd LDD?= ${TRUE} Fixes PR#10853.
2000-08-24escape the \ in an echo command so we see itdmcmahill1-2/+2
2000-08-24If a required binary pkg is found newer, tell which one.hubertf1-2/+2
2000-08-24Remove a comment that's no longer valid after we have 'pkg_admin lsbest'hubertf1-4/+1
now - we can expand all pkg wildcards with that.
2000-08-24Back out last commit: It nuked pkgs that we compile in several versions,hubertf1-4/+4
e.g. for "normal" and -current pkgs.
2000-08-23Add support for new variable "USE_XPM" for packages which use the Xpmtron1-1/+15
library. It will use the include Xpm library on systems with XFree86 4.0 or newer and the package on systems with XFree86 3.3.6 and older.
2000-08-21Evalute correct value for "OBJECT_FMT" in case multiple packages matchtron1-2/+2
a dependence.
2000-08-19 * Prevent " etc. in RESTRICTED (NO_{SRC,BIN}_ON_{CDROM,FTP}) and BROKENhubertf1-57/+60
from producing errors * Rework IGNORE handling: - IGNORE messages must now include the pkg's name - if multiple reasons exist for a pkg to be ignored, they are now all printed - IGNORECMD is gone * Make 'mirror-distfiles' not print a warning if NO_SRC_ON_FTP is set (I really don't want to see that list every day!) * Catch one leftover 'depends' -> 'install-depends'
2000-08-18 * Replace MIRROR_DISTFILES with NO_SRC_ON_FTPhubertf1-9/+9
* Replace NO_CDROM with NO_SRC_ON_CDROM and NO_BIN_ON_CDROM * Add NO_{SRC,BIN}_ON_{FTP,CDROM} to BUILD_DEFS (in case someone wants to re-distribute a binary pkg, so he has a chance to know about resitrictions) * Adjust 'mirror-distfiles' target for NO_SRC_ON_FTP
2000-08-18check-shlibs: previous commit didn't work for pkgs using @cwd. Lethubertf1-4/+4
pkg_info evaluate this, and use the result
2000-08-17USE_PKGLIBTOOL is no morewiz1-12/+4
2000-08-17print-PLIST: move all the variables from PLIST_SUBST into their non-expandedhubertf1-4/+16
for (e.g. netbsd -> ${LOWER_OPSYS})