pkgsrc/devel
wiz d98d4a922c Update to 3.81:
Version 3.81

* GNU make is ported to OS/2.

* GNU make is ported to MinGW.  The MinGW build is only supported by
  the build_w32.bat batch file; see the file README.W32 for more
  details.

* WARNING: Future backward-incompatibility!
  Up to and including this release, the '$?' variable does not contain
  any prerequisite that does not exist, even though that prerequisite
  might have caused the target to rebuild.  Starting with the _next_
  release of GNU make, '$?' will contain all prerequisites that caused
  the target to be considered out of date.  See this Savannah bug:
  http://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=16051

* WARNING: Backward-incompatibility!
  GNU make now implements a generic "second expansion" feature on the
  prerequisites of both explicit and implicit (pattern) rules.  In order
  to enable this feature, the special target '.SECONDEXPANSION' must be
  defined before the first target which takes advantage of it.  If this
  feature is enabled then after all rules have been parsed the
  prerequisites are expanded again, this time with all the automatic
  variables in scope.  This means that in addition to using standard
  SysV $$@ in prerequisites lists, you can also use complex functions
  such as $$(notdir $$@) etc.  This behavior applies to implicit rules,
  as well, where the second expansion occurs when the rule is matched.
  However, this means that when '.SECONDEXPANSION' is enabled you must
  double-quote any "$" in your filenames; instead of "foo: boo$$bar" you
  now must write "foo: foo$$$$bar".  Note that the SysV $$@ etc. feature,
  which used to be available by default, is now ONLY available when the
  .SECONDEXPANSION target is defined.  If your makefiles take advantage
  of this SysV feature you will need to update them.

* WARNING: Backward-incompatibility!
  In order to comply with POSIX, the way in which GNU make processes
  backslash-newline sequences in command strings has changed.  If your
  makefiles use backslash-newline sequences inside of single-quoted
  strings in command scripts you will be impacted by this change.  See
  the GNU make manual subsection "Splitting Command Lines" (node
  "Splitting Lines"), in section "Command Syntax", chapter "Writing the
  Commands in Rules", for details.

* WARNING: Backward-incompatibility!
  Some previous versions of GNU make had a bug where "#" in a function
  invocation such as $(shell ...) was treated as a make comment.  A
  workaround was to escape these with backslashes.  This bug has been
  fixed: if your makefile uses "\#" in a function invocation the
  backslash is now preserved, so you'll need to remove it.

* New command-line option: -L (--check-symlink-times).  On systems that
  support symbolic links, if this option is given then GNU make will
  use the most recent modification time of any symbolic links that are
  used to resolve target files.  The default behavior remains as it
  always has: use the modification time of the actual target file only.

* The "else" conditional line can now be followed by any other valid
  conditional on the same line: this does not increase the depth of the
  conditional nesting, so only one "endif" is required to close the
  conditional.

* All pattern-specific variables that match a given target are now used
  (previously only the first match was used).

* Target-specific variables can be marked as exportable using the
  "export" keyword.

* In a recursive $(call ...) context, any extra arguments from the outer
  call are now masked in the context of the inner call.

* Implemented a solution for the "thundering herd" problem with "-j -l".
  This version of GNU make uses an algorithm suggested by Thomas Riedl
  <thomas.riedl@siemens.com> to track the number of jobs started in the
  last second and artificially adjust GNU make's view of the system's
  load average accordingly.

* New special variables available in this release:
   - .INCLUDE_DIRS: Expands to a list of directories that make searches
     for included makefiles.
   - .FEATURES: Contains a list of special features available in this
     version of GNU make.
   - .DEFAULT_GOAL: Set the name of the default goal make will
     use if no goals are provided on the command line.
   - MAKE_RESTARTS: If set, then this is the number of times this
     instance of make has been restarted (see "How Makefiles Are Remade"
     in the manual).
   - New automatic variable: $| (added in 3.80, actually): contains all
     the order-only prerequisites defined for the target.

