pkgsrc/devel
bjs 4a27c47b98 +========================+
|GIT v1.6.0 Release Notes|
+========================+

User visible changes

 - Templates now installed in ${PREFIX}/share/examples/scmgit/templates
   and registered as REQD_FILES.  Template subdirectories are
   registered in MAKE_DIRS.
 - Installing the many git-foo binaries/scripts into libexec/git-core
   is now default and better supported.  If you've written any
   scripts or use any applications which expect the git-foo commands
   to be in ${PREFIX}/bin, please do update them accordingly.

+--------------------+
|Updates since v1.5.6|
+--------------------+

(subsystems)

* git-p4 in contrib learned "allowSubmit" configuration to control on
  which branch to allow "submit" subcommand.

* git-gui learned to stage changes per-line.

(portability)

* Changes for MinGW port have been merged, thanks to Johannes Sixt and
  gangs.

* Sample hook scripts shipped in templates/ are now suffixed with
  *.sample.

(documentation)

* Updated howto/update-hook-example

* Got rid of usage of "git-foo" from the tutorial and made typography
  more consistent.

* Disambiguating "--" between revs and paths is finally documented.

(performance, robustness, sanity etc.)

* index-pack used too much memory when dealing with a deep delta chain.
  This has been optimized.

* reduced excessive inlining to shrink size of the "git" binary.

* verify-pack checks the object CRC when using version 2 idx files.

* When an object is corrupt in a pack, the object became unusable even
  when the same object is available in a loose form,  We now try harder to
  fall back to these redundant objects when able.  In particular, "git
  repack -a -f" can be used to fix such a corruption as long as necessary
  objects are available.

* Performance of "git-blame -C -C" operation is vastly improved.

* git-clone does not create refs in loose form anymore (it behaves as
  if you immediately ran git-pack-refs after cloning).  This will help
  repositories with insanely large number of refs.

* core.fsyncobjectfiles configuration can be used to ensure that the loose
  objects created will be fsync'ed (this is only useful on filesystems
  that does not order data writes properly).

* "git commit-tree" plumbing can make Octopus with more than 16 parents.
  "git commit" has been capable of this for quite some time.

(usability, bells and whistles)

* even more documentation pages are now accessible via "man" and "git help".

* A new environment variable GIT_CEILING_DIRECTORIES can be used to stop
  the discovery process of the toplevel of working tree; this may be useful
  when you are working in a slow network disk and are outside any working
  tree, as bash-completion and "git help" may still need to run in these
  places.

* By default, stash entries never expire.  Set reflogexpire in [gc
  "refs/stash"] to a reasonable value to get traditional auto-expiration
  behaviour back

* Longstanding latency issue with bash completion script has been
  addressed.  This will need to be backmerged to 'maint' later.

* pager.<cmd> configuration variable can be used to enable/disable the
  default paging behaviour per command.

* "git-add -i" has a new action 'e/dit' to allow you edit the patch hunk
  manually.

* git-am records the original tip of the branch in ORIG_HEAD before it
  starts applying patches.

* git-apply can handle a patch that touches the same path more than once
  much better than before.

* git-apply can be told not to trust the line counts recorded in the input
  patch but recount, with the new --recount option.

* git-apply can be told to apply a patch to a path deeper than what the
  patch records with --directory option.

* git-archive can be told to omit certain paths from its output using
  export-ignore attributes.

* git-archive uses the zlib default compression level when creating
  zip archive.

* git-archive's command line options --exec and --remote can take their
  parameters as separate command line arguments, similar to other commands.
  IOW, both "--exec=path" and "--exec path" are now supported.

* With -v option, git-branch describes the remote tracking statistics
  similar to the way git-checkout reports by how many commits your branch
  is ahead/behind.

* git-branch's --contains option used to always require a commit parameter
  to limit the branches with; it now defaults to list branches that
  contains HEAD if this parameter is omitted.

* git-branch's --merged and --no-merged option used to always limit the
  branches relative to the HEAD, but they can now take an optional commit
  argument that is used in place of HEAD.

* git-bundle can read the revision arguments from the standard input.

* git-cherry-pick can replay a root commit now.

* git-clone can clone from a remote whose URL would be rewritten by
  configuration stored in $HOME/.gitconfig now.

* "git-clone --mirror" is a handy way to set up a bare mirror repository.

* git-cvsserver learned to respond to "cvs co -c".

* git-diff --check now checks leftover merge conflict markers.

* "git-diff -p" learned to grab a better hunk header lines in
  BibTex, Pascal/Delphi, and Ruby files and also pays attention to
  chapter and part boundary in TeX documents.

* When remote side used to have branch 'foo' and git-fetch finds that now
  it has branch 'foo/bar', it refuses to lose the existing remote tracking
  branch and its reflog.  The error message has been improved to suggest
  pruning the remote if the user wants to proceed and get the latest set
  of branches from the remote, including such 'foo/bar'.

* fast-export learned to export and import marks file; this can be used to
  interface with fast-import incrementally.

* fast-import and fast-export learned to export and import gitlinks.

* "gitk" left background process behind after being asked to dig very deep
  history and the user killed the UI; the process is killed when the UI
  goes away now.

* git-rebase records the original tip of branch in ORIG_HEAD before it is
  rewound.

* "git rerere" can be told to update the index with auto-reused resolution
  with rerere.autoupdate configuration variable.

* git-rev-parse learned $commit^! and $commit^@ notations used in "log"
  family.  These notations are available in gitk as well, because the gitk
  command internally uses rev-parse to interpret its arguments.

* git-rev-list learned --children option to show child commits it
  encountered during the traversal, instead of showing parent commits.

* git-send-mail can talk not just over SSL but over TLS now.

* git-shortlog honors custom output format specified with
  "--pretty=format:".

* "git-stash save" learned --keep-index option.  This lets you stash away
  the local changes and bring the changes staged in the index to your
  working tree for examination and testing.

* git-stash also learned branch subcommand to create a new branch out of
  stashed changes.

* git-status gives the remote tracking statistics similar to the way
  git-checkout reports by how many commits your branch is ahead/behind.

* "git-svn dcommit" is now aware of auto-props setting the subversion user
  has.

* You can tell "git status -u" to even more aggressively omit checking
  untracked files with --untracked-files=no.

* Original SHA-1 value for "update-ref -d" is optional now.

* Error codes from gitweb are made more descriptive where possible, rather
  than "403 forbidden" as we used to issue everywhere.

(internal)

* git-merge has been reimplemented in C.

+------------------+
|Fixes since v1.5.6|
+------------------+

All of the fixes in v1.5.6 maintenance series are included in
this release, unless otherwise noted.

 * git-clone ignored its -u option; the fix needs to be backported to
   'maint';

 * git-mv used to lose the distinction between changes that are staged
   and that are only in the working tree, by staging both in the index
   after moving such a path.

 * "git-rebase -i -p" rewrote the parents to wrong ones when amending
   (either edit or squash) was involved, and did not work correctly
   when fast forwarding.
