summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-06-04Don't go interactive when the OS can't be detected.joerg2-1/+15
2006-06-04make use of the tools framework to provide unzipschwarz1-4/+3
2006-06-04PKG_USERS should not have more than just <user>:<group>. All else isjlam1-2/+3
specified in additional variables, i.e. PKG_GECOS, PKG_HOME, PKG_SHELL, etc., as stated in both the pkgsrc guide and the pkginstall.mk comments since 2006/04/23, or one month before this package was imported.
2006-06-04Remove ONLY_FOR_PLATFORM=SunOS and use pkgrsc readline in japhar.joerg1-1/+2
2006-06-04Remove ONLY_FOR_PLATFORM to give this wider exposure.joerg8-12/+187
Add DragonFly support. Use readline from pkgsrc. Bump revision.
2006-06-04Add environment settings for the tools that reduce-depends.awk uses.jlam1-2/+5
From Georg Schwarz in private email.
2006-06-04Make zephyr work with kth-krb4. It should still work with thejoerg1-1/+2
base krb4 on NetBSD, but we currently have no builtin detection.
2006-06-04Use kth-krb4 as dependency. It should work with the system krb4 onjoerg5-19/+47
NetBSD, when someone adds a builtin.mk for security/kth-krb4. Fix errno. Bump revision.
2006-06-04I don't see any reason for kth-krb4 to conflict with zephyr,joerg1-3/+2
maintainer didn't respond to the question either. So remove the CONFLICT and bump revision.
2006-06-04Scan libc with nm -D on DragonFly, otherwise symbols won't be found.joerg2-6/+16
2006-06-04Use config.* from pkgrsc.joerg8-20/+53
Add DragonFly support. Fix errno usage. Force traditional cpp for Makefile generation.
2006-06-04Note update of "ja-squirrelmail" and "squirrelmail" packages totron1-1/+3
version 1.4.6nb3.
2006-06-04Add fix for security issue 2006-06-01 from SquirrelMail CVS repository.tron6-6/+126
Bump package revision.
2006-06-04We don't support apache6, it went away ages ago.joerg1-2/+2
2006-06-04Needs Python 2.1+joerg2-2/+4
2006-06-04Needs Python 2.2+joerg2-3/+4
2006-06-04Doesn't support Python 2.2, should support 2.4.joerg1-2/+2
2006-06-04Needs Python 2.2+joerg1-1/+2
2006-06-04Needs Python 2.1+joerg2-2/+4
2006-06-04Uses C++.joerg1-1/+2
2006-06-04Fix errno usage.joerg2-1/+14
2006-06-04Uses Fortran.joerg1-1/+2
2006-06-04Uses C++.joerg1-1/+2
2006-06-04Move some "update"-only variables from bsd.pkg.mk to bsd.pkg.update.mk.jlam2-4/+5
2006-06-04sdist-1.7kim1-1/+2
2006-06-04Logging option added, defaults to same logging as rdist.kim3-41/+6
2006-06-04added dnsmasq-2.31 as a desired upgradeschwarz1-1/+2
2006-06-04note update of gpsim to 0.21.11dogcow2-4/+3
2006-06-04Update gpsim to 0.21.11.dogcow9-351/+59
Changes from 0.21.2: o now uses gtk2 and gtk2+extra o a truly gigantic number of bug fixes o includes pdf/ps documentation
2006-06-04Make LOCKFILE into a "private" variable by prepending with an underscore.jlam1-14/+14
2006-06-04Add missing definitions for CP and RM. Fix from taca@ in private email.jlam1-1/+3
2006-06-04Include bsd.pkg.update.mk to get the "update" targets and variables.jlam1-1/+3
2006-06-04Move test for the lockfile within the target's shell code instead ofjlam1-7/+4
testing for it at the Makefile level.
2006-06-04Drop the use of _ACQUIRE_LOCK and _RELEASE_LOCK and replace withjlam4-79/+66
acquire-lock and release-lock macro targets. Take advantage of using a make target by breaking up the _ACQUIRE_LOCK script into smaller pieces, and make better use of the *_MSG definitions for printing messages within the acquire-lock and release-lock targets.
2006-06-04Convert just-in-time su targets to use su-target instead of ${_SU_TARGET}.jlam2-45/+20
Garbage-collect the (now) unused _SU_TARGET.
2006-06-03Note addition of libupnp-1.3.1rh1-1/+2
2006-06-03Add and enable libupnprh1-1/+2
2006-06-03Initial import of libupnp-1.3.1, a universal plug and play (UPnP) SDK.rh10-0/+192
2006-06-03First pass at implementing support for package system flavors otherjlam42-1758/+2613
than pkgsrc's current one. This is an important lead-up to any project that redesigns the pkg_* tools in that it doesn't tie us to past design (mis)choices. This commit mostly deals with rearranging code, although there was a considerable amount of rewriting done in cases where I thought the code was somewhat messy and was difficult to understand. The design I chose for supporting multiple package system flavors is that the various depends, install, package, etc. modules would define default targets and variables that may be overridden in files from pkgsrc/mk/flavor/${PKG_FLAVOR}. The default targets would do the sensible thing of doing nothing, and pkgsrc infrastructure would rely on the appropriate things to be defined in pkgsrc/mk/flavor to do the real work. The pkgsrc/mk/flavor directory contains subdirectories corresponding to each package system flavor that we support. Currently, I only have "pkg" which represents the current pkgsrc-native package flavor. I've separated out most of the code where we make assumptions about the package system flavor, mostly either because we directly use the pkg_* tools, or we make assumptions about the package meta-data directory, or we directly manipulate the package meta-data files, and placed it into pkgsrc/mk/flavor/pkg. There are several new modules that have been refactored out of bsd.pkg.mk as part of these changes: check, depends, install, package, and update. Each of these modules has been slimmed down by rewriting them to avoid some recursive make calls. I've also religiously documented which targets are "public" and which are "private" so that users won't rely on reaching into pkgsrc innards to call a private target. The "depends" module is a complete overhaul of the way that we handle dependencies. There is now a separate "depends" phase that occurs before the "extract" phase where dependencies are installed. This differs from the old way where dependencies were installed just before extraction occurred. The reduce-depends.mk file is now replaced by a script that is invoked only once during the depends phase and is used to generate a cookie file that holds the full set of reduced dependencies. It is now possible to type "make depends" in a package directory and all missing dependencies will be installed. Future work on this project include: * Resolve the workflow design in anticipation of future work on staged installations where "package" conceptually happens before "install". * Rewrite the buildlink3 framework to not assume the use of the pkgsrc pkg_* tools. * Rewrite the pkginstall framework to provide a standard pkg_* tool to perform the actions, and allowing a purely declarative file per package to describe what actions need to be taken at install or deinstall time. * Implement support for the SVR4 package flavor. This will be proof that the appropriate abstractions are in place to allow using a completely different set of package management tools.
2006-06-03Updated www/drupal to 4.7.2adrianp1-1/+2
2006-06-03Update to 4.7.2adrianp2-7/+6
- fixed critical upload issue, see SA-2006-007 - fixed taxonomy XSS issue, see SA-2006-008 - fixed a variety of small bugs.
2006-06-03Add "c++" to "USE_LANGUAGES". This fixes the detection of shared librarytron1-1/+2
support under (at least) Mac OS X.
2006-06-03Note update of "mysql5-client" and "mysql5-server" packages totron1-1/+3
version 5.0.22.
2006-06-03Update "mysql5-client" and "mysql5-server" packages to version 5.0.22.tron3-10/+10
This upgrade fixes the SQL injection vulnerability reported in SA20365.
2006-06-03Note addition of p5-DB_File-Lockgavan1-1/+2
2006-06-03Add p5-DB_File-Lock, version 0.05:gavan5-1/+29
This module provides a wrapper for the DB_File module, adding locking. When you need locking, simply use this module in place of DB_File and add an extra argument onto the tie command specifying if the file should be locked for reading or writing.
2006-06-03Note qmail-run update.schmonz1-1/+2
2006-06-03Remove "send-mail" entry, which (according to perry) is sendmail-specific,schmonz2-4/+3
from mailer.conf. Bump version.
2006-06-03Note update of devel/rt3 to version 3.4.5nb1seb1-1/+2
2006-06-03Install sbin/rt-dump-database script.seb7-6/+88
Apply fix from http://svn.bestpractical.com/cgi-bin/index.cgi/bps/revision?rev=5218 << * get rid of "masks earlier declaration" warnings >> Bump PKGREVISION to 1. Approved by MAINTAINER.