* New functions available in this release:
   - $(lastword ...) returns the last word in the list.  This gives
     identical results as $(word $(words ...) ...), but is much faster.
   - $(abspath ...) returns the absolute path (all "." and ".."
     directories resolved, and any duplicate "/" characters removed) for
     each path provided.
   - $(realpath ...) returns the canonical pathname for each path
     provided.  The canonical pathname is the absolute pathname, with
     all symbolic links resolved as well.
   - $(info ...) prints its arguments to stdout.  No makefile name or
     line number info, etc. is printed.
   - $(flavor ...) returns the flavor of a variable.
   - $(or ...) provides a short-circuiting OR conditional: each argument
     is expanded.  The first true (non-empty) argument is returned; no
     further arguments are expanded.  Expands to empty if there are no
     true arguments.
   - $(and ...) provides a short-circuiting AND conditional: each
     argument is expanded.  The first false (empty) argument is
     returned; no further arguments are expanded.  Expands to the last
     argument if all arguments are true.

* Changes made for POSIX compatibility:
   - Only touch targets (under -t) if they have at least one command.
   - Setting the SHELL make variable does NOT change the value of the
     SHELL environment variable given to programs invoked by make.  As
     an enhancement to POSIX, if you export the make variable SHELL then
     it will be set in the environment, just as before.

* On MS Windows systems, explicitly setting SHELL to a pathname ending
  in "cmd" or "cmd.exe" (case-insensitive) will force GNU make to use
  the DOS command interpreter in batch mode even if a UNIX-like shell
  could be found on the system.

* On VMS there is now support for case-sensitive filesystems such as ODS5.
  See the readme.vms file for information.

* Parallel builds (-jN) no longer require a working Bourne shell on
  Windows platforms.  They work even with the stock Windows shells, such
  as cmd.exe and command.com.

* Updated to autoconf 2.59, automake 1.9.5, and gettext 0.14.1.  Users
  should not be impacted.

* New translations for Swedish, Chinese (simplified), Ukrainian,
  Belarusian, Finnish, Kinyarwandan, and Irish.  Many updated
  translations.

A complete list of bugs fixed in this version is available here:

  http://savannah.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=103