2008-08-20 03:04:20 +00:00
..
aap
acme Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
acr Add DESTDIR support. 2008-06-12 02:14:13 +00:00
acunia-jam Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
adocman Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
aegis Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ald
allegro Add DESTDIR support. 2008-06-12 02:14:13 +00:00
anjuta update to 2.4.2 2008-08-05 18:54:29 +00:00
apache-ant Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
apache-ant15 Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
apel Sort definitions. 2007-10-29 12:53:51 +00:00
apr Updated to 1.2.12. This includes apr_socket_sendfile for OS X 10.5. 2007-12-09 22:08:32 +00:00
apr-util db4 update related revision bump 2008-01-12 11:36:28 +00:00
apr0 As indicated by comments on pkgsrc-c, move PKGREVISION setting to 2008-06-22 23:01:19 +00:00
arena Update arena to 0.9.13. 2008-07-18 13:56:42 +00:00
argp libtoolize and add builtin.mk. Bump revision. 2007-12-22 01:40:20 +00:00
argtable
ArX Add DESTDIR support. 2008-06-12 02:14:13 +00:00
as31 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
asm2html Add DESTDIR support. 2008-06-20 01:09:05 +00:00
astyle Don't rename makefile to Makefile, use it directly. Add DESTDIR support. 2007-11-28 19:06:00 +00:00
at-spi Add DESTDIR support. 2008-06-12 02:14:13 +00:00
atf Add DESTDIR support. 2008-06-12 02:14:13 +00:00
atk update to 1.22.0 2008-04-10 12:15:55 +00:00
autoconf Update to 2.62: 2008-04-13 22:50:08 +00:00
autoconf213 Drop maintainership. 2007-09-20 22:12:08 +00:00
autogen Add DESTDIR support. 2008-06-20 01:09:05 +00:00
automake Update to 1.10.1: 2008-03-02 11:33:06 +00:00
automake14 Drop maintainership. 2007-09-20 22:12:08 +00:00
avl Add DESTDIR support. 2008-06-12 02:14:13 +00:00
avltree Add DESTDIR support. 2008-06-12 02:14:13 +00:00
bcc bcc, bin86 and dev86 conflict with each other. 2008-03-08 00:13:42 +00:00
bglibs Bump default BUILDLINK_API_DEPENDS to 1.104 (the latest). 2008-04-12 20:56:25 +00:00
bin86 Make this build on amd64. Probably doesn't have that good odds of working, 2008-08-02 21:46:33 +00:00
binutils Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bison
blame Import blame-1.3.1 as devel/blame. 2008-04-28 20:27:35 +00:00
blib Add DESTDIR support. 2008-06-12 02:14:13 +00:00
bmake Disable bmake regression tests also on AIX. PR 39064. 2008-07-03 11:28:52 +00:00
boaconstructor Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
boehm-gc Remove patch-ad, which breaks self tests on NetBSD-4.99.63/amd64. 2008-05-22 11:45:25 +00:00
boost-build Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
boost-docs Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
boost-headers Apply patches to fix CVE-2008-0171 in boost-headers and boost-libs. 2008-04-28 21:35:25 +00:00
boost-jam Added support for installation to DESTDIR. 2008-02-05 22:39:41 +00:00
boost-libs fix PKGREVISION 2008-05-09 12:50:31 +00:00
boost-python Use $BOOST_BUILD_PATH, not $HOME. PR pkg/38061 from Gary Duzan. 2008-03-16 23:33:57 +00:00
bouml Add DESTDIR support. 2008-06-12 02:14:13 +00:00
buddy Add DESTDIR support. 2008-06-12 02:14:13 +00:00
bugzilla Update to 2.22.5 2008-08-17 09:21:47 +00:00
bugzilla3 Update to 3.0.5 2008-08-17 09:24:38 +00:00
buildtool Add DESTDIR support. 2008-06-20 01:09:05 +00:00
buildtool-doc
byacc Fix denial of sevice vulnerability in Berkeley yacc (CVE-2008-3196). 2008-07-24 17:13:00 +00:00
bzr - sort PLIST 2008-07-20 09:02:51 +00:00
c-cpp-reference Add DESTDIR support. 2008-06-20 01:09:05 +00:00
c4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cbrowser Fix path to wish. Add DESTDIR support. Bump revision. 2007-08-30 16:45:39 +00:00
ccache Allow overriding the default cache size cap at compile time. 2008-05-22 14:20:08 +00:00
cdecl Add DESTDIR support. 2008-06-20 01:09:05 +00:00
cdk Add DESTDIR support. 2008-06-20 01:09:05 +00:00
cfitsio Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cflow Add i18n support (PR 37581) and mark as DESTDIR safe. 2007-12-21 20:25:29 +00:00
cflow-mode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cgdb Another typo fixed that prevented installation 2008-04-23 14:18:03 +00:00
check Marked as DESTDIR ready. 2008-04-16 13:03:43 +00:00
chmlib Add DESTDIR support. 2008-06-12 02:14:13 +00:00
chrpath Import chrpath-0.13 as devel/chrpath. 2008-02-28 23:38:10 +00:00
cmake Update to version 2.4.8. ChangeLog does not include relases, and I don't 2008-02-06 07:01:17 +00:00
cmake-mode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
coconut Add DESTDIR support. 2008-06-12 02:14:13 +00:00
codeville Fix pathname substitution. 2008-06-13 05:57:07 +00:00
cogito Add DESTDIR support. 2008-06-12 02:14:13 +00:00
compiz-bcop Add DESTDIR support. 2008-06-12 02:14:13 +00:00
compizconfig-backend-gconf Add DESTDIR support. 2008-06-12 02:14:13 +00:00
confuse Change my email address. 2008-08-13 13:20:14 +00:00
cook Needs -lintl on Solaris. 2007-11-07 08:37:51 +00:00
cppunit Yet another doxygen catchup. Bump revision. 2008-06-20 11:48:03 +00:00
cpuflags add a (c) to this 2008-07-21 10:46:16 +00:00
cqual Fix broken build with gcc4. 2008-07-27 20:10:42 +00:00
cscope Supports DESTDIR. 2008-06-07 00:36:57 +00:00
cssc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cut initial import for cut (C Unit Tester) 2008-01-21 11:08:33 +00:00
cvs2cl Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvs2html Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvs2p4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvs2svn Install cvs2svn-example.options in ${PREFIX}/share/examples/cvs2svn/. 2008-07-30 15:22:02 +00:00
cvsclone Initial import of cvsclone: 2008-03-12 10:16:05 +00:00
cvsd
cvsdiff2patch Add devel/cvsdiff2patch, a simple utility which, in the words of the 2007-11-29 10:11:13 +00:00
cvsgraph Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvslock Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cvsps Honour PKGMANDIR. 2008-02-03 15:54:27 +00:00
cvsup Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
cvsup-bin Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvsup-gui Modular Xorg support. 2007-10-13 21:20:54 +00:00
cvsup-gui-bin Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvsync PR pkg/38615: Hasso Tepper: Fix build on DragonFlyBSD > 1.11. 2008-05-09 10:06:10 +00:00
cxref Add DESTDIR support. 2008-06-12 02:14:13 +00:00
darcs Update darcs to 2.0.2. 2008-07-20 00:38:44 +00:00
darts Update devel/darts to 0.32 which is needed by newer chasen. 2008-08-03 15:21:56 +00:00
ddd
dejagnu Fix DESTDIR. 2008-06-16 13:45:55 +00:00
dev86 DESTDIR support. 2008-08-07 14:05:56 +00:00
devhelp update to 0.19.1 2008-05-29 17:14:18 +00:00
device-driver-doc-de Fix DESTDIR. 2008-04-07 16:53:38 +00:00
devIL Add DESTDIR support. 2008-06-12 02:14:13 +00:00
dia2code Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
diffutils Add DESTDIR support. 2008-06-12 02:14:13 +00:00
distcc Fix DESTDIR. 2008-04-07 16:53:38 +00:00
distccmon-gnome Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
distccmon-gtk Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
dlcompat
dmake Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
dmalloc Add DESTDIR support. 2008-05-23 17:33:37 +00:00
doc++ Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead. 2007-10-16 23:48:58 +00:00
doxygen Revert "doxygen" package to its broken state as requested by 2008-08-19 16:35:25 +00:00
doxymacs If the Emacs flavour is "xemacs", don't pull in the www/w3 support, pull in 2008-08-11 08:51:05 +00:00
eclipse Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
edcommon Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
eel Add DESTDIR support. 2008-06-12 02:14:13 +00:00
eet Update to eet-1.0.1 from e17. This is the first real release and no real 2008-06-22 01:21:31 +00:00
electricfence Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
elf
elfsh Update MASTER_SITES/HOMEPAGE, from Zafer Aydogan. 2007-11-18 10:39:56 +00:00
elib Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
emacs-ilisp Assert OWNERship of some packages, relinquish others entierly. 2008-05-25 13:16:10 +00:00
emacs20-elib
epydoc Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
equeue
eric3 Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
error
etrace Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
exctags ctags-5.7 (04 Sep 2007) 2007-11-19 06:42:21 +00:00
exempi Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ExmanIDE Add DESTDIR support. 2008-06-12 02:14:13 +00:00
fann
fann-devel
fastdep Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ffcall Add DESTDIR support. 2008-06-12 02:14:13 +00:00
fhist
flex Also add malloc.c as required by configure. 2008-05-21 12:54:32 +00:00
flim It's not EMACS_TYPE but EMACS_FLAVOR which switches "emacs" / "xemacs". 2007-11-12 05:34:10 +00:00
florist Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
fortran-utils Needs GNU nroff to format catpages with -mandoc. 2008-02-07 13:24:36 +00:00
fromcvs Update to 0.0.0.124: 2008-06-21 15:58:58 +00:00
ftnchek
g-wrap Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gail update to 1.22.3 2008-07-14 17:06:36 +00:00
GConf Drop maintainership 2008-04-30 13:38:14 +00:00
GConf-ui update to 2.20.1 2007-10-31 19:46:17 +00:00
gconfmm update to 2.22.0 2008-06-23 16:45:52 +00:00
gcvs Fix broken 64-bit build. 2008-08-17 04:01:37 +00:00
gdb Some changes take a long time. This package had been broken since two 2008-01-06 19:25:09 +00:00
gdb6 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gdbada Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
gdl Add DESTDIR support. 2008-06-20 01:09:05 +00:00
geany Add DESTDIR support. 2008-06-20 01:09:05 +00:00
generate patch-aa checksum was removed from distinfo during 2.4->2.5 update, 2008-06-06 08:28:09 +00:00
gentle Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
gettext Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gettext-asprintf Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gettext-lib Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gettext-m4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
gettext-tools Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gflib Fix DESTDIR. 2008-04-07 17:14:20 +00:00
giblib
gindent Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glade Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glade-gnome Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glade3 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glib Remove me as maintainer of some package, clame ownership of a few packages. 2008-05-25 14:45:16 +00:00
glib2 update to 2.16.5 2008-07-28 15:27:21 +00:00
glibmm update to 2.16.4 2008-07-28 15:34:40 +00:00
global Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gmake Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
gmp Update to gmp-4.2.3. 2008-08-17 07:56:11 +00:00
gnome-build Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gnome-common Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gnustep-base Changes 1.14.2: 2008-05-25 08:29:21 +00:00
gnustep-examples Catch up with changes in gnustep-base. Bump revision. 2008-06-21 22:43:21 +00:00
gnustep-make Changes 2.0.5: 2008-05-25 08:16:06 +00:00
gnustep-objc
gnustep-objc-lf2 Catch up with gnustep-base changes. Bump revision. 2008-06-21 22:46:36 +00:00
gob2 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gobo-eiffel Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
Gorm Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
gperf Supports DESTDIR. 2008-04-04 15:29:51 +00:00
gputils Update to 0.13.5, OK'd by dogcow@. Changes since 0.13.4: 2008-05-02 16:03:00 +00:00
gsoap
gst-plugins0.10-pango Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gtexinfo Don't use a macro named __(), because __ has internal use in OSF1 system 2008-05-21 12:30:16 +00:00
gtl Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
guile-fcgi Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile-gnome Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
guile-gtk Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile-lib Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile-slib Update to 3.2.1 to match slib. 2008-03-04 09:43:45 +00:00
guile-www Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile16-gtk Mark as destdir ready. 2008-07-14 12:55:56 +00:00
haskell-mode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
hdf Mark as destdir ready. 2008-07-14 12:55:56 +00:00
hdf5 Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
hoe Update hoe package to 1.6.0. 2008-06-22 15:55:26 +00:00
hptools Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
ht Fixed build error. 2007-09-29 12:54:13 +00:00
hugs-HUnit
hugs-unix
idiff Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
idutils
imake Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
intel2gas
isect Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
its4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
jam Update to jam-2.5.2. 2008-03-10 00:09:23 +00:00
java-subversion Version 1.5.0 2008-06-19 22:33:25 +00:00
javacc Fix DESTDIR. 2008-04-07 17:25:56 +00:00
javadeps Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
jflex Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
jgrasp Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
js2-mode Import js2-20080406 as devel/js2-mode. 2008-04-12 13:57:19 +00:00
kdbg Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
kdesdk3 Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
kdevelop Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kdevelop-base Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kdiff3 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
ko-po-check Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kscope Really wants flex. 2008-06-04 09:30:07 +00:00
lcc Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ldapsdk Mark some packages as NOT_FOR_BULK_PLATFORM= Linux-*-* 2008-05-26 22:25:25 +00:00
lemon Import cleaned up lemon-1.0 from pkgsrc-wip: 2008-06-23 14:51:15 +00:00
libarena Update to 20080221 snapshot, primarily because I forgot to put 2008-02-22 08:12:58 +00:00
libargparse Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libast Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libaura
libbegemot Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libbinio Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libbonobo Drop maintainership 2008-04-30 13:38:14 +00:00
libbonoboui Bl3 -lX11, -lICE, and -lSM. If pango does not include X11, configure 2008-05-14 02:24:18 +00:00
libcfg+ Configure always ignores the value specified with "--prefix" and tries to 2008-01-06 01:07:04 +00:00
libcompizconfig needs intltool 2008-06-01 15:32:31 +00:00
libconfig Change my email address. 2008-08-13 13:20:14 +00:00
libctl
libdatrie ftp://linux.thai.net seems not working well, remove. 2008-03-17 12:52:00 +00:00
libdfui
libdnsres Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libdockapp
libebml Update to 0.7.8: 2008-04-28 09:48:13 +00:00
libelf Use the English version of the homepage rather than the German one. 2008-05-21 21:51:02 +00:00
libetm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libevent Fix path. 2008-04-23 05:53:00 +00:00
libextractor Update to version 0.5.20c (needed for gnunet). 2008-08-03 05:07:00 +00:00
libffi Fix lvalue cast on amd64. Mark as DESTDIR safe. 2008-04-03 09:34:40 +00:00
libFoundation Change MASTER_SITES to redirected location. 2007-12-10 01:09:26 +00:00
libgail-gnome Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libgcroots Import libgcroots version 0.2.1. 2008-02-29 13:06:36 +00:00
libgetopt Drop clauses 3 and 4 from TNF licenses 2008-04-29 05:46:08 +00:00
libglade Rename libglade2 to libglade to match the upstream name. 2007-09-21 12:58:54 +00:00
libglademm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libgnome Drop maintainership 2008-04-30 13:38:14 +00:00
libgnomemm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libgnomeui remove explicit esound dependency (still pulled in by libgnome) 2008-05-29 16:34:15 +00:00
libgnomeuimm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libgphoto2 Update to 2.4.2: 2008-08-14 20:30:24 +00:00
libgsf Update to 1.14.8: 2008-03-07 20:22:57 +00:00
libgweather update to 2.22.3 2008-07-15 10:17:23 +00:00
libhfs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libiberty Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libidn Update to libidn-1.9. 2008-07-24 01:35:21 +00:00
libinstaller
libixp Import libixp-0.4 from www.suckless.org. 2008-01-06 21:47:09 +00:00
libjit Add missing files missed in the update. 2008-02-18 16:45:21 +00:00
libjudy DESTDIR support and PLIST refresh, per request by maintainer in PR 38343. 2008-04-05 04:26:31 +00:00
libltdl
libmatchbox Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libmcs Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libmemcache Unbreak patch by removing superfluous ". 2008-07-27 13:39:24 +00:00
libmemmgr It is user-destdir, not user-destir. 2008-03-11 18:40:18 +00:00
libmimedir
libmm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libnet10
libnet11
libntlm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
liboil Update to 0.3.15, changes undocumented. 2008-07-30 09:53:36 +00:00
liboop Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libosip Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libowfat Honour PKGMANDIR. 2008-02-03 15:54:27 +00:00
libportlib It is user-destdir, not user-destir. 2008-03-11 18:40:18 +00:00
libproplist
librfuncs The package supports installation to DESTDIR. 2008-04-06 13:24:00 +00:00
librlog Mark as destdir ready. 2008-07-14 12:55:56 +00:00
librsync Mark as destdir ready. 2008-07-14 12:55:56 +00:00
librxspencer Update librxspencer to 3.8.4. 2008-07-21 02:56:55 +00:00
libscsi Drop -Werror, it doesn't appear to be warns safe: 2008-05-20 20:42:04 +00:00
libsexy Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libsexymm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libsigc++ Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
libsigc++1 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libsigsegv Supports DESTDIR. 2008-01-07 18:15:27 +00:00
libslang Needs serialised build. 2008-06-23 16:15:07 +00:00
libslang2 Import devel/libslang2 (version 2.1.3). This is the current 2008-08-09 21:22:11 +00:00
libsmi add missing manpages and empty directories 2008-07-15 10:18:30 +00:00
libstash
libstatgrab Add PLIST_VARS setting missing from previous commit. 2008-04-09 16:21:48 +00:00
libstree Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libstroke Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libtai #include <unistd.h> in leapsecs_read.c so we can read leapsecs.dat. 2008-07-30 10:36:27 +00:00
libtar Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libtecla Patch out bogus rpaths that point to the build directory. 2008-08-17 05:10:59 +00:00
libthai ftp://linux.thai.net seems not working well, remove. 2008-03-17 12:52:00 +00:00
libtool Added commented-out LICENSE=something. 2007-11-11 11:35:48 +00:00
libtool-base Don't force /bin/sh on Solaris, we want the bootstrap shell. 2008-07-11 11:27:24 +00:00
libtool-info
libts Fix spelling of PKG_DESTDIR_SUPPORT. 2008-07-05 12:02:54 +00:00
libusb The package supports installation to DESTDIR. 2008-06-14 20:00:15 +00:00
libwhisker2 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libwnck update to 2.22.3 2008-07-15 10:19:56 +00:00
lincvs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ltsa Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
lwp Mark as destdir ready. 2008-07-14 12:55:56 +00:00
m4 Fix build on DragonFly using Matt Dillon's patch. 2008-04-29 13:54:55 +00:00
m17n-lib Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
makedepend Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
makedepf90
maketool Reset maintainer on his request. 2007-12-12 20:42:28 +00:00
mantis Update to 1.1.2 2008-06-21 15:17:00 +00:00
meld update meld to 1.2nb1: 2008-07-21 07:53:13 +00:00
mell Import mell version 1.0.0. 2008-03-02 12:26:08 +00:00
memcached revbumps due to libevent update. 2008-04-22 18:06:09 +00:00
mercurial add patch from upstream CVS to fix path checking on git style patch 2008-07-19 13:36:51 +00:00
mk-files Wrote ${.ALLSRC} instead of $> to make the file more readable for those 2008-01-05 21:48:53 +00:00
mkcmd Support user-destdir. 2008-08-19 23:41:05 +00:00
mono-addins Mark as destdir ready. 2008-07-14 12:55:56 +00:00
mono-tools Mark as destdir ready. 2008-07-14 12:55:56 +00:00
monodevelop since we updated gtksourceview quite a long time ago we no 2008-08-13 07:47:02 +00:00
monotone Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
monotone-server Update to 0.40: depend on monotone-0.40. 2008-04-12 14:35:28 +00:00
monotone-viz Checksums for patch-a{a,b} were removed from distinfo during update 2008-06-06 08:29:29 +00:00
mowgli Mark as destdir ready. 2008-07-14 12:55:56 +00:00
mph Fix installation. 2008-04-07 17:43:14 +00:00
nana
nasm Add a patch from the "nasm" GIT repository to fix a crash triggered by 2008-06-17 14:06:25 +00:00
nbitools
ncurses Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
ncursesw Add missing @dirrm. 2008-06-08 09:42:20 +00:00
netbeans-ide Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
netbsd-iscsi-initiator Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
netbsd-iscsi-target Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
netcdf MAKE_JOBS_SAFE=no. From ASau on #pkgsrc. 2007-12-10 10:07:55 +00:00
newfile
newt python support was added, remove from TODO. 2008-04-13 09:59:32 +00:00
noweb Fix patch-ac: Linux mktemp(1) fails to be compatible with the original BSD 2008-03-08 16:28:23 +00:00
nqc
nsis Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
nspr Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
nspr-reference Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
nss Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
ObjectiveLib Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ocaml-findlib Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
ode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ogre Added fixes for g++4. 2007-12-13 10:41:06 +00:00
opencm Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
opengrok OpenGrok 0.6.1. 2008-04-20 16:08:20 +00:00
ossp-uuid Update to version 1.6.1. The relevant ChangeLog entries follow: 2008-07-14 00:02:38 +00:00
p4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4-docs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4d Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4pr Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4web Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p5-Algorithm-Annotate Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Algorithm-C3 Import p5-Algorithm-C3-0.07 - needed by p5-Class-C3 2008-06-24 15:03:14 +00:00
p5-Algorithm-Dependency - updated pkg 2008-02-01 11:48:44 +00:00
p5-Algorithm-Diff The package needs no C compiler. 2008-01-08 20:41:00 +00:00
p5-Algorithm-Merge - updated version to 0.08 2007-12-09 22:07:38 +00:00
p5-AnyEvent updated to 4.22 2008-07-21 08:30:01 +00:00
p5-App-CLI Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-App-Cmd updated to 0.013 2008-07-21 11:59:33 +00:00
p5-AppConfig Updated devel/p5-AppConfig to 1.66 2008-05-28 22:01:15 +00:00
p5-AppConfig-Std Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Array-Compare Update from version 1.15 to 1.16. 2008-08-05 21:32:40 +00:00
p5-Array-RefElem Added devel/p5-Array-RefElem version 1.00 2008-05-30 12:03:27 +00:00
p5-AtExit Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Attribute-Handlers The package supports installation to DESTDIR. 2008-04-06 15:22:07 +00:00
p5-AutoLoader Import p5-AutoLoader version 5.66. 2008-08-11 13:06:47 +00:00
p5-B-Keywords Update from version 1.06 to 1.08. Changes: 2008-07-17 11:58:38 +00:00
p5-B-Utils Add DESTDIR support. 2008-07-27 18:10:23 +00:00
p5-Bit-Vector Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-BSD-Resource Update from version 1.28 to 1.29.01 (original has 1.2901, but 2008-07-17 13:52:44 +00:00
p5-Cache Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Cache-Cache The package supports installation to DESTDIR. 2008-04-06 14:36:04 +00:00
p5-Cache-FastMmap - updated to 1.28 2008-07-18 09:51:55 +00:00
p5-Cache-Memcached Fixing error reported by babylon5.NetBSD.org weekly pkgsrc output (missing newline) 2007-12-16 07:13:15 +00:00
p5-Cache-Simple-TimedExpiry Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-capitalization Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Carp-Assert Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Carp-Assert-More Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Carp-Clan Updated devel/p5-Carp-Clan to 6.00 2008-05-28 21:59:39 +00:00
p5-CLASS Import p5-CLASS version 1.00 (from pkgsrc-wip, more or less). 2008-07-26 19:51:37 +00:00
p5-Class-Accessor Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Accessor-Chained Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Accessor-Grouped Add Class-Accessor-Grouped-0.08001 (needed by p5-Data-Currency) 2008-06-24 14:59:38 +00:00
p5-Class-Adapter - updated to 1.04 2008-07-17 08:53:12 +00:00
p5-Class-Autouse Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Base Added devel/p5-Class-Base version 0.03 2008-07-14 09:19:15 +00:00
p5-Class-C3 Import Class-C3-0.19 (needed by p5-Class-Accessor-Grouped) 2008-06-24 15:01:07 +00:00
p5-Class-C3-Componentised Added devel/p5-Class-C3-Componentised version 1.0003 2008-07-14 09:22:22 +00:00
p5-Class-C3-XS Import p5-Class-C3-XS-0.08 - Needed by p5-Class-C3 2008-06-24 15:04:56 +00:00
p5-Class-Container The package supports installation to DESTDIR. 2008-04-06 15:34:22 +00:00
p5-Class-Data-Accessor Update from version 0.04003 to 0.04004. Changes: 2008-08-13 07:31:16 +00:00
p5-Class-Data-Inheritable Updated to version 0.08. 2008-04-06 15:05:27 +00:00
p5-Class-ErrorHandler Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Factory Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Factory-Util Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Fields Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Gomor Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Inner Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Inspector Update to version 1.23. Changes: 2008-06-21 14:32:25 +00:00
p5-Class-ISA Added devel/p5-Class-ISA version 0.33 2008-07-14 09:23:12 +00:00
p5-Class-Loader Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-MakeMethods Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Method-Modifiers Import p5-Class-Method-Modifiers version 1.01. 2008-07-22 23:18:55 +00:00
p5-Class-MethodMaker Update from version 2.11 to 2.12. Changes: 2008-07-22 21:57:01 +00:00
p5-Class-MOP Update from version 0.63 to version 0.64. 2008-08-04 15:09:24 +00:00
p5-Class-ObjectTemplate Mark as destdir ready. 2008-07-14 12:55:56 +00:00
p5-Class-ReturnValue Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Singleton Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-Std - updated to 0.0.9 2008-07-17 09:48:06 +00:00
p5-Class-Trigger Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-WhiteHole Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-XML Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Class-XPath Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Clone - updated to 0.29 2008-07-17 09:51:49 +00:00
p5-Clone-PP Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Compress-Raw-Zlib Updated to version 2.012. 2008-07-17 17:00:24 +00:00
p5-Compress-Zlib Updated devel/p5-Compress-Zlib to 2.011 2008-05-28 22:12:08 +00:00
p5-Config-Any Update from version 0.12 to 0.14. Changes: 2008-08-11 12:04:46 +00:00
p5-Config-General Updated devel/p5-Config-General to 2.40 2008-07-15 09:04:40 +00:00
p5-Config-IniFiles Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Config-Std Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Config-Tiny - updated to 2.12 2007-12-09 22:12:08 +00:00
p5-Contextual-Return Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Curses - updated to 1.23 2008-07-17 11:28:06 +00:00
p5-Curses-UI Updated devel/p5-Curses-UI to 0.9605 2008-08-12 09:41:08 +00:00
p5-Curses-UI-POE One more 0 for the version number. 2008-08-13 09:09:21 +00:00
p5-Data-Alias Import p5-Data-Alias version 1.07. 2008-07-22 23:52:21 +00:00
p5-Data-Buffer Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Data-Compare Import p5-Data-Compare version 1.19. 2008-08-06 15:19:53 +00:00
p5-Data-Dump Updated to version 1.08. 2008-01-09 01:21:49 +00:00
p5-Data-Dump-Streamer Initial import of p5-Data-Dump-Streamer version 2.08.40 in the 2008-08-02 07:58:24 +00:00
p5-Data-Hierarchy Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Data-OptList Updated devel/p5-Data-OptList to 0.103 2008-05-28 21:58:04 +00:00
p5-Data-Page Added devel/p5-Data-Page version 2.00 2008-07-14 09:24:06 +00:00
p5-Data-Pageset Added devel/p5-Data-Pageset version 1.05 2008-07-14 09:24:20 +00:00
p5-Data-ShowTable Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Data-TemporaryBag Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Data-UUID Update from version 0.14.8 to 1.14.8. 2008-07-17 14:33:18 +00:00
p5-Data-Visitor Update from version 0.17 to 0.18. 2008-07-22 23:59:14 +00:00
p5-Date-Business Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Date-Calc Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Date-Manip Update to 5.54: 2008-05-30 12:32:16 +00:00
p5-Date-Simple Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Devel-Caller Added devel/p5-Devel-Caller version 2.03 2008-07-14 09:24:50 +00:00
p5-Devel-Cycle - updated to 1.10 2008-07-16 13:43:37 +00:00
p5-Devel-LexAlias Added devel/p5-Devel-LexAlias version 0.04 2008-07-14 09:25:04 +00:00
p5-Devel-PPPort Import devel/p5-Devel-PPPort version 3.14. ("Perl/Pollution/Portability") 2008-08-11 12:28:01 +00:00
p5-Devel-Profile - updated to 1.05 2007-12-09 22:14:04 +00:00
p5-Devel-SmallProf updated to 2.02 2008-07-21 14:40:49 +00:00
p5-Devel-StackTrace updated to 1.1902 2008-07-22 08:01:34 +00:00
p5-Devel-Symdump - updated to 2.08 2007-12-09 22:17:20 +00:00
p5-enum Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
p5-Error updated to 0.17015 2008-07-22 08:05:15 +00:00
p5-Event - updated to 1.11 2008-07-15 18:17:13 +00:00
p5-Event-ExecFlow Set PKG_DESTDIR_SUPPORT=user-destdir & USE_LANGUAGES=# empty 2008-06-01 19:34:36 +00:00
p5-Event-RPC - updated to 1.00 2008-07-16 14:09:53 +00:00
p5-Exception-Class Updated to version 1.24. 2008-04-06 15:11:28 +00:00
p5-Expect - updated to 1.20 2008-02-09 16:36:44 +00:00
p5-ExtUtils-AutoInstall Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-ExtUtils-CBuilder Update to 0.23: 2008-04-25 07:31:35 +00:00
p5-ExtUtils-Depends Update to 0.300: 2008-04-21 14:38:09 +00:00
p5-ExtUtils-F77 updated to 1.16 2008-07-16 14:45:56 +00:00
p5-ExtUtils-Install Import devel/p5-ExtUtils-Install-1.50 2008-05-29 08:22:30 +00:00
p5-ExtUtils-MakeMaker Update from version 6.30 to 6.44. 2008-07-26 19:11:53 +00:00
p5-ExtUtils-ParseXS Updated devel/p5-ExtUtils-ParseXS to 2.19 2008-05-28 21:55:42 +00:00
p5-ExtUtils-PkgConfig Updated to version 1.11. 2008-03-17 22:31:21 +00:00
p5-ExtUtils-XSBuilder Update from version 0.27 to 0.28. Changes: 2008-08-07 08:58:34 +00:00
p5-File-BaseDir Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-chdir Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-DesktopEntry Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-DirSync - updated to 1.22 2008-07-17 16:29:44 +00:00
p5-File-Find-Rule Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-Flat Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-FlockDir Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-HomeDir Need Mac::Carbon for Darwin. 2008-08-09 02:38:17 +00:00
p5-File-MimeInfo Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-Modified Roman Kulik cannot maintain those packages anymore (he told me in 2008-07-20 16:09:34 +00:00
p5-File-NFSLock Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-Path-Expand Initial import of p5-File-Path-Expand version 1.02 in the NetBSD 2008-08-18 22:10:49 +00:00
p5-File-PathConvert Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-Slurp Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-Temp Update to 0.20: 2008-01-15 23:32:05 +00:00
p5-File-Tempdir Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-Type Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-File-Which Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-FileHandle-Unget Update from 0.1621 to 0.1622. 2008-08-05 10:12:54 +00:00
p5-FileKGlob Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-FreezeThaw Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Getopt-ArgvFile Update from version 1.10 to 1.11. 2008-07-30 13:01:13 +00:00
p5-Getopt-Euclid Update to version 0.2.0. 2008-07-26 06:58:39 +00:00
p5-Getopt-Long Update to version 2.37. 2008-07-27 12:53:26 +00:00
p5-Getopt-Long-Descriptive Update from version 0.06 to 0.074. Changes: 2008-07-30 13:15:37 +00:00
p5-Getopt-Mixed Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Getopt-Simple Update from version 1.48nb2 to 1.49. 2008-07-30 12:59:06 +00:00
p5-gettext The package supports installation to DESTDIR and needs a C compiler. 2008-01-13 17:47:25 +00:00
p5-glib2 Update from version 1.182 to 1.183. 2008-07-27 16:03:32 +00:00
p5-Graph updated to 0.84 2008-07-22 19:00:37 +00:00
p5-Hash-Case Update from version 1.003 to 1.006. 2008-07-20 21:47:40 +00:00
p5-Heap Update from version 0.71 to 0.80. 2008-07-20 21:53:32 +00:00
p5-Hook-LexWrap Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Inline Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-All Update from version 0.33 to 0.38. 2008-07-20 22:15:21 +00:00
p5-IO-Capture Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-IO-Compress-Base Updated to version 2.012. 2008-07-17 17:10:18 +00:00
p5-IO-Compress-Zlib Updated to version 2.012. 2008-07-17 18:49:47 +00:00
p5-IO-Digest Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-IO-InSitu Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-IO-Interactive Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-LockedFile Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-Multiplex Update from version 1.08 to 1.09. 2008-07-20 22:21:45 +00:00
p5-IO-Null Update from version 0.02 to 1.01. 2008-08-05 12:53:33 +00:00
p5-IO-Pager Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-Prompt Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-String The package needs no C compiler. 2008-01-08 20:41:00 +00:00
p5-IO-stringy Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Stty Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-Tee Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-Tty - updated to 1.07 2008-02-09 16:34:43 +00:00
p5-IO-Util Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IO-Zlib Updated to version 1.09. 2008-01-08 20:05:40 +00:00
p5-IPC-Run Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IPC-Run3 - updated to 0.040 2008-02-06 15:25:28 +00:00
p5-IPC-Shareable Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IPC-SharedCache Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-IPC-ShareLite Updated to version 0.13. 2008-04-06 14:23:55 +00:00
p5-LDAP Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-List-MoreUtils Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Log-Agent Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Log-Dispatch - updated package to 2.21 2008-02-14 10:50:49 +00:00
p5-Log-Dispatch-Config updated to 1.02 2008-07-23 15:21:00 +00:00
p5-Log-Dispatch-DBI Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Log-Dispatch-FileRotate updated to 1.18 2008-07-23 15:17:50 +00:00
p5-Log-Log4perl updated to 1.17 2008-07-21 08:47:16 +00:00
p5-Log-LogLite Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Mac-Carbon Import p5-Mac-Carbon-0.77 as devel/p5-Mac-Carbon. 2008-08-09 02:35:21 +00:00
p5-Make Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Memoize Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Memoize-ExpireLRU Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Module-Build The package supports installation to DESTDIR. 2008-01-08 23:03:22 +00:00
p5-Module-CoreList Updated devel/p5-Module-CoreList to 2.15 2008-05-28 21:53:01 +00:00
p5-Module-Dependency Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Module-Find Added devel/p5-Module-Find version 0.06 2008-07-14 09:25:19 +00:00
p5-Module-Install Update from version 0.76nb1 to 0.77. 2008-08-11 12:33:37 +00:00
p5-Module-Install-RTx Update to version 0.23. 2008-07-24 02:03:39 +00:00
p5-Module-Install-Substitute Update to version 0.03 2008-07-24 14:15:57 +00:00
p5-Module-Load Import p5-Module-Load version 0.12. 2008-08-06 15:54:42 +00:00
p5-Module-Pluggable Updated devel/p5-Module-Pluggable to 3.8 2008-05-28 21:50:24 +00:00
p5-Module-Refresh Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Module-ScanDeps Add missing dependency: 2008-06-03 11:53:11 +00:00
p5-Module-Starter - updated to 1.470 2008-07-18 12:48:31 +00:00
p5-Module-Starter-PBP Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Module-Versions-Report - updated to 1.05 2008-07-18 12:55:11 +00:00
p5-Moose Update from version 0.54 to version 0.55. 2008-08-04 15:23:30 +00:00
p5-MooseX-Getopt Add DESTDIR support. 2008-07-27 21:56:50 +00:00
p5-MooseX-Object-Pluggable Add DESTDIR support 2008-07-27 22:01:21 +00:00
p5-Mouse Update to version 0.06 from version 0.05. 2008-07-28 18:19:23 +00:00
p5-MRO-Compat import devel/p5-MRO-Compat-0.09 (needed by devel/p5-Class-Accessor-Grouped) 2008-06-24 15:07:24 +00:00
p5-namespace-clean Import p5-namespace-clean version 0.08. 2008-07-22 22:57:04 +00:00
p5-Net-CIDR Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Net-Netmask Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-NEXT Roman Kulik cannot maintain those packages anymore (he told me in 2008-07-20 16:09:34 +00:00
p5-Object-InsideOut Update from version 3.34 to 3.45. 2008-08-11 12:48:45 +00:00
p5-Object-Realize-Later Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Object-Signature Added devel/p5-Object-Signature version 1.05 2008-07-14 09:25:45 +00:00
p5-OLE-Storage_Lite Update from version 0.15 to 0.17. Changes: 2008-08-11 12:43:24 +00:00
p5-OOTools Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Package-Generator Initial import of p5-Package-Generator version 0.102 in the NetBSD 2008-08-01 12:06:24 +00:00
p5-PadWalker Added devel/p5-PadWalker version 1.7 2008-07-14 09:26:02 +00:00
p5-PAR Update from version 0.89nb2 to 0.982. 2008-08-11 13:11:19 +00:00
p5-PAR-Dist Updated from version 0.29 to 0.31. Changes: 2008-08-11 12:53:35 +00:00
p5-Params-Util Update from version 0.31 to 0.33. Changes: 2008-06-22 17:01:46 +00:00
p5-Params-Validate Updated devel/p5-Params-Validate to 0.91 2008-05-28 21:29:55 +00:00
p5-parent Add devel/p5-parent-0.221 2008-05-30 11:52:39 +00:00
p5-Parse-RecDescent The package supports installation to DESTDIR. 2008-02-07 21:28:29 +00:00
p5-Parse-Yapp Add HOMEPAGE using search.cpan.org. Otherwise no change, so no bump. 2008-08-17 12:42:43 +00:00
p5-PatchReader Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Path-Class Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-PathTools Roman Kulik cannot maintain those packages anymore (he told me in 2008-07-20 16:09:34 +00:00
p5-Perl-Critic The Perl 5 module 'version' is required by the current version 2008-08-15 16:57:07 +00:00
p5-perl-headers Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
p5-Perl-Tidy Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Perl6-Export Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Perl6-Export-Attrs Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Perl6-Junction - initially imported to pkgsrc - needed by other modules 2008-07-18 12:04:32 +00:00
p5-Perl6-Slurp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-PerlIO-eol Update from version 0.13nb2 to 0.14. 2008-08-11 14:49:02 +00:00
p5-PerlIO-via-dynamic Update from version 0.11nb2 to 0.13. 2008-08-11 14:51:38 +00:00
p5-PerlIO-via-symlink Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-POE Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-PPI Note compatibility with p5-PPI-XS package. 2008-08-14 12:53:11 +00:00
p5-PPI-XS Import p5-PPI-XS-0.900 as devel/p5-PPI-XS. 2008-08-14 12:45:50 +00:00
p5-prefork Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Proc-Daemon Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Proc-PID-File Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Proc-Pidfile Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Proc-ProcessTable Update from version 0.41 to 0.44. Changes: 2008-08-06 22:01:53 +00:00
p5-Proc-Simple Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-PV Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Readonly Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Readonly-XS Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Regexp-Assemble updated to 0.34 2008-07-23 22:36:24 +00:00
p5-Regexp-MatchContext Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Regexp-Shellish Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Return-Value Roman Kulik cannot maintain those packages anymore (he told me in 2008-07-20 16:09:34 +00:00
p5-Rose-Object Update from version 0.85 to 0.85.3 (0.853 in upstream). Changes: 2008-08-06 20:59:20 +00:00
p5-Safe-Hole Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Scalar-List-Utils The package supports installation to DESTDIR. 2008-04-06 15:26:12 +00:00
p5-Schedule-RateLimiter Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Scope-Guard Added devel/p5-Scope-Guard version 0.03 2008-07-14 09:26:16 +00:00
p5-SDL Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Set-IntSpan Update from version 1.09 to 1.13, OK'ed by maintainer. 2008-08-17 14:27:30 +00:00
p5-Set-Object Update from version 1.22 to 1.25. Changes: 2008-07-27 18:55:04 +00:00
p5-Set-Scalar Update from version 1.17 to 1.22. 2008-07-27 18:40:44 +00:00
p5-Smart-Comments Update to version 1.0.3 2008-07-26 06:52:00 +00:00
p5-Sort-Maker Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Sort-Versions Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Spiffy Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Spoon updated to 0.24 2008-07-23 16:08:51 +00:00
p5-Storable Update to 2.18: 2007-11-29 15:07:16 +00:00
p5-String-Format Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Sub-Exporter Updated devel/p5-Sub-Exporter to 0.979 2008-05-28 21:28:39 +00:00
p5-Sub-Identify Add DESTDIR support. 2008-07-27 22:37:54 +00:00
p5-Sub-Install Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Sub-Installer Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Sub-Name Add DESTDIR support. 2008-07-27 22:37:54 +00:00
p5-Sub-Override Initial import of p5-Sub-Override version 0.08 in the NetBSD Packages 2008-08-19 19:23:50 +00:00
p5-Sub-Uplevel Updated devel/p5-Sub-Uplevel to 0.1901 2008-05-28 21:27:04 +00:00
p5-subversion Version 1.5.0 2008-06-19 22:33:25 +00:00
p5-SVN-Mirror Update from version 0.72 to 0.74. Changes: 2008-07-27 20:45:06 +00:00
p5-SVN-Notify updated to 2.77 2008-07-21 08:42:23 +00:00
p5-SVN-Simple Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Task-Weaken - updated to 1.02 2008-07-15 22:42:36 +00:00
p5-Term-ProgressBar Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Term-Prompt Update from version 1.03 to 1.04. 2008-07-27 17:33:07 +00:00
p5-Term-ReadKey The package supports installation to DESTDIR and needs a C compiler. 2008-01-13 18:17:36 +00:00
p5-Term-ReadLine Update from version 1.16 to 1.17a. Changes: 2008-07-27 17:29:36 +00:00
p5-Term-ReadPassword Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Term-Screen Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Term-Size Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-ClassAPI Update from version 1.04 to 1.05. Changes: 2008-07-27 17:10:10 +00:00
p5-Test-Cmd Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Deep - updated to 0.103 2008-07-15 22:19:37 +00:00
p5-Test-Differences Update from version 0.47 to 0.48.01. Changes: 2008-08-06 21:09:54 +00:00
p5-Test-Exception Update to 0.27: 2008-04-16 09:04:22 +00:00
p5-Test-File-Contents - updated package to 0.05 2007-12-11 11:56:54 +00:00
p5-Test-Harness Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Inline - updated to 2.208 2008-02-06 15:26:59 +00:00
p5-Test-LongString Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Manifest Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Memory-Cycle Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-MockObject import p5-p5-Test-MockObject-1.09 2008-06-23 04:02:53 +00:00
p5-Test-NoWarnings - updated package to 0.084 2007-12-11 11:58:04 +00:00
p5-Test-Object Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Output Import p5-Test-Output version 0.10. 2008-08-05 10:24:10 +00:00
p5-Test-Perl-Critic Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Pod Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Pod-Coverage Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Script - updated to 1.03 2008-07-15 17:38:29 +00:00
p5-Test-Simple Remove stale patch (HI RHAEN) 2008-04-21 14:58:23 +00:00
p5-Test-SubCalls Import p5-Test-SubCalls version 1.07. 2008-08-11 14:18:59 +00:00
p5-Test-Taint Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Test-Tester Updated devel/Test-Tester to 0.107 2008-05-28 21:13:20 +00:00
p5-Test-Unit Update from version 0.24 to 0.25. Changes: 2008-07-27 17:05:08 +00:00
p5-Test-use-ok Import p5-Test-use-ok-0.02 2008-06-23 03:59:19 +00:00
p5-Test-Warn Update from version 0.10 to 0.11. Changes: 2008-07-27 16:53:38 +00:00
p5-Tie-Array-Sorted Import p5-Tie-Array-Sorted-1.41 as devel/p5-Tie-Array-Sorted. 2008-08-09 06:08:31 +00:00
p5-Tie-File Import p5-Tie-File-0.96 as devel/p5-Tie-File. 2008-08-09 06:15:34 +00:00
p5-Tie-IxHash Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Tie-RefHash import p5-Tie-RefHash-1.38 2008-06-23 03:55:33 +00:00
p5-Tie-ToObject import p5-Tie-ToObject-0.03 2008-06-23 03:53:33 +00:00
p5-Tree-DAG_Node Updated devel/p5-Tree-DAG_Node to 1.06 2008-05-28 21:10:32 +00:00
p5-Tree-Simple - updated package to 1.18 2007-12-11 12:04:03 +00:00
p5-Tree-Simple-VisitorFactory import p5-Tree-Simple-VisitorFactory-0.10 2008-06-23 03:51:50 +00:00
p5-UNIVERSAL-can p5-UNIVERSAL-can-1.12 2008-06-23 03:50:23 +00:00
p5-UNIVERSAL-isa Import p5-UNIVERSAL-isa-0.06 2008-06-23 03:46:48 +00:00
p5-UNIVERSAL-moniker Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-UNIVERSAL-require Roman Kulik cannot maintain those packages anymore (he told me in 2008-07-20 16:09:34 +00:00
p5-VCP Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-VCP-Dest-svk Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-version - updated to 0.7501 2008-07-17 09:45:15 +00:00
p5-Want - updated packages to 0.18 2008-02-08 12:45:46 +00:00
p5-WeakRef Add DESTDIR support. 2008-06-12 02:14:13 +00:00
palmpower Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pango Don't build the "atsui" backend under Mac OS X when we are building with 2008-08-19 18:10:22 +00:00
papaya Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pardiff Add DESTDIR support. 2008-06-12 02:14:13 +00:00
patch Add DESTDIR support. 2008-06-12 02:14:13 +00:00
patchutils Add DESTDIR support. 2008-04-21 08:10:22 +00:00
pccts Added support for installation to DESTDIR. 2008-01-03 23:15:47 +00:00
pcl-cvs
pcre Fix a potential buffer overflow in libpcre's compiler (CVE-2008-2371). 2008-07-04 21:30:24 +00:00
pcre++ Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pcre-ocaml Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
pdcurses If FOO is empty, then ${FOO:S/^/-l/} has a value of "-l". This is not 2008-02-27 21:32:45 +00:00
pedisassem
php-gettext Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-gmp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-memcache Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-mode Add a reminder to do something like (require 'php-mode) 2008-08-12 10:41:57 +00:00
php-pcntl Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-posix Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-shmop Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-sysvsem Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-sysvshm Add DESTDIR support. 2008-06-12 02:14:13 +00:00
physfs Add DESTDIR support. 2008-06-12 02:14:13 +00:00
picp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
picprg Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pilrc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pkg-config The va_copy configure checks for the included glib1. 2008-04-16 22:50:43 +00:00
ply Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pmccabe Add DESTDIR support. 2008-06-12 02:14:13 +00:00
popt Update to popt-1.14: 2008-04-13 23:17:52 +00:00
prcs Bump version or revision of all packages that have a runtime dependency 2007-11-08 19:39:42 +00:00
ProjectCenter Fix PLIST for newer gnustep infrastructure. Bump revision. 2008-06-21 18:52:21 +00:00
psvn Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pth Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pthread-sem Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pthread-stublib Fix installation and add DESTDIR support. 2008-01-12 12:35:39 +00:00
pvs Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
pwlib Fix build failure on -current caused by openssl API change. 2008-08-17 21:46:06 +00:00
py-at-spi Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-babel Import Babel-0.9.3 as devel/py-babel. 2008-08-01 08:35:40 +00:00
py-checker Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-cheetah Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-compizconfig Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-ctypes Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
py-curses Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-cursespanel Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-distutils
py-expect Adapted MASTER_SITES to changed project directory at sourceforge. 2007-12-11 22:41:54 +00:00
py-fann Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-game Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-generate Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-gobject update to 2.14.2 2008-05-29 16:30:09 +00:00
py-gobject-shared update to 2.14.2 2008-05-29 16:30:09 +00:00
py-idle Remove removed Python versions. 2008-04-25 18:28:33 +00:00
py-InlineEgg Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-kjbuckets Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-kqueue Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-logging Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-newt Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-Optik Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-pexpect Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
py-pqueue
py-Pyro Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-readline Require newer Python base version that has configure output with 2008-07-14 14:43:45 +00:00
py-setuptools Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
py-subversion Version 1.5.0 2008-06-19 22:33:25 +00:00
py-TPG Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-unit Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-unitgui Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-urwid Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-zconfig Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-ZopeInterface Add DESTDIR support. 2008-06-12 02:14:13 +00:00
python-mode Update to latest version, 1.0. Release notes: 2008-04-13 22:12:56 +00:00
qconf Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
quilt Add --without-rpmbuild to CONFIGURE_ARGS. Otherwise, the configure 2008-02-08 19:29:25 +00:00
ragel
rake Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
rapidsvn Drop explicit include of apr0 buildlink file, enabling building this 2008-01-31 16:37:35 +00:00
ratfor Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
rcs MAKE_JOBS_SAFE= no 2008-02-15 15:48:46 +00:00
rdp Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
re2c Updated to version 0.12.3. 2007-08-24 14:56:13 +00:00
readline Update from version 5.2nb1 to 5.2nb2. 2008-08-13 11:11:38 +00:00
refinecvs Fix DESTDIR. 2008-04-07 17:52:07 +00:00
Renaissance Downgrade to destdir for now until GNUstep ownership logic is fixed. 2008-07-10 13:27:02 +00:00
roundup Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
rox-lib Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
rpc2 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rscode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
rsltc Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
rt-mysql Fixed many pkglint warnings in order to make the build possible for 2007-09-11 22:21:12 +00:00
rt-pgsql
rt3 RT's installed script PREFIX/sbin/rt-dump-database needs the Perl Module 2008-07-23 18:00:55 +00:00
RTFM Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
RTx-RightsMatrix Drop maintainership of RT-related packages. I am no longer maintaining a 2008-04-30 10:20:20 +00:00
RTx-Shredder Drop maintainership of RT-related packages. I am no longer maintaining a 2008-04-30 10:20:20 +00:00
rubigen Update devel/rubigen to 1.3.1. Changes from version 1.2.4 include: 2008-04-29 17:36:18 +00:00
ruby-abstract Add RubyForge's project page as HOMEPAGE. 2008-08-15 16:03:51 +00:00
ruby-activesupport Update ruby-activesupport to 2.1.0. 2008-06-20 04:23:56 +00:00
ruby-amstd Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:42:24 +00:00
ruby-assistance Add RubyForge's project page as HOMEPAGE. 2008-08-15 16:03:51 +00:00
ruby-bsearch Fix destdir installation problem, noted by private mail from joerg@. 2008-06-21 10:12:59 +00:00
ruby-byaccr Use INSTALLATION_DIRS. 2008-03-23 11:08:52 +00:00
ruby-cmd Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-curses Update ruby-curses package to 1.8.7.72. 2008-08-11 06:59:40 +00:00
ruby-debug Update devel/ruby-debug to version 0.10.1. Changes from version 0.10.0 2008-04-14 21:33:04 +00:00
ruby-debug-base Update devel/ruby-debug-base to 0.10.1. Changes from version 0.10.0 2008-04-14 21:33:01 +00:00
ruby-debug-ide Update ruby-ruby-debug-ide pacakge to 0.2.0. 2008-06-22 15:59:54 +00:00
ruby-dhaka Initial import of ruby18-dhaka-2.2.1 as devel/ruby-dhaka. 2008-04-04 15:16:48 +00:00
ruby-eventmachine Initial import of ruby18-eventmachine-0.10.0 as devel/ruby-eventmachine. 2008-04-04 15:16:56 +00:00
ruby-flexmock Update ruby-flexmock package to 0.8.2. 2008-06-22 16:00:58 +00:00
ruby-gettext Drop maintainership. 2008-04-10 07:19:41 +00:00
ruby-gnome2-atk Update to ruby-gnome2-0.17.0rc1 to build with newer gnome packages. 2008-06-19 15:10:28 +00:00
ruby-gnome2-glib Update to ruby-gnome2-glib to 0.17.0rc1 to build with newer gnome packages. 2008-06-19 15:11:24 +00:00
ruby-gnome2-pango Update to ruby-gnome2-pango to 0.17.0rc1 to build with newer gnome packages. 2008-06-19 15:11:45 +00:00
ruby-heckle Fix build with newer versions of Hoe by providing a default value for 2008-04-21 15:53:55 +00:00
ruby-highline Initial import of ruby18-highline-1.4.0 as devel/ruby-highline. 2008-04-04 15:17:21 +00:00
ruby-inline Update ruby-inline pacakge to 3.7.0. 2008-06-22 16:01:43 +00:00
ruby-linecache Update ruby-linecache package to 0.4.3. 2008-06-22 16:04:34 +00:00
ruby-log4r Initial import of ruby18-log4r-1.0.5 as devel/ruby-log4r. 2008-04-04 15:17:37 +00:00
ruby-logging Initial import of ruby18-logging-0.7.1 as devel/ruby-logging. 2008-04-04 15:17:43 +00:00
ruby-memcache Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:42:24 +00:00
ruby-metaid Initial import of ruby18-metaid-1.0 as devel/ruby-metaid. 2008-04-04 15:17:50 +00:00
ruby-mkrf Initial import of ruby18-mkrf-0.2.3 as devel/ruby-mkrf. 2008-04-04 15:17:58 +00:00
ruby-mocha Remove file wrongly imported 2008-04-07 00:38:28 +00:00
ruby-mode Update distinfo for Ruby 1.8.7 patchlevel 22 with sharing distinfo file 2008-06-20 15:50:25 +00:00
ruby-ncurses Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-needle Initial import of ruby18-needle-1.3.0 as devel/ruby-needle. 2008-04-04 15:18:06 +00:00
ruby-parsetree Update ruby-parsetree package to 2.2.0. 2008-06-22 16:05:18 +00:00
ruby-priority-queue Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-racc Mark as destdir ready. 2008-07-14 12:55:56 +00:00
ruby-rbtree Replace HOMEPAGE to RubyForge's project page since previous page was gone. 2008-08-15 16:06:21 +00:00
ruby-rcov Initial import of ruby18-rcov-0.8.1.2.0 as devel/ruby-rcov. 2008-04-04 15:18:21 +00:00
ruby-rcsparse Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:42:24 +00:00
ruby-rd-mode Use more INSTALLATION_DIRS. There should be no functional change. 2008-06-19 15:24:36 +00:00
ruby-readline Update distinfo for Ruby 1.8.7 patchlevel 22 with sharing distinfo file 2008-06-20 15:41:55 +00:00
ruby-rgl Update ruby-rgl to version 0.3.1. Changes from version 0.2.3 include: 2008-04-04 15:18:28 +00:00
ruby-rspec Update ruby-rspec package to 1.1.4. 2008-06-22 16:05:53 +00:00
ruby-SDL Update devel/ruby-SDL to 2.0.1. Changes from version 1.3.1 include: 2008-04-23 17:03:49 +00:00
ruby-stream Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-subversion Mark as destdir ready. 2008-07-14 12:55:56 +00:00
ruby-test-spec Initial import of ruby18-test-spec-0.4.0 as devel/ruby-test-spec. 2008-04-04 15:18:41 +00:00
ruby-validatable Initial import of ruby18-validatable-1.6.7 as devel/ruby-validatable. 2008-04-04 15:18:49 +00:00
ruby2ruby Update ruby-ruby2ruby package 1.1.9. 2008-06-22 16:07:09 +00:00
rubyforge Update rubyforge package to 1.0.0. 2008-06-22 16:07:40 +00:00
rudiments Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rvm Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rx DESTDIR support. 2008-04-04 15:24:56 +00:00
sablecc Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
scmcvs Add DESTDIR support. 2008-06-12 02:14:13 +00:00
scmgit +========================+ 2008-08-20 03:04:20 +00:00
scmgit-base +========================+ 2008-08-20 03:04:20 +00:00
scmgit-docs Update to git-1.5.6. 2008-06-24 08:21:04 +00:00
scons
scons-devel
sdcc
SDL Add support for XRandR via x11/libXrandr. Bump PKGREVISION. 2008-05-06 06:36:44 +00:00
SDL-intro-en Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
SDL-intro-ko Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
SDL_gfx Added support for installation to DESTDIR. 2008-01-03 23:22:22 +00:00
SDL_Pango Initial buildlink3 fragment. 2008-01-28 20:15:57 +00:00
SDL_ttf
SDLmm Add DESTDIR support. 2008-06-12 02:14:13 +00:00
semantic Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
semi Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
sfio Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
sgb
sgi-stl Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
sgi-stl-docs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
silc-toolkit
slib Update to 3b1 (3.2.1): 2008-03-04 09:41:51 +00:00
sml-mode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
sparse
sparsehash Add DESTDIR support. 2008-06-20 01:09:05 +00:00
spiff Fix a segfault on NetBSD/amd64 (at least): 2008-07-09 05:02:06 +00:00
splint
st Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
stgit Update to version 0.14.3. 2008-07-25 04:00:59 +00:00
stlport Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
stooop Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
subversion Version 1.5.1 2008-07-31 21:00:39 +00:00
subversion-base Version 1.5.1 2008-07-31 21:00:39 +00:00
sunifdef Import sunifdef-3.1.3. 2008-05-22 03:10:01 +00:00
svk Remove BUILD_DEPENDS for p5-Test-More. 2008-07-03 13:55:40 +00:00
swig Set MAINTAINER to pkgsrc-users@. 2008-08-18 00:55:48 +00:00
syncdir Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
sysexits Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tailor Update to version 0.9.35. I can't locate a ChangeLog, but there probably 2008-06-13 05:01:23 +00:00
tavrasm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tcl-tclcl
tcllib Add DESTDIR support. 2008-06-20 01:09:05 +00:00
teem Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
tet3 Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
tig Update to tig-0.10.1. I cannot find a changelog. If you're interested, 2008-04-06 05:13:45 +00:00
tkcvs
tkdiff Adjust the package, this is version 4.1.4 not 4.1.3. 2008-05-24 14:06:07 +00:00
tla Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
tmake Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tpasm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tre Removed options.mk, since it is not included anymore. 2008-01-05 21:53:37 +00:00
treecc Add missing library to PLIST. 2008-03-19 11:56:46 +00:00
trio Add DESTDIR support. 2008-06-20 01:09:05 +00:00
tvision Fixed build with sunpro. 2008-01-24 19:27:10 +00:00
ucl
ucpp Fix DESTDIR. 2008-04-07 18:17:34 +00:00
unidiff Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
uno Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
valgrind
vanessa_adt Add DESTDIR support. 2008-06-20 01:09:05 +00:00
vanessa_logger Add DESTDIR support. 2008-06-20 01:09:05 +00:00
vanessa_socket Add DESTDIR support. 2008-06-20 01:09:05 +00:00
vtcl Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
wide Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
xdelta Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xdelta3 Fix DESTDIR. 2008-04-07 18:26:21 +00:00
xfce4-dev-tools Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xmake
xorg-util-macros Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xxgdb Remove myself as the maintainer for these packages. I haven't used 2008-04-14 23:31:29 +00:00
yasm Update to version 0.7.1. 2008-08-18 23:33:56 +00:00
z80-asm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ZenTest Update ZenTest package to 3.10.0. 2008-06-22 15:54:37 +00:00
zlib Re-arrange lines to make this more likely to pass pkglint. 2007-08-22 18:36:09 +00:00
Makefile Add & enable p5-Sub-Override 2008-08-19 19:27:01 +00:00