summaryrefslogtreecommitdiff
path: root/pkgtools
AgeCommit message (Collapse)AuthorFilesLines
2001-09-13Update pkg-chk to 1.11abs2-4/+4
Correct check for X libraries (x11 tag)
2001-09-09NO_WRKSUBDIR is deprecated, while USE_LIBTOOL isn't anymore.wiz2-7/+7
Version now 3.08.
2001-09-09Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:agc10-20/+20
WRKSRC= ${WRKDIR} This is much cleaner, much more indicative of what happens, and removes another of the negative definitions (NO_.* = value).
2001-08-29Comment out buildlink-x11 as it's no longer a default dependency for X11jlam1-2/+2
packages.
2001-08-29Note addition of x11-links.jlam1-1/+2
2001-08-29x11-links creates a shadow directory of symbolic links for X11 headers andjlam4-0/+544
libraries to ${X11BASE} under ${LOCALBASE}/share/x11-links. It is intended for use by buildlink code to cleanly separate out the true X11 code files from any installed X11 package code files. The X11 hierarchies supported are: XFree86-3.3.x XFree86-4.0.x XFree86-4.1.0
2001-08-23Updated pkgchk to 1.10:abs3-15/+33
Fix -B on some systems, and implement '-k' (similar to make's usage)
2001-08-22Update buildlink-x11 to 0.8. Changes from version 0.7 include looking forjlam3-9/+11
the X11 headers and libraries in ${BUILDLINK_X11_DIR} in constructing the header and library search paths for the compiler.
2001-08-19Make this package more Solaris friendly.tron3-11/+14
2001-08-10Update pkgchk to 1.09abs2-7/+7
-u should imply -i
2001-08-10put /usr/sbin into $PATH to find pkg_{info,add,...} independantlydrochner1-1/+3
of the user's one
2001-08-08Update pkgchk to 1.08:abs2-5/+6
Check during install if packages have already been installed. Avoids reinstalling a package if it had already been installed as a depends on a previous package.
2001-08-08Update pkgtools/buildlink-x11 to 0.7. Changes from version 0.6 includejlam5-10/+37
installing buildlinkX11.rules as X11.rules via a symlink to ensure that buildlinkX11.rules gets used in place of X11.rules everywhere. This should fix pkg/13638 by Martin Husemann <martin@duskware.de>.
2001-08-07Add some `\n' in error messages, per pkg/13650 by Stoned Elipot.wiz2-7/+7
Bump to 20010807.
2001-07-31Update "pkgchk" to version 1.07:tron4-37/+110
- Add Solaris portability fixes supplied by Stoned Elipot in PR pkg/13434. - Rename binary to "pkg_chk" which matches the naming of our package tools and avoids confusion with Solaris's "pkgchk" command.
2001-07-26Make text at EOF (or rather, after EOF :-) a bit more readable.hubertf1-2/+2
Noted by Tomasz Luchowski.
2001-07-24Update to 20010724:wiz2-5/+5
Better support for tbz packages, `pkg_add -u', and lots of man page fixes.
2001-07-15'file' should be replaced by '${FILE_CMD}' now.wiz2-3/+4
Bump to 3.07.
2001-07-14Remove inclusion of gettext-lib/buildlink.mk as it's pulled in byjlam1-2/+1
rpm/buildlink.mk.
2001-07-14Move inclusion of buildlink.mk files to end of Makefile and removejlam1-9/+6
commented-out USE_LIBINTL.
2001-07-14Add buildlink-xmkmf to PLIST.jlam1-1/+2
2001-07-13Just like perl-mk, python-mk is python version specific. However, as Itv1-1/+2
don't use python, set this to NO_PACKAGE to prevent building a binary package. For now I'll let someone else look at merging this directly into the python pkg (where it should be).
2001-07-13remove no=longer=needed perl-mkhubertf1-2/+1
2001-07-13Warn about some more directly used commands we now have ${CMD} for.wiz2-7/+7
[cmp, dirname, sort, wc]
2001-07-13In package Makefiles, create FILES_SUBST instead of duplicating sedjlam4-28/+10
expression for substituting in DEINSTALL/INSTALL scripts. Use "${CMP} -s" instead of "diff -q" since the former is more portable across OSes.
2001-07-10Make this package work under Solaris, bump version number to 1.0.2.tron2-6/+5
2001-07-10bump version to 1.6 - work with host.def not existing on Solaris 8/x86hubertf1-2/+2
2001-07-10I don't know why I don't have a $X11_HOSTDEF, still I have none.hubertf2-3/+9
(Solaris 88/x86, of course with X running :) Make xpkgwedge not wedge in this config.
2001-07-09Update pkgchk to 1.06abs2-3/+7
Handle obsoleted (and to a limited extent moved) packages is a more graceful fashion (pkgtools/perl-mk anyone :)
2001-07-09Bump version to 20010709hubertf1-2/+2
2001-07-09Pull in consistent set of headers (<sys/cdefs.h> - BSD-specific too,hubertf4-4/+12
but at least it's consistent :)
2001-07-09Get rid of BSD err() and warn() functions - for great just^Wportability!hubertf1-6/+6
2001-07-09Always use this pkg's md5 routines. The Solaris ones e.g. aren'thubertf1-2/+2
compatible, and not everyone uses a full BSD environment on !BSD.
2001-07-09* Make perl stop installing anything in the man3 directory. It's startingtv5-106/+0
to install things like "open.3" and "lib.3" which confuse users. Perl ships with a documentation tool, "perldoc", for this purpose; create a MESSAGE indicating that it should be used instead. (Perl still installs command line program manual pages in man1.) * Integrate bsd.perl.mk into the perl5-base build where it should have been from the beginning. The separate perl-mk pkg makes binary packages of perl-mk completely useless[*]. Older perl builders will not break, since <bsd.pkg.mk> contains fallback definitions that are evaluated at pkg build time. ===== [*] bsd.perl.mk is tightly bound to the version of perl that is installed. The version name "perl-mk-1.1" is completely useless as a binary pkg, since keeping multiple binary versions of perl on a FTP server means that one of the perl-mk's will get clobbered. However, putting the current pkgsrc PERL5_DIST_VERS in the perl-mk pkg is also a problem, because that doesn't necessarily reflect the installed version of perl. Snarfing the installed version at perl-mk build time would be even uglier, since you could not then walk the tree without perl being installed. The cleanest solution is to integrate bsd.perl.mk into the perl5-base pkg, and let those who have not upgraded perl yet use the runtime definitions in <bsd.pkg.mk>.
2001-07-09Update pkgchk to 1.05abs2-4/+4
Ensure -u works for packages which have more than one package depending upon them.
2001-07-08Update pkgchk to 1.04abs2-15/+25
- Set BSD_PKG_MK when parsing mk.conf - from PR pkg/13413 from Stoned Elipot - Actually delete previous version of a package when updating via binary pkgs - After finishing print a summary of packages updated and added
2001-07-08Update to 3.05: pkglint support for SVR4_PKGNAME, as requested bywiz2-9/+17
Bernd Ernesti.
2001-07-07add -O option to lintpkgsrc to report packages which have thedmcmahill3-11/+25
OSVERSION_SPECIFIC flag set. bump version to 3.04
2001-07-07Updated pkgchk to 1.03abs3-19/+117
- Move update/installs after check phase, and perform all updates before installs. - When updating packages that depend on each other, skip dependent packages to reduce unnecessary rebuilding. - Implement -n (display actions but do not perform them)
2001-07-05Updated pkgchk to 1.02 - if extracting the pkgname form a pkgdir fails,abs3-8/+10
make sure to display the pkgdir name.
2001-07-05Update buildlink-x11 to 0.6. Changes include moving the custom overridesjlam2-21/+17
of X11.rules settings below the inclusion of <X11.rules>. This should cause overrides to work correct for XFree-3.3.x systems.
2001-07-05Update buildlink-x11 to 0.5. Changes from previous version are thejlam2-3/+79
addition of the xmkmf script from the XFree86-4.0.x distribution, which understands passing -D options through to imake. Update the dependency on buildlink-x11 in bsd.pkg.mk for packages using USE_BUILDLINK_ONLY to >=0.5. Also, if USE_BUILDLINK_X11 is set, then refer to ${BUILDLINK_DIR} for location of X headers and libraries.
2001-07-02Update xpkgwedge to 1.5. This version factored out the buildlink logicjlam2-33/+3
into a separate package (buildlink-x11) usable even without xpkgwedge installed.
2001-07-02Add and enable buildlink-x11.jlam1-1/+2
2001-07-02buildlink-x11: allows X11 pkgs to be built using the buildlink.mkjlam7-0/+282
infrastructure, even if they use Imake.
2001-07-02Fix another couple of ' usages- from Ben Wongabs1-3/+7
2001-07-02Update pkgchk to 1.01 - do not check for pkgchk.conf with -iabs2-8/+10
noted by Tomasz Luchowski
2001-07-02Correctly import pkgchk-1.00 (into pkgtools not pkg_tools)abs5-0/+382
pkgchk verifies that the versions of installed packages matches those in pkgsrc, optionally adding missing or updating mismatched packages. It can verify all installed packages, or check against a set of packages based on the hostname, architecture, and other characteristics.
2001-07-02Update pkglint to 3.03:abs2-5/+7
Fix incorrect ' at start of line in lintpkgsrc manpage. Fixes PR pkg/13354 by Ben Wong
2001-07-01Add and enable pkgchkabs1-1/+2