2006-04-02 20:10:51 +00:00
..
aap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
acme Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
acr Initial import of acr-0.4, created by pancake. 2005-09-26 23:33:45 +00:00
acunia-jam Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
adocman Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
aegis Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ald Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
allegro Fix typo in message. 2006-03-23 06:43:17 +00:00
anjuta Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
apache-ant Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apache-ant15 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apel Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apr Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
argtable Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ArX Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
ArX2 Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
as31 Update package Makefile now that bsd.pkg.extract.mk is using the 2006-01-21 18:57:40 +00:00
asm2html Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
astyle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
at-spi Update to 1.7.4: 2006-03-30 21:22:11 +00:00
atk Update to 1.11.4: 2006-04-02 17:47:54 +00:00
autoconf * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
autoconf213 * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
autogen * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
automake * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
automake14 * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
avl * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
avltree Sorted PLISTs. 2005-10-23 16:03:10 +00:00
bcc Rename exp2, GCC 3.4 considers it to be a builtin. 2006-01-08 19:50:30 +00:00
bglibs Update to 1.041. From the changelog: 2006-03-23 20:17:10 +00:00
binutils * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
bison * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
blib Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
bmake Update AC_C___ATTRIBUTE__ to fix GCC 4 build issues. 2006-03-01 16:54:46 +00:00
boaconstructor Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
boehm-gc Update to 6.7: 2006-03-07 02:52:40 +00:00
bonobo Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
boost-build Remove the installation of versioned library names (not generated by the 2006-01-21 16:10:54 +00:00
boost-docs Update boost* to 1.33.1: 2006-01-20 20:40:18 +00:00
boost-headers Update boost* to 1.33.1: 2006-01-20 20:40:18 +00:00
boost-libs Update boost* to 1.33.1: 2006-01-20 20:40:18 +00:00
boost-python Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
buddy Update buddy to 2.4. 2006-03-14 20:23:07 +00:00
bugzilla Update to 2.20.1 2006-02-21 16:48:55 +00:00
buildtool Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
buildtool-doc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
byacc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bzr Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
c-cpp-reference Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
c4 Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
cbrowser Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ccache Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
cdecl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cdk Avoid extra stat() calls by not repeatedly checking whether a file 2006-03-30 18:06:17 +00:00
cfitsio Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cflow * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
cflow-mode GNU cflow analyzes a collection of C source files and prints a graph, 2006-02-25 21:43:26 +00:00
cgdb Remove BROKEN_IN because this is not broken in recent bulk builds on i386. 2006-03-21 18:26:21 +00:00
check Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
chmlib Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cmake Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
coconut Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
codeville Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cook Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cppunit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cpuflags update cpuflags to 0.98: 2006-02-09 13:45:04 +00:00
cqual Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cscope Make this build on Darwin. 2006-03-23 16:09:32 +00:00
cssc * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
cvs * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
cvs2cl Update to 2.59: 2005-06-24 14:25:46 +00:00
cvs2html Get rid of USE_PERL5. The new way to express needing the Perl executable 2005-07-16 01:19:06 +00:00
cvs2p4 Use SUBST framework. 2006-01-06 18:56:08 +00:00
cvs2svn Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cvsgraph Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cvslock Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cvsps Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cvsup Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cvsup-bin Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cvsup-gui Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cvsup-gui-bin Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
cvsync Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cweb Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cxref Using USE_TOOLS instead of USE_GNU_TOOLS fixes PR 33032. 2006-03-08 20:18:00 +00:00
darcs We include gmp/buildlink3.mk outside of the BUILDLINK_DEPTH guards so 2006-03-22 15:12:07 +00:00
darts Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ddd * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
dejagnu Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
devhelp Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
device-driver-doc-de Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
devIL Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
diffutils * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
distcc Fixed warnings found by pkglint -Wall. 2006-02-17 07:30:13 +00:00
distccmon-gnome Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
distccmon-gtk Fixed warnings found by pkglint -Wall. 2006-02-17 07:30:13 +00:00
dlcompat Avoid extra stat() calls by not repeatedly checking whether a file 2006-03-30 18:06:17 +00:00
dmake Fix errno. 2005-12-15 21:55:31 +00:00
dmalloc * Nuke all references to and definitions of INFO_DIR in package Makefiles 2006-03-20 18:15:37 +00:00
doc++ Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
doxygen Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
eclipse Use PKGNAME_NOREV to get the right DISTNAME 2006-02-06 22:51:09 +00:00
edcommon Add DragonFly support. 2006-03-28 17:44:08 +00:00
eel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
eel2 Update to 2.14.0: 2006-03-30 21:12:06 +00:00
eet Remove the abuse of buildlink that was pkg-config/buildlink3.mk. That 2005-08-10 20:56:10 +00:00
electricfence DragonFly uses SIGBUS for access violations. Fix the vprint 2006-01-08 20:25:34 +00:00
elf Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
elfsh Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
elib * Install info files into ${EMACS_INFOPREFIX}, which is the correct 2006-03-30 03:31:13 +00:00
emacs-ilisp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
emacs20-elib Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
epydoc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
eric3 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
error Don't pass -Werror to the compiler. Fixes the bulk build for NetBSD 2005-12-19 01:47:27 +00:00
exctags Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ExmanIDE Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
fastdep Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ffcall Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
fhist Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
flex Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
flim Info files for elisp packages should install into ${EMACS_INFOPREFIX}. 2006-03-30 23:55:38 +00:00
florist Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
fortran-utils Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ftnchek Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
g-wrap * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
g-wrap1 * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gail Update to 1.8.11: 2006-03-30 21:11:09 +00:00
gal BROKEN_GETTEXT_DETECTION=yes 2006-02-16 03:58:49 +00:00
gal2 Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
gal20 Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
GConf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
GConf2 Update GConf2 and GConf2-ui to 2.14.0: 2006-03-30 20:50:02 +00:00
GConf2-ui Update GConf2 and GConf2-ui to 2.14.0: 2006-03-30 20:50:02 +00:00
gconfmm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gcvs * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gdb * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gdb6 * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gdbada * Set GNU_CONFIGURE_PREFIX instead of setting each of the --bindir, 2006-03-20 07:26:29 +00:00
generate Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gentle Fixed a pkglint warning. 2005-10-23 14:03:39 +00:00
gettext correct patches, which didn't cleanly apply. Pointed out by joerg@ and 2006-02-21 20:04:03 +00:00
gettext-asprintf Take maintainership. 2006-02-05 22:47:40 +00:00
gettext-lib Ensure that _BLTN_H_GETTEXT is actually defined by find-files.mk. 2006-03-30 18:38:19 +00:00
gettext-m4 Update gettext to 0.14.5. Many bugfixes and improvements, 2006-02-05 22:45:53 +00:00
gettext-tools * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
giblib Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gindent * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
glade Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
glade-gnome Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
glib * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
glib2 Take over maintainership, jmmv@ ok. 2006-03-10 07:35:12 +00:00
glibmm Changes 2.8.5: 2006-03-12 21:09:45 +00:00
global * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gmake Update to 3.81: 2006-04-02 20:10:51 +00:00
gmp * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gnome-common Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gnome2-libole2 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gnustep-base Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gnustep-examples Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gnustep-make Use config file handling from pkginstall. Bump PKGREVISION. 2006-03-03 07:24:10 +00:00
gnustep-objc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gnustep-objc-lf2 Make this package build on NetBSD/amd64 by creating a symlink to a proper 2006-03-23 04:02:58 +00:00
gob2 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gobo-eiffel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
Gorm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gperf * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gputils Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gsoap Import gsoap from pkgsrc-wip. Packaged by Chris Wareham and Updated 2005-10-29 02:01:19 +00:00
gtexinfo Use PKGINFODIR to refer to the installation directory for info files. 2006-03-20 04:23:37 +00:00
gtl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gtoolkit-examples Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
guile-fcgi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
guile-gtk * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
guile-lib * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
guile-oops * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
guile-slib Simplify PLIST. Bump PKGREVISION. 2006-02-17 17:55:15 +00:00
guile-www * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
guile14-gtk Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
haskell-mode Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
hdf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
hdf5 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
hptools Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ht Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
id-utils Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
idiff Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
intel2gas Removed trailing white-space. 2005-05-23 08:26:03 +00:00
isect * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
its4 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
jam Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
javadeps Reset maintainer, host says: 2006-03-16 22:46:30 +00:00
jgrasp Replaced ${PKGNAME} with ${PKGNAME_NOREV} to match the PLIST. Bumped 2006-02-14 01:09:07 +00:00
kdbg Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
kdesdk3 Update to KDE 3.5.2 2006-03-30 03:06:20 +00:00
kdevelop Update to kdevelop 3.3.2 (Part of KDE 3.5.2) 2006-03-30 03:09:15 +00:00
kdevelop-base Update to kdevelop 3.3.2 (Part of KDE 3.5.2) 2006-03-30 03:08:19 +00:00
kscope Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
lcc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ldapsdk Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libargparse Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libast Backport fix for CVE-20060224. 2006-03-07 02:30:41 +00:00
libaura Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libbegemot Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libbonobo libbonobo 2.14.0 2006-03-30 21:06:41 +00:00
libbonoboui Update to 2.14.0: 2006-03-30 21:09:01 +00:00
libcfg+ Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libctl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libdfui Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libdnsres As seen in 2.1 bulk build: 2006-02-26 17:05:08 +00:00
libdockapp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libebml Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libelf Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
libetm USE_TOOLS+=nroff, and use NROFF. 2005-11-08 03:38:34 +00:00
libevent Avoid extra stat() calls by not repeatedly checking whether a file 2006-03-30 18:06:17 +00:00
libextractor Fix pthread linkage. 2006-03-28 16:42:50 +00:00
libffi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libFoundation Create a platform-dependent symlink only when it doesn't exist. 2006-03-23 04:13:10 +00:00
libgail-gnome Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
libgetopt Avoid extra stat() calls by not repeatedly checking whether a file 2006-03-30 18:06:17 +00:00
libglade Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libglade2 Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
libglademm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libgnome Remove stale docbook dependency and bump PKGREVISION to 1. 2006-04-01 14:36:29 +00:00
libgnomemm Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
libgnomeui Sync PLIST with reality; missed during the update to 2.14.0. 2006-03-31 10:57:20 +00:00
libgnomeuimm Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
libgphoto2 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libgsf Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
libhfs Fix errno. Installed files changed -> bump revision. 2005-12-15 22:14:15 +00:00
libiberty Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libidn * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
libinstaller Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libjit * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
libltdl allow LIBLTDL_CONVENIENCE_SUBDIR to be a list of directories; 2006-02-07 19:07:24 +00:00
libmatchbox Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libmemcache Include devel/sysexits bl3. 2005-11-08 03:44:23 +00:00
libmemmgr Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
libmimedir Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libmm Update to 1.4.0: 2005-11-24 18:54:51 +00:00
libnet Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
libnet11 Removed trailing white-space. 2005-05-23 08:26:03 +00:00
libntlm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
liboil Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libole2 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
liboop Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libosip Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libportlib Create directories before installing files into them. 2005-06-16 06:57:37 +00:00
libproplist Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
librfuncs While getenv_r() is nonstandard, the version now in NetBSD-current 2006-03-01 15:58:03 +00:00
librsync Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libscsi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libsexy Initial import of libsexy, version 0.1.8: 2006-03-30 21:02:04 +00:00
libsigc++ Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libsigc++2 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libsigsegv Fix path to itself. 2006-03-11 22:03:52 +00:00
libslang Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libsmi Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
libstash Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
libstatgrab Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libstree Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
libstroke Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libtar Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libtecla Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libtool Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
libtool-base use /bin/sh on Solaris, as libtool can cause ksh to dump core under 2006-04-01 11:21:42 +00:00
libtool-info * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
libts USE_TOOLS nroff, and use that to format the .ms file. 2005-11-07 20:08:46 +00:00
libusb Changes 0.1.12: 2006-03-11 08:34:12 +00:00
libwhisker2 Libwhisker is a Perl module geared specificly for HTTP testing. 2006-01-18 22:53:18 +00:00
libwnck Update to 2.14.0: 2006-03-30 21:10:48 +00:00
lincvs Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ltsa Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
lwp ISO C90 does not allow declarations after code. 2005-09-22 12:05:39 +00:00
m4 * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
maketool Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mantis Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
memcached Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mercurial remove a bashism ("select") in the merge script 2006-03-14 13:56:12 +00:00
mk-files Update the mk file to the 20050405 version, and fix the path to the tarball. 2005-06-27 20:28:12 +00:00
mkcmd Fix errno in library files. Never generate extern errno directly. 2006-01-25 15:19:16 +00:00
monotone Clear out INFO_FILES so that the info files listed in the PLIST are found. 2006-03-31 14:50:52 +00:00
monotone-server Adapt to recent changes in monotone as the current package does not work 2006-02-21 16:09:16 +00:00
monotone-viz update to 0.14. 2006-03-06 22:58:57 +00:00
mph Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mrproject Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
nana * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
nasm * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
nbitools modified patch-ag for IRIX and Solaris, closing pkg/27267 2006-02-25 17:31:57 +00:00
ncurses Avoid extra stat() calls by not repeatedly checking whether a file 2006-03-30 18:06:17 +00:00
netbeans-ide Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netbsd-iscsi Update to netbsd-iscsi-20060402. 2006-04-02 12:16:43 +00:00
netcdf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
newfile Bump PKGREVISION of these packages which affected (fixed) by 2006-02-03 04:43:47 +00:00
newmkdep Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
newt Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
noweb Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
nqc USE_TOOLS+=flex yacc 2005-11-08 03:49:27 +00:00
nsis Fixed all pkglint warnings. 2006-02-15 17:27:19 +00:00
nspr -I/Developer/Headers/FlatCarbon needs to be passed unaltered on MacOS X 2006-03-11 17:30:55 +00:00
nspr-reference Fixed typo in NO_CONFIGURE. 2005-09-28 22:38:11 +00:00
nss Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
oaf Add missing intltool/bl3.mk (build fix). 2006-02-28 17:39:18 +00:00
ObjectiveLib Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ode Don't thrash %ebx in inline assembly, fixes GCC 3.4+. 2006-03-19 15:05:39 +00:00
ogre Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
opencm * Nuke all references to and definitions of INFO_DIR in package Makefiles 2006-03-20 18:15:37 +00:00
p4 Add RMD160 checksums. 2005-10-20 17:59:49 +00:00
p4-docs Fixed pkglint warnings. 2006-03-12 14:31:23 +00:00
p4d Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
p4pr Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE, 2005-09-28 20:52:18 +00:00
p4web Add RMD160 checksums. 2005-10-20 21:31:47 +00:00
p5-Algorithm-Annotate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Algorithm-Dependency Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Algorithm-Diff Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Algorithm-Merge Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-AppConfig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Array-Compare Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-AtExit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Attribute-Handlers Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Bit-Vector Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-BSD-Resource Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Cache-Cache Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Cache-Memcached Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Cache-Simple-TimedExpiry Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-capitalization Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Carp-Assert Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Carp-Assert-More Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Carp-Clan Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Accessor Update devel/p5-Class-Accessor to 0.22: 2005-10-20 17:36:50 +00:00
p5-Class-Autouse Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Container Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Data-Inheritable Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-ErrorHandler Initial version of Class-ErrorHandler. 2006-02-15 00:30:01 +00:00
p5-Class-Factory Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Class-Factory-Util Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Class-Fields Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Class-Gomor-Hash This module is yet another class builder. This one adds parameter 2005-08-13 07:51:32 +00:00
p5-Class-Inner Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Inspector Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Loader Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Class-MakeMethods Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
p5-Class-MethodMaker Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-ObjectTemplate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-ReturnValue Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Singleton Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Class-Trigger Update to 0.10: 2005-11-24 19:00:25 +00:00
p5-Class-WhiteHole Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-XPath Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Clone Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Compress-Zlib Updated to version 1.41. 2005-10-15 19:51:17 +00:00
p5-Config-General update homepage 2005-10-10 10:48:49 +00:00
p5-Config-IniFiles Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Config-Tiny Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Curses Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Curses-UI Object-Oriented UI framework based on the curses library. 2005-11-07 11:27:31 +00:00
p5-Curses-UI-POE s/wip/devel/ 2005-11-07 11:44:17 +00:00
p5-Data-Buffer Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Data-Hierarchy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Data-ShowTable Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Data-TemporaryBag Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Data-UUID Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Date-Business Add the Morgan Stanley Dean Witter license used by p5-Date-Business. 2005-08-15 01:51:14 +00:00
p5-Date-Calc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Date-Manip Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Date-Simple Fixed definition of PERL5_PACKLIST. 2005-11-19 13:36:09 +00:00
p5-Devel-Cycle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Devel-Profile Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Devel-SmallProf Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-Devel-StackTrace Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Devel-Symdump Updated to 2.06. 2006-03-10 10:14:51 +00:00
p5-Error Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Event Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Exception-Class Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Expect Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-AutoInstall Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-Depends Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-F77 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-MakeMaker Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-PkgConfig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-XSBuilder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-BaseDir Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-chdir Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-File-DirSync Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Find-Rule Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-File-Flat Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-FlockDir Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-MimeInfo Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Modified Import p5-File-Modified from pkgsrc-wip, packaged by kuli0020. 2006-02-21 10:33:45 +00:00
p5-File-PathConvert Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Slurp Update to 9999.11: 2006-01-22 20:47:22 +00:00
p5-File-Spec Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Temp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Type Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-FileHandle-Unget Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-FileKGlob Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-FreezeThaw Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Getopt-Long Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Getopt-Simple Change my email address to @NetBSD.org. 2005-08-10 19:01:23 +00:00
p5-gettext Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-glib2 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Graph Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Hash-Case Initial import of p5-Hash-Case-1.003. 2005-11-14 01:29:50 +00:00
p5-Heap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Hook-LexWrap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Inline Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-All Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-IO-Digest Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-LockedFile Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-IO-Multiplex Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Null Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Pager Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-IO-String Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-stringy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Stty Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Tee Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-IO-Tty Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Util Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-IO-Zlib Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-Run Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-Shareable Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-SharedCache Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-ShareLite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-LDAP Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Agent Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch-Config Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch-DBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch-FileRotate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-LogLite Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Make Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Memoize Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Memoize-ExpireLRU Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Build Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-CoreList Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Dependency Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Pluggable Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Refresh Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-ScanDeps Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Versions-Report Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-CIDR Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-Netmask Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-NEXT Import p5-NEXT from pkgsrc-wip, packaged by kuli0020. 2006-02-21 10:35:26 +00:00
p5-Object-Realize-Later Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-OLE-Storage_Lite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-OOTools Update OOTools to version 2.21. This closes PR 31678 from Zafer Aydogan. 2005-10-18 08:33:24 +00:00
p5-PAR Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-PAR-Dist Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Params-Util Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Params-Validate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Parse-RecDescent Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Parse-Yapp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-PatchReader Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-PathTools This module is designed to support operations commonly performed on 2006-02-25 00:23:56 +00:00
p5-perl-headers Change my MAINTAINER email address to the one I've been using for 2005-12-17 05:20:21 +00:00
p5-Perl-Tidy Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-PerlIO-eol Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-PerlIO-via-dynamic Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-PerlIO-via-symlink Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-POE Updated p5-POE to 0.3202 2005-11-07 13:51:34 +00:00
p5-prefork Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Proc-Daemon Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-PV Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Regexp-Shellish Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Safe-Hole Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Scalar-List-Utils Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Schedule-RateLimiter Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-SDL Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Set-IntSpan Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Set-Scalar Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Sort-Versions Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Spiffy Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Spoon Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Storable Update to 2.15: 2005-10-25 13:37:45 +00:00
p5-String-Format Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Sub-Uplevel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-subversion Fix some pkglint warnings. 2006-02-07 19:59:21 +00:00
p5-SVN-Mirror Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-SVN-Simple Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-ProgressBar Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Term-Prompt Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-ReadKey Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-ReadLine Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-Screen Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-Size Set correct HOMEPAGE. 2006-02-18 08:23:33 +00:00
p5-Test-ClassAPI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Cmd Updated p5-Test-Cmd to 1.05: 2006-01-23 12:03:20 +00:00
p5-Test-Deep Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Exception Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Inline Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-LongString Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Manifest Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Memory-Cycle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-NoWarnings Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Pod Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Pod-Coverage Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Simple Add CONFLICTS with p5-Test-Builder-Tester, which is now included. 2005-11-22 23:07:18 +00:00
p5-Test-Taint Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Tester Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Unit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Warn Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Tie-IxHash Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Tree-DAG_Node Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Tree-Simple Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-UNIVERSAL-moniker Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-UNIVERSAL-require Imported p5-UNIVERSAL-requirefrom pkgsrc-wip. 2006-01-21 10:42:13 +00:00
p5-Want Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-WeakRef Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
palmpower Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pango Make "pango-querymodules" work under Mac OS X again. This allows to 2006-03-14 19:50:15 +00:00
papaya * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
pardiff Add DragonFly support. 2006-01-09 17:57:15 +00:00
patch Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
patchutils Fixed pkglint warning. 2005-10-23 19:42:39 +00:00
pccts Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pcl-cvs * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
pcre Update to 6.6: 2006-02-07 02:39:50 +00:00
pcre++ Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pedisassem Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
php-gettext Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-gmp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-pcntl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-posix Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-shmop Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-sysvsem Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-sysvshm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
physfs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
picp Include <alloca.h> on Interix. 2005-11-08 03:53:33 +00:00
picprg Use PKGNAME_NOREV. 2006-02-11 14:19:49 +00:00
pilrc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pkg-config Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ply Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pmccabe Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
popt Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
prcs * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
ProjectCenter Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pth Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pthread-sem Fix build before someone tries to use this. *blush* 2006-03-15 16:34:13 +00:00
pthread-stublib add "IS_BUILTIN.pthread-stublib=no"; this fixes a mysterious breakage 2006-03-23 11:40:30 +00:00
pvs * Nuke all references to and definitions of INFO_DIR in package Makefiles 2006-03-20 18:15:37 +00:00
pwlib Include <sys/param.h> before checking __NetBSD_Version__ value. 2006-03-29 04:05:08 +00:00
py-checker Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-cheetah Add missing files to PLIST. Bump PKGREVISION. 2006-02-17 19:19:13 +00:00
py-curses Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-cursespanel Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-distutils Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
py-expect Add pthread dependencies for DragonFly, otherwise the Python linkage 2006-02-08 19:47:08 +00:00
py-game Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-generate Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-gobject Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-idle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-InlineEgg Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-kjbuckets Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-kqueue Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-logging Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-Optik Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-pexpect Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-pqueue Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-Pyro Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-readline Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-subversion Fix some pkglint warnings. 2006-02-07 19:59:21 +00:00
py-TPG Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-unit Consistently use NetBSD.org address for shell, shellhung.org does not exist. 2006-03-16 22:48:42 +00:00
py-unitgui Consistently use NetBSD.org address for shell, shellhung.org does not exist. 2006-03-16 22:48:42 +00:00
py-urwid Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-zconfig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-ZopeInterface Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py24-setuptools Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
python-mode Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rake The plist module automatically handles converting "man" entries into 2006-03-16 23:12:48 +00:00
rapidsvn Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ratfor Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rcs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rdp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
re2c Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
readline Ensure that _BLTN_H_READLINE is defined by find-files.mk. 2006-03-30 18:39:57 +00:00
refinecvs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
Renaissance Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
roundup Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rox-lib Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rpc2 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rsltc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rt-mysql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rt-pgsql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rt3 Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
RTFM Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-activesupport Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-amstd Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-bsearch Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-byaccr Include stdlib.h instead of malloc.h to build on Darwin. 2005-06-19 20:44:06 +00:00
ruby-cmd Revive ruby-cmd package. 2006-01-03 14:57:52 +00:00
ruby-curses Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-gnome2-atk Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-gnome2-glib Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-gnome2-pango Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-mode Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-ncurses Fix two C glitches when ncurses is compiled with trace support. 2006-02-08 15:50:19 +00:00
ruby-racc Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-rd-mode Update to devel/ruby-rd-modeto 0.6.18. 2006-02-13 15:16:34 +00:00
ruby-readline Update ruby-readline pacakge to 1.8.4. 2006-01-03 14:46:59 +00:00
ruby-subversion Fix some pkglint warnings. 2006-02-07 19:59:21 +00:00
rudiments Updated rudiments to 0.29. 2006-03-11 02:41:51 +00:00
rvm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rx * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
sablecc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
scons Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
scons-devel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sdcc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
SDL Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk. 2006-03-09 21:04:39 +00:00
SDL-intro-en Import SDL-intro-en from pkgsrc-wip. Packaged by Ian Zagorskih. 2005-06-25 03:04:26 +00:00
SDL_gfx Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
SDL_ttf libz is needed on Linux. Bumped PKGREVISION. 2006-02-06 23:16:07 +00:00
SDLmm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
semantic Replace INFO_DIR with EMACS_INFOPREFIX, which is the correct location for 2006-03-20 05:34:27 +00:00
semi Info files for elisp packages should install into ${EMACS_INFOPREFIX}. 2006-03-30 23:55:38 +00:00
sfio Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sgi-stl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sgi-stl-docs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
silc-toolkit Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
slib * Nuke all references to and definitions of INFO_DIR in package Makefiles 2006-03-20 18:15:37 +00:00
sml-mode * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
sparsehash Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
spiff Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
splint Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
st Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
stlport Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
stooop Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
subversion Move subversion/buildlink3.mk to subversion-base/buildlink3.mk, to 2006-02-07 19:58:06 +00:00
subversion-base Move subversion/buildlink3.mk to subversion-base/buildlink3.mk, to 2006-02-07 19:58:06 +00:00
svk Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
swig Don't use "ktrace" command in "post-install" target. This was obviously 2006-02-26 22:37:22 +00:00
syncdir Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE, 2005-09-28 20:52:18 +00:00
sysexits Avoid extra stat() calls by not repeatedly checking whether a file 2006-03-30 18:06:17 +00:00
tailor Initial import of tailor-0.9.20: 2006-04-01 06:54:32 +00:00
tavrasm GCC 3.4 tells us to remove the parentheses around the type-id, so remove 2006-01-03 10:08:51 +00:00
tcl-tclcl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tcllib Update to 1.8. 2005-12-07 14:16:26 +00:00
teem Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tet3 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tkcvs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tkdiff Add with to USE_TOOLS, and replace the hardcoded command name in the script 2006-03-12 07:39:36 +00:00
tla Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tmake Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tpasm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tre TRE is a lightweight, robust, and efficient POSIX compliant regexp matching 2005-11-29 19:12:04 +00:00
treecc * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
trio Libtoolify trio. Bump revision. 2006-03-15 16:44:50 +00:00
tvision Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ucl Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
unidiff Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
uno Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
valgrind Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
vanessa_adt Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
vanessa_logger Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
vanessa_socket Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
vtcl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
w32api Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
wide Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
xdelta * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
xmake Remove CVS Id. 2005-05-29 10:13:39 +00:00
xxgdb Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
yasm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
z80-asm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zlib Avoid extra stat() calls by not repeatedly checking whether a file 2006-03-30 18:06:17 +00:00
Makefile Add and enable pthread-stublib and tailor. 2006-04-01 06:55:29 +00:00