summaryrefslogtreecommitdiff
path: root/pkgtools
AgeCommit message (Collapse)AuthorFilesLines
2004-04-02Update to 1.18:jmmv3-7/+12
- Make kern-GENERIC.tgz part of the default SETS value, so that we get a kernel inside the chroot. If the user removes it from the list, and no /netbsd file exists after extraction, create an empty /netbsd kernel. This fixes packages that look for a kernel during compilation, like net-snmp. Found by cube@.
2004-03-30Use "XF86_VERSION" instead of "_XF86_VERSION" as the variable name sincejlam1-8/+6
we use it in several places within pkgsrc as a public variable.
2004-03-30Sync with 20040330.tv4-9/+9
2004-03-29Remove warning on Interix; OK'd by hubertf.tv1-2/+4
2004-03-29Remove umask call and remove warning on Interix; OK'd by hubertf.tv1-3/+4
2004-03-29Match the template builtin.mk file in bsd.builtin.mk, and make the twojlam1-9/+12
packages that use builtin.mk files (graphics/xpm and pkgtools/x11-links) use the new format correctly.
2004-03-29Enable pkgviews installation.schmonz1-1/+5
2004-03-29Eek, revert previous; these weren't supposed to be committed.tv2-10/+4
2004-03-29Obey CPPFLAGS.tv3-6/+13
2004-03-28add missing DESCR to DISTFILES.grant1-2/+2
2004-03-28sync with ../DESCRgrant1-5/+2
2004-03-28remove NO_TOOLS. we need the tools stuff to have the .sunpro/.gccgrant2-4/+2
links created so the compiler can be found. fixes build problem in sketch's bulk build.
2004-03-27reflect pkgchk -> pkg_chk move. bump date. s/netbsd.org/NetBSD.org/grant1-4/+4
2004-03-27pkg_chk now lives in pkgtools/pkg_chk, don't try to cd to pkgtoos/pkgchkgrant1-2/+2
2004-03-27Moved to pkg_chk.wiz5-933/+0
2004-03-27Move pkgchk to pkg_chk.wiz1-2/+2
2004-03-27Refer to pkg_chk here too.wiz1-1/+1
2004-03-27Re-import pkgtools/pkgchk as pkg_chk so that program name, PKGNAME,wiz5-0/+935
and directory path match. Addresses PR 23679.
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz1-2/+3
Buildlink files: RECOMMENDED version changed to current version.
2004-03-23USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined.jlam1-2/+2
2004-03-221.39 from usr.sbin/pkg_install/info/main.c:wiz1-3/+3
Check pkgdb_open for correct return value. From Peter Postma in PR 24863.
2004-03-22USE_BUILDLINK3 must be "yes" or "no", not just defined/undefined.jlam1-2/+2
2004-03-21bump to 20040321 for vis.c multiple char[] fix.grant1-2/+2
2004-03-21Some compilers (e.g. Sunpro) emit one char[] per string, even whenbouyer1-5/+7
multiple identical strings appear in a source file. As a result, comparing char *o to the "" pointer gives the wrong result in vis.c, as the "" pointer we're checking against isn't the same as the "" which initialised char *o. Use a global pointer initialised to "", and use it for MAKEEXTRALIST() calls. Thanks to Christos Zoulas for suggesting the right solution :)
2004-03-18Update pkgtools/createbuildlink to 3.4. Changes from version 3.3jlam2-6/+20
include creating buildlink3.mk files that include other buildlink3.mk files outside of the region that is protected against multiple inclusion. This is required to fix a bug in properly ordering the packages listed in BUILDLINK_PACKAGES.
2004-03-17Force all of the headers and libraries to be symlinked intojlam1-1/+7
${BUILDLINK_X11_DIR}, even in the "pkgviews" case. This makes building X11 packages work with pkgviews again after the X11_TYPE-related changes.
2004-03-15Xrandr won't build without the X Extension library which is only presentrecht1-1/+10
in XFree86>=4.3; ignore it when checking dependencies or buildlinking. Skip also randrext (Xrandr's header files) in this case. The patch agains x11-links' builtin.mk is a slightly modified version of the patch jlam@ posted in: http://mail-index.netbsd.org/tech-pkg/2004/03/15/0001.html ok'd by jlam@
2004-03-15Fix recursive variable assignment.tron1-2/+2
2004-03-15builtin.mk file to hold information about the built-in X11R6jlam1-0/+32
implementation.
2004-03-13Set USE_DIGEST=no to avoid checking and building a new digest package.jlam2-7/+9
XXX This line should be removed once pkgsrc/bootstrap is up and running.
2004-03-13Set USE_NATIVE_GCC in digest to avoid chicken-and-egg problem withjlam1-1/+6
possibly depending on gcc. XXX This should be removed after digest-handling has been changed to be XXX done by BUILD_DEPENDS.
2004-03-13Solve a chicken-and-egg problem where pkgsrc uses newer features ofjlam1-1/+9
pkg_install, but older NetBSD installations, e.g. 1.5.3, won't support them. In this case, we explicitly use the native GCC compiler to avoid problems with depending on pkgsrc GCC for building pkg_install.
2004-03-12#if 0 out the __weak_alias stuff, which isn't needed here. should fixgrant6-11/+23
build on OpenBSD ELF platforms.
2004-03-11Add to DESCRiption: "It can be used as a file integrity checker."reed1-1/+2
2004-03-11Solaris has fsid_t in sys/vfs.h, so include appropriately.sketch2-1/+7
This gets the new pkgsrc bootstrap working on Solaris.
2004-03-11bump to 20040311 for Interix changes.grant1-2/+2
2004-03-11adding a file to cvs requires "cvs add". duh.grant1-0/+59
2004-03-11catch up with bootstrap-pkgsrc changes.grant2-5/+5
Just a comment doesn't seem to suffice in all cases. For no-op commands, use an explicit "true" invocation to avoid problems. (A future merge of current bmake may fix this issue.)
2004-03-11catch up with bootstrap-pkgsrc changes.grant6-6/+228
- check for existence of fsid_t type, and typedef it if missing - check for existence of struct statvfs.f_basetype field - if <sys/mkdev.h> is included and makedev() is missing, try to use mkdev() - add replacement library file for utimes() by wrappering utime()
2004-03-11catch up with bootstrap-pkgsrc changes.grant1-1/+6
Protect from multiple inclusion, in case system headers try to pull it in (happens on Interix).
2004-03-11Garbage collect USE_X11_LINKS, which was used solely to avoidjlam1-2/+1
dependency loops, and which are now handled in a more general way by bsd.buildlink3.mk.
2004-03-11Add a buildlink3.mk file for pkgtools/x11-links. This isn't meant to bejlam1-0/+31
included manually by a package, but is intended for inclusion by bsd.buildlink3.mk. It will be used to avoid special-casing x11-links when creating symlinks into the buildlink directory.
2004-03-11Don't cat nonexistent files during the build.jlam1-2/+3
2004-03-10bl3ify and enable pkgviews installation.minskim1-2/+6
2004-03-10Catch up with removal of BUILDLINK_{IS,USE}_BUILTIN.jlam1-17/+10
2004-03-10pkg_comp just works on NetBSD, so use ONLY_FOR_PLATFORM= NetBSD-*-*.xtraeme1-1/+2
2004-03-06Update pkgtools/createbuildlink to 3.3. Changes from version 3.2 includejlam2-8/+20
fixes to the whitespace in the generated files to more closely match the template buildlink3.mk file.
2004-03-05Update pkgtools/createbuildlink to 3.2. Changes from version 3.1 includejlam2-23/+26
creating buildlink3.mk that are in line with the template in revision 1.101 of mk/buildlink3/bsd.buildlink3.mk.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-4/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-29Update to 1.2:jmmv2-4/+3
- Do not check for fnmatch(3) in the default configure script because we don't know beforehand if a package wants a GNU or a POSIX version of it. This fixes the build of, for example, diffutils.