summaryrefslogtreecommitdiff
path: root/mk
AgeCommit message (Collapse)AuthorFilesLines
1999-08-16Ignore the return code from rm when trying to delete a symbolic linkagc1-2/+2
which may be read-only. Pointed out by Julian Coleman, fixed in a slightly different way.
1999-08-13The X11 mirror on "ftp.eu.net" is gone, use "ftp.sunsite.auc.dk" instead.tron1-2/+2
1999-08-13Substitute for ${PKGNAME} when generating the PLIST files.agc1-1/+2
1999-08-12Linux fixes.christos1-1/+13
1999-08-10This is NetBSD. s/port/package/gagc1-19/+19
1999-08-10better linux supportchristos1-2/+6
1999-08-09Use ${SORTED_MASTER_SITES} instead of ${MASTER_SITES} in "fetch-list:".sakamoto1-2/+2
1999-08-04Ignore result of ${RM} command in do-extract target - the original ${LN} -fsagc1-2/+2
command was split into two specific commands: ${RM} -f, then ${LN} -s, for Solaris ln(1) behaviour, and, as pointed out by Julian Coleman, this can have an unfortunate side-effect on read-only filesystems.
1999-07-28Don't try to fetch a file if there's a symbolic link in ${DISTDIR}.agc1-2/+2
1999-07-28Clarify the DIST_PATH example.agc1-3/+4
1999-07-28Document the DIST_PATH definition which accidentally got committedagc1-1/+17
yesterday. #DIST_PATH= /cdrom/0/distfiles:${HOME}/distfiles (DIST_PATH allows multiple directories for distfiles to be defined, although distfiles will still be downloaded into DISTDIR. For example, this allows a CD to be used as a basic repository for distfiles, with additional distfiles to be found in other directories, and, if the distfile is not found in any of these, it will be downloaded into DISTDIR. A symbolic link is created in DISTDIR, pointing to the local distfile.)
1999-07-28Make "make readme" work on Solaris - Solaris's sed(1) can be a painagc1-10/+9
at times.
1999-07-27Actually apply any patch-local-* local patch files if there are any.agc1-15/+27
1999-07-27Don't put a // in MASTER_SITE_BACKUP if DIST_SUBDIR is empty/undefined.mycroft1-1/+7
Yes, this is a hack.
1999-07-26New variable "USE_INN" to use "inn" instead of "nntclnt" to providetron1-1/+7
"inews" binary for newsreaders.
1999-07-26Re-visit the patch-sum modifications:agc1-19/+14
(a) if the patch file does not exist in the patch-sum file, then print a warning to the user, and ignore the patch file. In particular, do not exit with an error. (b) if the patch file's calculated checksum does not match the one recorded in the patch-sum file, print a warning to the user, and try the other patch files. Once all patch files have been attempted, exit with an error. Also, don't bother to check for patch-local-* files inside the checksum logic - they're already ignored at the head of the loop.
1999-07-24If there's a discrepancy between files/patch-sum and patches/*,hubertf1-5/+19
this shouldn't be silently ignored. Tell the user instead.
1999-07-23Avoid unnecessary shell variable usage.tron1-3/+3
1999-07-21Some master-sites (like the second one of the libslang package) seemhubertf1-2/+4
to return some "please see the new location"-pages instead of the requested archive, which our ftp(1) doesn't take as an error. Now, add a check here to see if ftp(1) actually got the requested file or something else. Detected by Reinoud Zandijk <zandijk@cs.utwente.nl>, talked over with Frederick Bruckman <fb@enteract.com>.
1999-07-19Document "${INN_DATA_DIR}".tron1-1/+5
1999-07-17Update "pkglibtool" to version 1.2p2. This version makes sure that youtron1-2/+2
don't use an a.out "pkglibtool" on an ELF system and vice versa.
1999-07-15Once again: this is a make file. there's a difference between TABS and SPACESwrstuden1-4/+4
when starting a line. Tabs are for shell commands, and spaces are for comments, etc.. Closes PR 7982 by KAWAMOTO Yosihisa kawamoto@tenjin.org.
1999-07-14cleanup of README.html generation code, as provided in PR 7989 byhubertf1-12/+7
Jaromir Dolecek <dolecek@ics.muni.cz>. While there, mark the README.html as precious, so it doesn't get removed if the build process is interrupted.
1999-07-13Add possibility to sort the master download site list according tomjl2-5/+35
local preferences (domain suffixes or full regular expressions) by defining MASTER_SORT or MASTER_SORT_REGEX appropriately.
1999-07-13Do not include checksums of files names *.orig in files/patch-sumhubertf1-1/+2
1999-07-10Create symbolic links for ELF shared libraries without absolute directorytron1-10/+11
names so that they don't need to be adjusted later.
1999-07-09Only create a patch-sum file if there are any patches to checksumagc1-5/+5
1999-07-09Pass the makepatchsum target down to submakes.agc1-1/+2
1999-07-09Add logic to provide md5 checksums on the patch files, placing them inagc1-20/+57
a file called files/patch-sum. This has the benefit of only attempting to patch packages with official patches. This should mean that you can untar a pkgsrc.tar.gz over a previous tree, and still have it do the right thing, ignoring old patch files. Patches which have an entry in the files/patch-sum file will be applied, and then any local patches. If there are local patches to a package, these should go in patch files called patches/patch-local-* (these files are ignored when calculating the files/patch-sum file, and also when checking the patches/patch-* files). The calculation of the patch checksum ignores any NetBSD RCS Id in the patch-* files. This removes a nasty ordering dependency for developers making patches to packages. Patch file checksums will only be checked if the files/patch-sum file exists. Add a target "makepatchsum", analogous to "makesum", which makes a new files/patch-sum file.
1999-07-08Revert to previous configuration:agc1-2/+2
LOWER_OPSYS for Solaris is solaris. Remove the ugly hacks which had been introduced to workaround previous misunderstanding.
1999-07-08CAPITAL_OPSYS and OS_MAJOR_VERSION are used in one package Makefile,agc1-8/+8
but calculated every time bsd.prefs.mk is read. Correct the situation, and only calculate these when they are needed. Also save a few more cycles by hardcoding the LOWER_OPSYS values for known operating systems, rather than using expensive shell echo and tr commands every time bsd.prefs.mk is read.
1999-07-07USE_INET6 clarify (some pkgsrc require IPv6-ready kernel)itojun1-1/+2
1999-07-07add and document USE_INET6.itojun1-1/+4
1999-07-05"USE_MULE" option isn't supported by "xemacs" package.tron1-6/+1
1999-07-03Fix last commit to (also) work with disk layout different from the ftp site.hubertf1-6/+6
1999-07-02improved safety checks for README.html generationhubertf1-8/+11
1999-07-02Add a show-downlevel target, which shows output of the form:agc1-4/+6
... ===> package security/sudo sudo package: sudo-1.5.7p4 installed, pkgsrc version sudo-1.5.9p1 ===> package security/tripwire ===> category shells ... for installed packages whose version does not match that in pkgsrc. No output is produced if the package is not installed. This allows an easy overview of the packages installed on a machine which need to be upgraded. Also make minor modifications to the SUBDIRUSE target for Solaris.
1999-07-02Add a show-downlevel target, which shows output of the form:agc1-1/+15
sudo package: sudo-1.5.7p4 installed, pkgsrc version sudo-1.5.9p1 for installed packages whose version does not match that in pkgsrc. No output is produced if the package is not installed. This allows an easy overview of the packages installed on a machine which need to be upgraded.
1999-07-02Some packages use bsd-style .mk files when building, and so any manualagc1-2/+3
pages that are installed will be gzip-compressed, if MANZ is set, or not if MANZ is not set. If the package uses bsd-style .mk files, the variable MANCOMPRESSED_IF_MANZ should be set to a value of "yes" in the package Makefile. This replaces the previous method of specific inclusion of bsd.prefs.mk, followed by a check for MANZ and conditional assignment of MANCOMPRESSED. Add appropriate documentation, and change all necessary ocurrences in package Makefiles.
1999-07-02Include "old" binary packages in README.html.hubertf1-12/+25
1999-07-01enable xpkgwedge bits -- it basically works now.mrg1-9/+11
1999-06-28Add a "show-distfiles" target, used to show the distfiles and patchfilesagc2-2/+37
(including any subdir) for a package. If ${IGNORE} is set, for any reason, do not print anything. The output is relative to ${DISTDIR}. This target can be used to identify out of date distfiles and patchfiles in ${DISTDIR}, in conjunction with suitable filters.
1999-06-24Correct the full pathname of false(1) on Linux.agc1-2/+2
1999-06-23typo in the path for grepchristos1-2/+2
1999-06-23Linux bits; now the package system works on Linux too.christos4-36/+575
1999-06-21Document new option "NS_ENCRYPTION" which is used to decided whether tojlam1-1/+6
install the export or US version of Netscape.
1999-06-14Don't recognize foo-bar-x.y as an old version already installed whenhubertf1-2/+2
installing foo-u.v. (Necessary workaround for deficiency of shell globs; works as long as version numbers start with a digit)
1999-06-08Document the mk.conf variables used by the qpopper and majordomo pkgs.bad1-1/+21
1999-06-04XXX XXX. Add a hack to allow "check-depends" to recurse the dependency treetv1-3/+5
and override the `on-the-fly dependency target' option.
1999-05-30Back out last commit: "pkg_install-19990529" was horribly broken.tron1-2/+2