summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_add
AgeCommit message (Collapse)Author
2004-09-22document the semantics of @newuser/@newgroupMarc Espie
2004-09-21@newuser/@newgroup initial support:Marc Espie
- groups category and users category that get handled first, so that those groups/users can be used for other files. - : separated fields, for easy parsing. Mostly matching useradd groupadd. - ! for mandatory values. Missing pkg_delete -c support for now. okay naddy@, pvalchev@, millert@
2004-09-21typoMarc Espie
2004-09-21rename cleanup dirs functions, since they will apply to all shared itemsMarc Espie
soon.
2004-09-20error out for pkgcfl in pkg_create, but don't warn if it's found inMarc Espie
existing packages or installed packages. Too much noise for now.
2004-09-20deals with conflicts, must keep pkgcfl around a little while longer...Marc Espie
2004-09-20old pkgcfl is dead.Marc Espie
2004-09-20use fullname() in sample, so that absolute names AND relative names work.Marc Espie
problem noticed by sturm@
2004-09-18framework to be able to distinguish packages installed manually (and thusMarc Espie
wanted by the user) from packages installed automatically to satisfy a dependency.
2004-09-18full support for @shell: insert shells into /etc/shells if they'reMarc Espie
not already there, and remove them on deinstall.
2004-09-18document new @shell and @conflict.Marc Espie
2004-09-18new-style conflicts that respect pkgspec.Marc Espie
2004-09-17warn for dirrm.Marc Espie
2004-09-16Add LibraryOnly routine to check on @lib files.Marc Espie
Forgot to add shell to the list of files...
2004-09-15Support for -Dvar=value in pkg_create:Marc Espie
- do the substitution for ${var} - handle fragments %%var%% depending on value being 0 or 1.
2004-09-15new getopt module, that allows for option-specific processing, so thatMarc Espie
for instance, pkg_create -Dvar=value -Dvar2=value2 will work.
2004-09-15shell keyword...Marc Espie
2004-09-14add support for info directories.Marc Espie
more prototypes. use Error module for system calls.
2004-09-14better wording for documentation.Marc Espie
use System more or less everywhere. prepare to delete info directories properly.
2004-09-14use System or Vsystem everywhere.Marc Espie
2004-09-14better reporting of conflicts, suggested by naddy@Marc Espie
2004-09-14report issues while installing configuration files.Marc Espie
2004-09-14use chown/chmod system calls directly where possible.Marc Espie
some System instead of system.
2004-09-14basic error wrapper for system and such.Marc Espie
2004-09-14use IdCache.Marc Espie
2004-09-14IdCache module, that deals with uid/gid caches.Marc Espie
2004-09-14install mtree.Marc Espie
2004-09-14new categories, modules and manual-installation, not active yet.Marc Espie
new visit method, to do anything on a packing-list.
2004-09-14Handle basic mtree for directory creation.Marc Espie
2004-08-27make sure pkg_create keeps track of cwd.Marc Espie
okay naddy, pvalchev, millert.
2004-08-25typos from -f (PR #3908);Jason McIntyre
2004-08-12add missing $Brad Smith
ok espie@
2004-08-12ditch File::Copy so that buffering is consistent.Marc Espie
Problem noticed by niklas@. okay and function name suggestion by markus@
2004-08-11allow for a fonts.dir.dist, for cases where mkfontdir doesn't know what to do.Marc Espie
2004-08-11protect main loop of pkg_delete with an eval, so thatMarc Espie
ldconfig, directory removal, manpage handling, and fontdir handling always happen.
2004-08-10Document @man, @info, @lib, @mandir, @fontdir.Marc Espie
2004-08-10typoMarc Espie
2004-08-10cosmetic tweak: ensure all dirs always get exactly one / at the end.Marc Espie
cosmetic tweak: do not show a space after a keyword without args. dir support reworked: keep clones() of dir objects, and call cleanup/reload routines at end. @mandir/fontdir support: both mandir and fontdir remove extra files on delete. @fontdir creates alias files, runs mkfontdir, and uses fc-cache.
2004-08-09record remaining DirRms.Marc Espie
2004-08-07use chroot DESTDIR ldconfig in DESTDIR case.Marc Espie
2004-08-06Use .Dl instead of a literal block when we only have a single line. HasTodd C. Miller
the side effect of fixing some ugly indentation (or the lack thereof).
2004-08-06Fix typo (.Bd that should be .Ed)Todd C. Miller
2004-08-06protect makewhatis calls inside eval.Marc Espie
failing makewhatis should be a warning at best.
2004-08-06use OpenBSD::Makewhatis, avoid forking extra makewhatis.Marc Espie
Note: requires you to update makewhatis to work.
2004-08-06fix one of the most bizarre bugs in a while...Marc Espie
found by henning@.
2004-08-06@lib shared library marker.Marc Espie
- runs ldconfig to find out search library path. - if library is in path, mark directory for updating cache. - run ldconfig when needed, e.g., right before executing something that might depend on the library. Doesn't handle destdir case yet.
2004-08-06Document filename semantics, @sample, @extra.Marc Espie
Clean up.
2004-08-06unneeded switch to main package.Marc Espie
2004-08-06avoid pulling in OpenBSD::md5 and File::Copy if we can.Marc Espie
2004-08-06block-scoped require is way simpler than weird AUTOLOAD hack.Marc Espie