pkgsrc/devel
wiz e33fc274c0 Update to 2.62:
* Major changes in Autoconf 2.62 (2008-04-05) [stable]
  Released by Eric Blake, based on git versions 2.61a.*.

** Many optimizations have been applied to make overall execution faster.

** Autotest now makes use of shell functions.

** config.status now uses awk instead of sed also for config headers.

   - As a side effect, AC_DEFINE and AC_DEFINE_UNQUOTED now handle multi-line
     values, i.e., backslash-newline combinations are handled correctly.
     Further, for config headers, the total size of values is not limited by
     the POSIX length limit of text lines any more, only each single line.

** New config variable `top_build_prefix'.

** New Autoconf macros:
   AC_AUTOCONF_VERSION  AC_OPENMP  AC_PATH_PROGS_FEATURE_CHECK

** AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.

** AC_C_RESTRICT now prefers to #define 'restrict' to a variant spelling
   like '__restrict' if the variant spelling is available, as this is
   more likely to work when mixing C and C++ code.

** AC_CHECK_ALIGNOF's type argument T is now documented better: it must
   be a string of tokens such that "T y;" is a valid member declaration
   in a struct.

** AC_CHECK_SIZEOF now accepts objects as well as types: the general rule
   is that sizeof (X) works, then AC_CHECK_SIZEOF (X) should work.

** AC_CHECK_TYPE and AC_CHECK_TYPES now work on any C type-name; formerly,
   they did not work for function types.  In C++, they now work on any
   type-id that can be the operand of sizeof; this is similar to C,
   except it excludes anonymous struct and union types.  Formerly,
   some (but not all) C++ types involving anonymous struct and union
   were accepted, though this was not documented.

** AC_CONFIG_LINKS now prefers to link against files in the build tree
   if found, and it works to link against a file of the same name in
   the source tree, even if both trees coincide.

** AC_INIT no longer alters $@; regression introduced in 2.60.

** AC_USE_SYSTEM_EXTENSIONS now defines _ALL_SOURCE for Interix platforms.

** AS_HELP_STRING no longer underquotes its first argument; it also handles
   the case where the first argument contains single-quoted commas.
   For example, "AS_HELP_STRING([-a, [--arg[=foo]]], [bar])" produces:
     "  -a, --arg[=foo]         bar"
   Additionally, the macro now takes two additional arguments,
   indent-column and wrap-column; these should not normally be needed,
   but can be used to fine-tune how the output text is wrapped.

** AC_PROG_INSTALL now requires an install program that can install multiple
   files into a target directory.

** The command 'autoconf -' now correctly processes a file from stdin.

** 'autoreconf -m' now honors $MAKE.

** For all of the directory arguments for 'configure', such as '--prefix'
   or '--bindir', trailing slashes are stripped.  As an example, if
   tab completion in the user's shell appends trailing slashes, the
   command './configure --prefix=/usr/' will still result in an
   expanded libdir value of /usr/lib, not /usr//lib.

** `configure --help=recursive' now works in read-only trees and from
   unconfigured build trees.

** If precious variables differ only in whitespace, then the cache consistency
   check warns instead of fails, and reuses the old value.

** AT_BANNER is now documented.

** AT_SETUP now handles macro expansions properly when calculating line
   length.

** Autotest now determines $srcdir correctly.

** Testsuites built by autotest now accept a -C/--directory=DIR option
   to adjust the working directory prior to creating files.

** Autoconf now requires GNU M4 1.4.5 or later.  Earlier versions of M4 have
   a bug in macro tracing that interferes with the interaction between
   Autoconf and Automake.  GNU M4 1.4.11 or later is recommended.  The
   configure search for a working M4 is improved.

** For portability with the eventual M4 2.0, macros should no longer use
   anything larger than $9 to refer to arguments.

** Documentation for m4sugar is improved.

   - The following macros were previously available as undocumented
     interfaces; the macros are now documented as stable interfaces.

     __oline__  m4_assert  m4_bmatch  m4_bpatsubsts  m4_car  m4_case
     m4_cdr  m4_default  m4_divert_once  m4_divert_pop  m4_divert_push
     m4_divert_text  m4_do  m4_errprintn  m4_fatal  m4_flatten
     m4_ifndef  m4_ifset  m4_ifval  m4_ifvaln  m4_location
     m4_n  m4_shiftn  m4_strip  m4_warn

   - The following macros were previously available as undocumented
     interfaces, but had bug fixes or semantic changes as part of this
     release.  Packages that relied on the undocumented behavior
     should be analyzed to make sure they will still work with the
     new documented behavior.

     m4_cmp  m4_list_cmp  m4_join  m4_map  m4_map_sep  m4_sign
     m4_text_box  m4_text_wrap  m4_version_compare

   - The m4_wrap macro used to have unspecified order, but now
     guarantees FIFO order.  m4_wrap_lifo was added to guarantee LIFO
     order.

   - Packages using the undocumented m4sugar macro m4_PACKAGE_VERSION
     should consider using the new AC_AUTOCONF_VERSION instead.

   - m4sugar macros that are not documented in the manual are still
     deemed experimental, and should not be used outside of Autoconf.

** The m4sugar macros m4_append and m4_append_uniq, first documented in
   2.60, have been fixed to treat both the string and the separator
   arguments consistently with regards to quoting.  Prior to this fix,
   m4_append_uniq could mistakenly duplicate entries if the expansion
   of the separator resulted in a different string (for example, if it
   contained quotes, a comma, or a macro name).  However, it means
   that programs previously using
     m4_append([name], [string], [[, ]])
   are now using a four-character separator instead of the intended
   comma and space.  If you need portability to earlier versions of
   Autoconf, you can insert the following snippet after AC_INIT but
   before any other macro expansions, to enforce the new semantics:
     m4_pushdef([m4_append], [m4_define([$1],
	   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
   Additionally, m4_append_uniq now takes optional parameters that can
   be used to take action depending on whether anything was appended,
   and warns if a non-empty separator occurs within the string being
   appended, since that can lead to duplicates.

** The following m4sugar macros are new:
   m4_append_uniq_w  m4_apply  m4_combine  m4_cond  m4_count
   m4_dquote_elt  m4_echo  m4_expand  m4_ignore  m4_make_list  m4_max
   m4_min  m4_newline  m4_shift2  m4_shift3  m4_unquote  m4_wrap_lifo

** Warnings are now generated by default when an installer invokes
   'configure' with an unknown --enable-* or --with-* option.
   These warnings can be disabled with the new AC_DISABLE_OPTION_CHECKING
   macro, or by invoking 'configure' with --disable-option-checking.

** Existing obsolete macros
   The documentation for the following macros is adjusted to make it
   more clear that they have previously been marked obsolete, as their
   functionality can be accomplished by other macros.  We have no
   current plans to remove them from Autoconf.

     AC_ENABLE  AC_STRUCT_ST_BLKSIZE  AC_STRUCT_ST_RDEV  AC_WITH

** Newly obsolete macros
   The following macros have been marked obsolete, as they only
   perform a subset of AC_USE_SYSTEM_EXTENSIONS.  We have no current
   plans to remove them.

     AC_AIX  AC_GNU_SOURCE  AC_ISC_POSIX  AC_MINIX

** AC_C_LONG_DOUBLE is obsolescent.
   The documentation now says that AC_C_LONG_DOUBLE is obsolescent: it
   tests for problems that are so old that it is no longer of
   practical importance on current systems.  New programs need not use
   AC_C_LONG_DOUBLE.  We have no current plans to remove it.

** AC_DIAGNOSE, AC_WARNING, and AC_FATAL are obsolescent.
   The documentation now favors the use of M4sugar macros m4_warn and
   m4_fatal, since the naming makes it more obvious that the
   diagnostics are associated with M4 expansion (ie. when running
   `autoconf'), and offers less confusion with the AC_MSG_ERROR,
   AC_MSG_FAILURE, and AC_MSG_WARN macros which manage diagnostics
   when running `configure'.  We have no current plans to remove these
   macros.

* Major changes in Autoconf 2.61a (2006-12-11)

** AC_FUNC_FSEEKO was broken in 2.61; it didn't make fseeko and ftello visible
   on many platforms.  This has been fixed.

** AC_FUNC_SETVBUF_REVERSED is now obsolete.  It is still defined for backward
   compatibility but it does nothing.  The macro was already
   obsolescent, as the last systems to have the problem were those
   based on SVR2, which became obsolete in 1987.  The macro had bugs
   on some modern systems and could no longer be maintained reliably
   due to lack of ancient systems to test it on.

** config.status now uses awk instead of sed for most substitutions, for speed.

   - As a side effect multi-line values of substituted variables no
     longer have a small limit in total size, though for portability
     each line should not exceed the POSIX length limit for text lines.

   - It is now documented that Makefile.in should not contain
     overlapping variable occurrences, e.g., @VAR1@VAR2@.
     Autoconf's behavior was always iffy in such cases, and the
     awk implementation has changed the behavior.

** Many uses of 'echo' have been rewritten so that Autoconf-generated
   scripts have fewer problems with strings or file names containing
   embedded special characters such as backslash or leading "-".  This
   was implemented by using `printf '%s\n' "$foo"' instead of `echo
   "$foo"' when printf works.  Due to the implementation technique
   used, Autoconf-generated scripts now run considerably more slowly
   on ancient implementations lacking printf.  However, this should
   not be a problem, since Autoconf-generated scripts in practice
   invariably find a more-modern shell these days.
2008-04-13 22:50:08 +00:00
..
aap Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
acme Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
acr Remove dead MASTERS_SITES. From Zafer Aydogan. 2007-06-08 18:39:22 +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 "scm" to CATEGORIES to make it easy to find source control management 2007-02-17 20:59:46 +00:00
ald Use FreeBSD rules for DragonFly as well, should be close enough. 2006-12-12 14:41:18 +00:00
allegro Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
anjuta Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
apache-ant Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
apache-ant15 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +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 PKG_BUILD_OPTIONS.apr is used, so make sure it is present when 2008-03-11 18:32:28 +00:00
arena Upgrade arena from version 0.9.8 to 0.9.9. 2006-11-16 21:52:19 +00:00
argp libtoolize and add builtin.mk. Bump revision. 2007-12-22 01:40:20 +00:00
argtable Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
ArX Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
as31 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
asm2html Remove dead MASTERS_SITES. From Zafer Aydogan. 2007-06-08 18:39:22 +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 update to 1.22.1 2008-04-10 16:56:22 +00:00
atf Update to 0.4. 2008-02-04 20:19:33 +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 cosmetics: use INSTALL_DATA for .pc files, from Ulrich Etile 2007-12-17 16:39:50 +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 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:35:58 +00:00
avltree Don't assume include pre-exists. 2006-12-12 14:44:18 +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 Import new package from pkgsrc-wip: bin86. 2008-03-08 00:39:23 +00:00
binutils Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
bison Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
blib install gtk-doc generated API documentation at the default location, 2006-08-10 17:44:11 +00:00
bmake Skip man page handling. 2008-03-11 17:20:05 +00:00
boaconstructor Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
boehm-gc Make it work on NetBSD/sparc64. Bump PKGREVISION. 2008-03-03 16:27:41 +00:00
boost-build Added support for installationt to DESTDIR. 2008-02-05 22:52:01 +00:00
boost-docs Added support for installation to DESTDIR. 2008-02-05 22:59:05 +00:00
boost-headers Added support for installation to DESTDIR. 2008-02-05 22:59:05 +00:00
boost-jam Added support for installation to DESTDIR. 2008-02-05 22:39:41 +00:00
boost-libs Added support for installation to DESTDIR. 2008-02-05 22:59:05 +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 Fixed ambiguous function call with sunpro. 2008-01-13 22:36:29 +00:00
buddy
bugzilla Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
bugzilla3 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
buildtool Fixed PKGMANDIR. 2006-11-04 10:16:37 +00:00
buildtool-doc
byacc Update to 20050813 version. 2006-12-09 02:27:47 +00:00
bzr Update to 1.3: 2008-04-07 20:10:10 +00:00
c-cpp-reference Resign as maintainer of all the packages which I'm no longer using. 2007-09-19 06:46:51 +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 DESTDIR clean. 2008-03-08 13:49:10 +00:00
cdecl Remove ftp.deva.net and ftp.bitcon.no from MASTER_SITES, they don't resolve. 2007-11-11 23:46:57 +00:00
cdk Reset maintainer on his request. 2008-01-19 09:16:17 +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 simplify and fix typo. 2008-04-07 16:46:33 +00:00
check Portability fixes for IRIX with MIPSpro. 2007-03-09 16:25:56 +00:00
chmlib Update to 0.39: 2007-01-28 07:31:20 +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 Remove asahi-net from MASTER_SITES, noticed by Zafer Aydogan in priveate mail. 2008-01-03 13:36:47 +00:00
codeville db4 update related revision bump 2008-01-12 11:36:28 +00:00
cogito Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
confuse I18N (PR 37581) and DESTDIR support. 2007-12-21 20:32:45 +00:00
cook Needs -lintl on Solaris. 2007-11-07 08:37:51 +00:00
cppunit DESTDIR is supported. 2008-03-15 13:41:42 +00:00
cpuflags update devel/cpuflags to 1.18: Remove *any* spaces from CPU_DIR, not just the first 2008-01-11 12:58:30 +00:00
cqual PR 37952: Aleksey Cheusov: more missed tools in USE_TOOLS 2008-02-04 20:10:34 +00:00
cscope Fix patch-ah, bump PKGREVISION. 2007-01-20 23:39:44 +00:00
cssc Add "scm" to CATEGORIES to make it easy to find source control management 2007-02-17 20:59:46 +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 Fix PLIST. 2008-02-09 13:09:22 +00:00
cvsclone Initial import of cvsclone: 2008-03-12 10:16:05 +00:00
cvsd Make it easier to build and install packages "unprivileged", where 2007-07-04 20:54:31 +00:00
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 "scm" to CATEGORIES to make it easy to find source control management 2007-02-17 20:59:46 +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 Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
cxref
darcs Update darcs to version 1.0.9. 2008-03-17 15:59:05 +00:00
darts Update darts to 0.31. 2007-08-02 15:00:55 +00:00
ddd Mechanically replace all includes of buildlink3.mk of the following 2006-12-15 20:32:52 +00:00
dejagnu * destdir support 2007-12-08 13:54:34 +00:00
dev86 bcc, bin86 and dev86 conflict with each other. 2008-03-08 00:13:42 +00:00
devhelp update to 0.16.1 2007-11-03 16:24:10 +00:00
device-driver-doc-de Fix DESTDIR. 2008-04-07 16:53:38 +00:00
devIL Mechanically replace all includes of buildlink3.mk of the following 2006-12-15 20:32:52 +00:00
dia2code Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
diffutils
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 Add "-ld" to "LDFLAGS" automatically. This should help fixing PR pkg/36086. 2007-03-27 06:32:06 +00:00
dmake Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
dmalloc Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:35:58 +00:00
doc++ Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead. 2007-10-16 23:48:58 +00:00
doxygen Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
doxymacs Updated to doxymacs version 1.8.0: 2007-08-05 05:19:19 +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 remove another DISABLE_DEPRECATED, for easier transition to 2008-04-01 22:47:24 +00:00
eet Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:35:58 +00:00
electricfence Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
elf Added support for installation to DESTDIR. 2007-05-25 18:22:45 +00:00
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 Fix PLIST, emacs type 'emacs20nox' does not exists. 2008-03-19 12:13:08 +00:00
emacs20-elib "emacs20" is not valid for EMACS_TYPE. 2006-09-10 13:17:22 +00:00
epydoc Added py-Tk dependency in Makefile: 2006-11-15 01:16:39 +00:00
equeue Initial import of equeue-2.1.3: 2006-08-11 15:42:30 +00:00
eric3 pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +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 Import exempi-2.0.0 as devel/exempi. 2008-04-12 10:56:18 +00:00
ExmanIDE
fann split Makefile into Makefile.common for impending py-fann package. 2006-10-05 14:55:21 +00:00
fann-devel update for replaced tarball (very soon for brand-new package, so 2006-10-12 19:21:18 +00:00
fastdep Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ffcall Merge sparc and sparc64 avcall patches, taken from clisp-2.43. 2008-03-03 21:41:30 +00:00
fhist Add "scm" to CATEGORIES to make it easy to find source control management 2007-02-17 20:59:46 +00:00
flex version 2.5.35 released 2008-02-26 2008-03-08 00:08:42 +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 Fix installation after addition of patches/patch-aa. 2008-03-25 15:14:13 +00:00
ftnchek share/emacs/site-lisp now exists by default -- don't try to remove it. 2007-02-20 19:04:10 +00:00
g-wrap Update to 1.9.8. This update breaks gnucash, which now uses 2007-05-17 23:59:34 +00:00
gail update to 1.22.1 2008-04-10 16:22:52 +00:00
GConf update to 2.22.0 2008-04-10 16:25:29 +00:00
GConf-ui update to 2.20.1 2007-10-31 19:46:17 +00:00
gconfmm Changes 2.20.0: 2007-11-22 11:19:57 +00:00
gcvs Reset maintainer: 2006-11-24 23:04:14 +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 Needs curses. PR pkg/35352 from Brandon Bergren. 2008-01-23 05:38:46 +00:00
gdbada Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
gdl Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
geany Fix more cases of non-chainable PKGSRC_COMPILER tests. 2008-02-08 10:34:19 +00:00
generate Solaris needs some resolver libraries. 2007-11-13 17:40:26 +00:00
gentle Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
gettext Allow nb versions for the -tools dependency. Bump revision. 2007-11-28 18:25:49 +00:00
gettext-asprintf
gettext-lib explicite disable C#, otherwise "mcs" might be picked up, 2008-03-03 18:02:22 +00:00
gettext-m4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
gettext-tools explicite disable C#, otherwise "mcs" might be picked up, 2008-03-03 18:02:22 +00:00
gflib Fix DESTDIR. 2008-04-07 17:14:20 +00:00
giblib DESTDIR support. 2006-11-05 17:49:33 +00:00
gindent Update MASTER_SITES/HOMEPAGE, from Zafer Aydogan. 2007-11-18 10:39:56 +00:00
glade update to 2.12.2 2007-12-16 18:10:53 +00:00
glade-gnome Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
glade3 Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
glib Remove dead MASTERS_SITES. From Zafer Aydogan. 2007-06-08 18:39:22 +00:00
glib2 Convert previous to PLIST_VARS. 2008-04-13 13:15:59 +00:00
glibmm Update to 2.14.2: 2007-10-23 12:11:30 +00:00
global Install gtags.conf as CONF_FILES. 2007-03-03 08:06:25 +00:00
gmake Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
gmp Add distribution patch (from gmplib.org) for the following bug: 2008-04-01 00:57:09 +00:00
gnome-build Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
gnome-common update to 2.20.0, from Ulrich Etile per PM 2008-01-06 16:36:49 +00:00
gnustep-base Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
gnustep-examples Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
gnustep-make Bump revision for previous. 2008-03-08 22:03:22 +00:00
gnustep-objc Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
gnustep-objc-lf2 Remove dead MASTERS_SITES. From Zafer Aydogan. 2007-06-08 18:39:22 +00:00
gob2 Update to 2.0.14, provided by Martin Wilke in PR/34439: 2006-10-03 15:25:57 +00:00
gobo-eiffel Depend on SmartEiffel. 2008-03-11 20:10:19 +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 gputils to 0.13.4, OK'd by Tom Spindler. 2007-05-13 20:47:37 +00:00
gsoap Needs flex for build. From Jon Olsson in PR 34380. 2006-08-30 15:51:15 +00:00
gst-plugins0.10-pango
gtexinfo + Include termcap.buildlink3.mk instead of curses.buildlink3.mk because 2008-03-05 22:26:46 +00:00
gtl Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
guile-fcgi Make guile-fcgi work with guile-1.6.x. Bump PKGREVISION. 2007-06-05 05:44:37 +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 Remove mentions of gnome-libs. 2007-05-20 17:23:16 +00:00
guile-lib Update to: 2007-07-21 16:29:44 +00:00
guile-slib Update to 3.2.1 to match slib. 2008-03-04 09:43:45 +00:00
guile-www Update to 2.21. Significant changes: 2008-02-16 15:31:27 +00:00
guile16-gtk Add guile16-gtk-0.5. This is based on the guile-gtk package with the 2007-06-18 00:38:58 +00:00
haskell-mode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
hdf Update MASTER_SITES/HOMEPAGE, from Zafer Aydogan. 2007-11-18 10:39:56 +00:00
hdf5 Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
hoe Update hoe to version 1.5.1. Changes from version 1.2.1 include: 2008-04-04 15:14:49 +00:00
hptools Update MASTER_SITES/HOMEPAGE, from Zafer Aydogan. 2007-11-18 10:39:56 +00:00
ht Fixed build error. 2007-09-29 12:54:13 +00:00
hugs-HUnit Update the hugs additional modules (hugs-HUnit, hugs-unix and hugs-HaXml) 2007-03-07 12:51:16 +00:00
hugs-unix Update the hugs additional modules (hugs-HUnit, hugs-unix and hugs-HaXml) 2007-03-07 12:51:16 +00:00
idiff Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
idutils Belatedly fix typo in PKGREVISION introduced in revision 1.3. 2007-03-13 13:24:29 +00:00
imake Fix path to Perl script. Bump revision. 2007-07-17 21:05:11 +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
javacc Fix DESTDIR. 2008-04-07 17:25:56 +00:00
javadeps Fix DESTDIR. 2008-04-07 17:25:56 +00:00
jflex Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
jgrasp Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +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 Update to kdevelop 3.5.1 (part of kde3.5.9) 2008-02-20 10:24:09 +00:00
kdevelop-base Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
kdiff3 Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ko-po-check Set locale correctly on Darwin. Bump PKGREVISION. 2007-06-10 21:54:07 +00:00
kscope PR 37952: Aleksey Cheusov: more missed tools in USE_TOOLS 2008-02-04 20:10:34 +00:00
lcc Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ldapsdk Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libarena Update to 20080221 snapshot, primarily because I forgot to put 2008-02-22 08:12:58 +00:00
libargparse
libast Add default empty PKG_SUPPORTED_OPTIONS definition. 2007-12-18 14:25:21 +00:00
libaura Update master site to reflect move of my server. 2007-07-16 21:38:38 +00:00
libbegemot Update to 1.11, provided by Hans Rosenfeld on pkgsrc-users. 2007-01-27 12:01:01 +00:00
libbinio Added a patch for sunpro. 2008-01-13 22:42:06 +00:00
libbonobo update to 2.22.0 2008-04-10 16:22:13 +00:00
libbonoboui update to 2.22.0 2008-04-10 16:46:53 +00:00
libcfg+ Configure always ignores the value specified with "--prefix" and tries to 2008-01-06 01:07:04 +00:00
libconfig Update to 1.2, changes unknown. 2007-11-26 00:00:33 +00:00
libctl
libdatrie ftp://linux.thai.net seems not working well, remove. 2008-03-17 12:52:00 +00:00
libdfui Update master site to reflect move of my server. 2007-07-16 21:38:38 +00:00
libdnsres Bump PKGREVISIONs to chase update of devel/libevent. 2007-04-25 16:39:40 +00:00
libdockapp - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
libebml libtoolize and build shared libraries, 2007-11-14 18:20:05 +00:00
libelf Remove ex-MASTER_SITE. From Zafer Aydogan. 2007-12-01 23:54:58 +00:00
libetm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libevent One more try. event.h gets installed and used by other programs so 2007-10-04 12:28:13 +00:00
libextractor Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +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 Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
libgcroots Import libgcroots version 0.2.1. 2008-02-29 13:06:36 +00:00
libgetopt Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libglade Rename libglade2 to libglade to match the upstream name. 2007-09-21 12:58:54 +00:00
libglademm Changes 2.6.5: 2007-10-13 17:52:18 +00:00
libgnome update to 2.22.0 2008-04-10 16:40:49 +00:00
libgnomemm Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
libgnomeui update to 2.22.1 2008-04-10 16:53:44 +00:00
libgnomeuimm Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
libgphoto2 Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
libgsf Update to 1.14.8: 2008-03-07 20:22:57 +00:00
libgweather add libgweather-2.22.1.1, a library to access weather information, used 2008-04-11 19:01:24 +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 "libidn" package to version 1.6. Change since version 1.5: 2008-04-05 12:53:03 +00:00
libinstaller Update master site to reflect move of my server. 2007-07-16 21:38:38 +00:00
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 Replace mk/bsd.prefs.mk includes with bsd.fast.prefs.mk includes. 2006-12-12 21:52:34 +00:00
libmatchbox - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
libmcs Initial import of libmcs-0.4.1 from pkgsrc-wip, packaged by 2007-09-10 15:32:48 +00:00
libmemcache Support user-destdir installation. 2008-03-30 05:01:31 +00:00
libmemmgr It is user-destdir, not user-destir. 2008-03-11 18:40:18 +00:00
libmimedir Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
libmm Add missing checksum for patch-aa. 2008-02-14 07:13:59 +00:00
libnet10 Fix the library path 2007-03-02 09:26:10 +00:00
libnet11 The libnet 1.1.x branch will now install as libnet11-1.1.x this will avoid 2007-02-18 18:30:59 +00:00
libntlm Update libntlm to 0.3.12. 2006-12-09 13:57:29 +00:00
liboil update to 0.3.14 2008-04-11 16:58:47 +00:00
liboop
libosip Update libosip to 3.0.3. 2007-08-25 02:49:12 +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 Initial import of librlog-1.3.7 (required by the fuse-encfs pkg). 2007-02-18 14:18:18 +00:00
librsync As noted by Andreas Wrede in PR pkg/35677, librsync will stall on 2007-02-20 19:15:03 +00:00
librxspencer Import librxspencer from pkgsrc-wip. Packaged by Aleksey Cheusov. 2007-02-21 21:06:12 +00:00
libscsi Fixed gcc error message: 2007-09-12 21:05:29 +00:00
libsexy update to 0.1.11 2007-04-10 16:38:26 +00:00
libsexymm Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves. 2007-09-21 13:03:25 +00:00
libsigc++ update to 2.1.1 2007-11-22 20:41:56 +00:00
libsigc++1 Rename libsigc++ to libsigc++1, and libsigc++2 to libsigc++; 2007-09-21 12:59:53 +00:00
libsigsegv Supports DESTDIR. 2008-01-07 18:15:27 +00:00
libslang Fix patch so that it refers to $(TCAPLIB) and doesn't hardcode "-ltermcap". 2008-03-01 03:09:35 +00:00
libsmi Fixed unexpanded ${sysconfdir} in the default configuration file. 2006-11-10 20:15:17 +00:00
libstash
libstatgrab Add PLIST_VARS setting missing from previous commit. 2008-04-09 16:21:48 +00:00
libstree
libstroke Modular Xorg support. As this package needs libX11 only for the test 2007-01-20 13:26:12 +00:00
libtai Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libtar Add missing slash to URL. From Zafer Aydogan in private mail. 2007-11-13 23:15:39 +00:00
libtecla
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 Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
libtool-info Use BUILD_DIRS instead of manual rules. 2006-11-01 08:59:03 +00:00
libts Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libusb Make usb_control_msg() return the number of bytes actually transferred 2007-10-11 18:25:19 +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.20.3 2008-01-11 12:47:43 +00:00
lincvs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ltsa Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
lwp Update to 2.4 2008-01-22 02:00:42 +00:00
m4 Add patch from Bruno Haible (upstream) fixing two of the included 2008-04-13 00:51:59 +00:00
m17n-lib Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
makedepend Update to 1.0.1: 2007-03-21 22:59:19 +00:00
makedepf90 Update makedepf90 to 2.8.8. 2006-10-16 12:01:49 +00:00
maketool Reset maintainer on his request. 2007-12-12 20:42:28 +00:00
mantis Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
meld share/vi may also be used by editors/nvi; just try removing it. 2007-11-03 13:22:43 +00:00
mell Import mell version 1.0.0. 2008-03-02 12:26:08 +00:00
memcached Fix DESTDIR. 2008-04-07 17:31:25 +00:00
mercurial Update to mercurial 1.0 and add DESTDIR support. Changes: 2008-04-10 23:34: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 PR 37949: Aleksey Cheusov: USE_TOOLS needs to be fixed in several packages 2008-02-04 19:52:54 +00:00
mono-addins Update path to gtk-sharp. 2008-03-17 22:54:02 +00:00
monodevelop Update path to gtk-sharp. 2008-03-17 22:54:02 +00:00
monotone Update to 0.40. Tested in NetBSD-current/amd64 and OS X 10.4. 2008-04-12 14:34:50 +00:00
monotone-server Update to 0.40: depend on monotone-0.40. 2008-04-12 14:35:28 +00:00
monotone-viz Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
mph Fix installation. 2008-04-07 17:43:14 +00:00
nana Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:35:58 +00:00
nasm update to 2.02 2008-03-12 21:16:12 +00:00
nbitools Reset maintainer for people who lost their commit bit. 2006-09-03 00:56:28 +00:00
ncurses Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
ncursesw Provide value for BUILDLINK_LDADD.ncursesw that can be used by packages 2008-02-29 19:23:07 +00:00
netbeans-ide Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +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 Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
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 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:35:58 +00:00
nsis Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
nspr Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
nspr-reference Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
nss Add missing ${DESTDIR} at creating PLIST. 2008-03-21 01:12:15 +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. 2008-04-05 17:26:37 +00:00
ossp-uuid As Aleksey Cheusov correctly observed in PR pkg/37703, this package 2008-01-06 20:08:24 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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 Update to 2.9. 2008-02-20 10:57:21 +00:00
p5-App-CLI Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-App-Cmd Initial import of p5-App-Cmd version 0.012 into The NetBSD 2008-01-03 21:14:13 +00:00
p5-AppConfig Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-AppConfig-Std Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Array-Compare The package supports installation to DESTDIR. 2008-01-08 23:07:21 +00:00
p5-AtExit Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Attribute-Handlers The package supports installation to DESTDIR. 2008-04-06 15:22:07 +00:00
p5-B-Keywords Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Bit-Vector Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-BSD-Resource Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Cache Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Cache-Cache The package supports installation to DESTDIR. 2008-04-06 14:36:04 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-capitalization Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Carp-Assert Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Carp-Assert-More Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Carp-Clan Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Accessor Updated to 0.31. 2007-11-15 07:23:16 +00:00
p5-Class-Accessor-Chained Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Adapter Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Autouse Update p5-Class-Autouse to 1.29. 2007-11-16 03:11:25 +00:00
p5-Class-Container The package supports installation to DESTDIR. 2008-04-06 15:34:22 +00:00
p5-Class-Data-Inheritable Updated to version 0.08. 2008-04-06 15:05:27 +00:00
p5-Class-ErrorHandler Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Factory Update p5-Class-Factory to 1.06. 2007-11-27 06:55:09 +00:00
p5-Class-Factory-Util Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Fields Update p5-Class-Fields to 0.203. 2007-11-18 13:27:09 +00:00
p5-Class-Gomor Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Inner Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Inspector Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Loader Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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-MethodMaker Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-ObjectTemplate Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-ReturnValue Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Singleton Update to 1.4: 2007-11-29 14:14:22 +00:00
p5-Class-Std Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-Trigger Update p5-Class-Trigger to 0.12. 2007-11-18 13:28:26 +00:00
p5-Class-WhiteHole Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-XML Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-XPath Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Clone Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Clone-PP Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Compress-Raw-Zlib The package needs a C compiler. 2008-01-08 20:26:02 +00:00
p5-Compress-Zlib Update to 2.008: 2007-11-30 15:32:17 +00:00
p5-Config-General Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Config-IniFiles Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Config-Std Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Config-Tiny - updated to 2.12 2007-12-09 22:12:08 +00:00
p5-Contextual-Return Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Curses Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Curses-UI Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Curses-UI-POE Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Data-Buffer Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Data-Dump Updated to version 1.08. 2008-01-09 01:21:49 +00:00
p5-Data-Hierarchy Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Data-OptList Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Data-ShowTable Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Data-TemporaryBag Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Data-UUID Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Date-Business Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Date-Calc Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Date-Manip Fix typo in HOMEPAGE url. 2008-01-19 13:06:07 +00:00
p5-Date-Simple Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Devel-Cycle Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Devel-Profile - updated to 1.05 2007-12-09 22:14:04 +00:00
p5-Devel-SmallProf Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Devel-StackTrace Updated to version 1.18. 2008-04-06 14:53:57 +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.17012 2008-02-06 15:20:24 +00:00
p5-Event - updated to 1.10 2008-02-06 15:23:25 +00:00
p5-Event-ExecFlow Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Event-RPC Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-ExtUtils-CBuilder The package supports installation to DESTDIR. 2008-01-08 22:56:10 +00:00
p5-ExtUtils-Depends The package supports installation to DESTDIR. It does not need a 2008-03-17 22:13:35 +00:00
p5-ExtUtils-F77 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-ExtUtils-MakeMaker Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-ExtUtils-ParseXS Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-ExtUtils-PkgConfig Updated to version 1.11. 2008-03-17 22:31:21 +00:00
p5-ExtUtils-XSBuilder Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-BaseDir Add PLIST. 2007-11-29 16:00:50 +00:00
p5-File-chdir Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-DesktopEntry Initial import of p5-File-DesktopEntry-0.04: 2007-11-29 15:48:32 +00:00
p5-File-DirSync Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-Find-Rule Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-Flat Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-FlockDir Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-HomeDir Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-MimeInfo Add missing PLIST. 2007-11-30 22:43:46 +00:00
p5-File-Modified Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-NFSLock Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-PathConvert Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-Slurp Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-FileKGlob Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-FreezeThaw Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Getopt-ArgvFile Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Getopt-Euclid Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Getopt-Long Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Getopt-Long-Descriptive Initial import of p5-Getopt-Long-Descriptive version 0.06 into The NetBSD 2008-01-03 21:08:42 +00:00
p5-Getopt-Mixed Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Getopt-Simple Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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 to 1.164. 2008-02-20 10:53:17 +00:00
p5-Graph Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Hash-Case Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Heap Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Hook-LexWrap Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Inline Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-All Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Capture Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Compress-Base Update to 2.008: 2007-11-30 15:29:52 +00:00
p5-IO-Compress-Zlib Update to 2.008: 2007-11-30 15:30:40 +00:00
p5-IO-Digest Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-InSitu Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Interactive Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-LockedFile Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Multiplex Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Null Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Pager Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Prompt Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Tee Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Tty - updated to 1.07 2008-02-09 16:34:43 +00:00
p5-IO-Util Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IO-Zlib Updated to version 1.09. 2008-01-08 20:05:40 +00:00
p5-IPC-Run Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IPC-Run3 - updated to 0.040 2008-02-06 15:25:28 +00:00
p5-IPC-Shareable Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IPC-SharedCache Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-IPC-ShareLite Updated to version 0.13. 2008-04-06 14:23:55 +00:00
p5-LDAP Change MOZILLA master sites difinitions, related to PR 37379. 2007-12-22 07:22:04 +00:00
p5-List-MoreUtils Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Log-Agent Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Log-Dispatch - updated package to 2.21 2008-02-14 10:50:49 +00:00
p5-Log-Dispatch-Config Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Log-Dispatch-DBI Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Log-Dispatch-FileRotate Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Log-LogLite Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Make Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Memoize Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Memoize-ExpireLRU Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Build The package supports installation to DESTDIR. 2008-01-08 23:03:22 +00:00
p5-Module-CoreList Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Dependency Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Install Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Install-RTx Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Install-Substitute Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Pluggable Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Refresh Update devel/p5-Module-Refresh to 0.13: 2008-01-21 13:55:29 +00:00
p5-Module-ScanDeps Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Starter Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Starter-PBP Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Module-Versions-Report Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Net-CIDR Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Net-Netmask Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-NEXT Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Object-InsideOut Update to version 3.34. 2007-12-16 21:57:26 +00:00
p5-Object-Realize-Later Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-OLE-Storage_Lite Updated to version 0.15. 2008-02-07 21:02:07 +00:00
p5-OOTools Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PAR Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
p5-PAR-Dist Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Params-Util Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Params-Validate The package supports installation to DESTDIR. 2008-04-06 15:26:12 +00:00
p5-Parse-RecDescent The package supports installation to DESTDIR. 2008-02-07 21:28:29 +00:00
p5-Parse-Yapp Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PatchReader Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Path-Class Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PathTools Update p5-PathTools to 3.27. 2008-02-05 11:02:22 +00:00
p5-Perl-Critic Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-perl-headers Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Perl-Tidy Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Perl6-Export Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Perl6-Export-Attrs Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Perl6-Slurp Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PerlIO-eol Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PerlIO-via-dynamic Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PerlIO-via-symlink Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-POE Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PPI Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-prefork Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Proc-Daemon Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Proc-PID-File Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Proc-Pidfile Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Proc-ProcessTable Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Proc-Simple Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-PV Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Readonly Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Readonly-XS Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Regexp-Assemble Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Regexp-MatchContext Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Regexp-Shellish Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Return-Value Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Rose-Object Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Safe-Hole Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Scalar-List-Utils The package supports installation to DESTDIR. 2008-04-06 15:26:12 +00:00
p5-Schedule-RateLimiter Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-SDL Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Set-IntSpan Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Set-Scalar Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Smart-Comments Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Sort-Maker Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Sort-Versions Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Spiffy Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Spoon Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Storable Update to 2.18: 2007-11-29 15:07:16 +00:00
p5-String-Format Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Sub-Exporter Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Sub-Install Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Sub-Installer Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Sub-Uplevel The package supports installation to DESTDIR. 2008-01-08 22:23:05 +00:00
p5-subversion Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
p5-SVN-Mirror Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-SVN-Notify Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-SVN-Simple Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Task-Weaken Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Term-ProgressBar Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Term-Prompt Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Term-ReadPassword Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Term-Screen Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Term-Size Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-ClassAPI Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Cmd Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Deep Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Exception Updated to version 0.26. 2008-01-08 22:41:30 +00:00
p5-Test-File-Contents - updated package to 0.05 2007-12-11 11:56:54 +00:00
p5-Test-Harness Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Inline - updated to 2.208 2008-02-06 15:26:59 +00:00
p5-Test-LongString Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Manifest Update to 1.22: 2007-11-29 15:09:39 +00:00
p5-Test-Memory-Cycle Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-NoWarnings - updated package to 0.084 2007-12-11 11:58:04 +00:00
p5-Test-Object Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Perl-Critic Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Pod Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Pod-Coverage Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Script - new package (dependency for p5-Test-Inline) 2007-12-11 12:14:18 +00:00
p5-Test-Simple - Updated package to 0.80 2008-04-08 14:49:19 +00:00
p5-Test-Taint Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Tester - updated package to 0.106 2007-12-11 12:00:34 +00:00
p5-Test-Unit Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Test-Warn The package supports installation to DESTDIR. 2008-01-08 23:43:57 +00:00
p5-Tie-IxHash Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Tree-DAG_Node The package supports installation to DESTDIR. 2008-01-08 23:41:06 +00:00
p5-Tree-Simple - updated package to 1.18 2007-12-11 12:04:03 +00:00
p5-UNIVERSAL-moniker Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-UNIVERSAL-require Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-VCP Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-VCP-Dest-svk Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-version Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Want - updated packages to 0.18 2008-02-08 12:45:46 +00:00
p5-WeakRef Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
palmpower Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pango Fix missing PLIST_VARS handling for carbon option. 2008-04-13 13:00:55 +00:00
papaya Bump version or revision of all packages that have a runtime dependency 2007-11-08 19:39:42 +00:00
pardiff
patch Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
patchutils Fixed path to the bash interpreter. Added dependency to bash. 2006-10-15 21:40:07 +00:00
pccts Added support for installation to DESTDIR. 2008-01-03 23:15:47 +00:00
pcl-cvs Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
pcre update to 7.6 2008-02-13 19:20:39 +00:00
pcre++ Update MASTER_SITES, noticed by Zafer Aydogen by private mail. 2007-12-30 14:36:54 +00:00
pcre-ocaml Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +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 Added a patch to avoid type casts on lvalues. 2006-08-29 19:57:09 +00:00
php-gettext
php-gmp
php-memcache Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
php-pcntl Reset the PKGREVISION in packages that use the version string from php4 or php5 2007-05-08 11:30:49 +00:00
php-posix
php-shmop
php-sysvsem
php-sysvshm
physfs
picp
picprg Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pilrc Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
pkg-config Add glib_cv_rtldglobal_broken=no for internal glib-1.2.10 as devel/glib doing. 2008-03-24 14:27:33 +00:00
ply
pmccabe
popt Remove unneeded patches. 2007-05-28 07:57:46 +00:00
prcs Bump version or revision of all packages that have a runtime dependency 2007-11-08 19:39:42 +00:00
ProjectCenter Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
psvn Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pth Update to 2.0.7: 2007-02-18 11:40:09 +00:00
pthread-sem
pthread-stublib Fix installation and add DESTDIR support. 2008-01-12 12:35:39 +00:00
pvs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pwlib Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
py-at-spi Needs Python 2.4. 2007-12-22 00:17:35 +00:00
py-checker Reset maintainer -- shell@ is inactive. 2007-09-30 17:45:23 +00:00
py-cheetah Update from 2.0rc8 to 2.0. Changes: 2007-10-31 23:15:54 +00:00
py-ctypes -update to 1.0.2 2007-07-13 14:58:38 +00:00
py-curses
py-cursespanel
py-distutils pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
py-expect Adapted MASTER_SITES to changed project directory at sourceforge. 2007-12-11 22:41:54 +00:00
py-fann Removed CR character from the patch to make the package work on Mac OS X 2007-03-10 01:38:26 +00:00
py-game
py-generate Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
py-gobject update to 2.14.1 2008-01-09 18:53:48 +00:00
py-gobject-shared update to 2.14.1 2008-01-09 18:53:48 +00:00
py-idle Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
py-InlineEgg
py-kjbuckets
py-kqueue
py-logging
py-newt Import py24-newt-0.51.6 as devel/py-newt. 2008-04-13 09:54:57 +00:00
py-Optik Reset maintainer -- shell@ is inactive. 2007-09-30 17:45:23 +00:00
py-pexpect The package supports installation to DESTDIR. 2007-12-11 22:54:04 +00:00
py-pqueue
py-Pyro
py-readline DESTDIR support. 2006-11-05 17:49:33 +00:00
py-setuptools Update to py-setuptools-0.6c6: 2007-08-09 13:22:14 +00:00
py-subversion Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
py-TPG Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:35:58 +00:00
py-unit Reset maintainer -- shell@ is inactive. 2007-09-30 17:45:23 +00:00
py-unitgui Reset maintainer -- shell@ is inactive. 2007-09-30 17:45:23 +00:00
py-urwid Needs Python 2.4. 2007-12-22 00:17:35 +00:00
py-zconfig
py-ZopeInterface Fix "static declaration follows non-static" error with gcc 4. 2006-08-26 16:42:25 +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 Import ragel. 2007-05-25 23:37:45 +00:00
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 Remove unnecessary check for the TERMCAP_TYPE -- revision 1.2 of 2008-03-02 07:07:43 +00:00
refinecvs Fix DESTDIR. 2008-04-07 17:52:07 +00:00
Renaissance Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
roundup Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
rox-lib Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
rpc2 PR 37952: Aleksey Cheusov: more missed tools in USE_TOOLS 2008-02-04 20:10:34 +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 Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
RTFM Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
RTx-RightsMatrix
RTx-Shredder Make it easier to build and install packages "unprivileged", where 2007-07-04 20:54:31 +00:00
rubigen Initial import of rubigen-1.2.4 as devel/rubigen. 2008-04-04 15:16:28 +00:00
ruby-abstract Initial import of ruby18-abstract-1.0.0 as devel/ruby-abstract. 2008-04-04 15:16:34 +00:00
ruby-activesupport Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-amstd pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
ruby-assistance Initial import of ruby18-assistance-0.1.5 as devel/ruby-assistance. 2008-04-04 15:16:41 +00:00
ruby-bsearch Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +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 + Support user-destdir installation. 2008-03-13 21:55:48 +00:00
ruby-debug Initial import of ruby-debug as version 0.10.0 into the NetBSD 2008-04-06 23:03:58 +00:00
ruby-debug-base Initial import of ruby-debug-base as version 0.10.0 into the NetBSD 2008-04-06 23:03:23 +00:00
ruby-debug-ide Initial import of ruby-debug-ide as version 0.1.10 into the NetBSD 2008-04-06 23:04:42 +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 Initial import of ruby18-flexmock-0.8.0 as devel/ruby-flexmock. 2008-04-04 15:17:02 +00:00
ruby-gettext Drop maintainership. 2008-04-10 07:19:41 +00:00
ruby-gnome2-atk Update ruby-gnome2* to 0.16.0. 2007-01-29 06:42:33 +00:00
ruby-gnome2-glib Fix build problem with glib-2.14.0. 2007-08-19 03:00:26 +00:00
ruby-gnome2-pango Enable cairo support. 2007-08-19 14:31:25 +00:00
ruby-heckle Initial import of ruby18-heckle-1.4.1 as devel/ruby-heckle. 2008-04-04 15:17:14 +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 Initial import of ruby18-inline-3.6.7 as devel/ruby-inline. 2008-04-04 15:17:28 +00:00
ruby-linecache Initial import of ruby18-linecache-0.4.2 as devel/ruby-linecache. 2008-04-13 07:37:14 +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 Initial import of ruby18-memcache-0.1.0 as devel/ruby-memcache. 2008-04-04 15:28:10 +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 ruby-mode to 1.8.6.114. 2008-03-10 04:14:26 +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 Initial import of ruby18-parsetree-2.1.1 as devel/ruby-parsetree. 2008-04-04 15:18:14 +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 Update ruby-racc pacakge to 1.4.5 2007-03-17 15:49:43 +00:00
ruby-rbtree Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +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 Update to 0.41: 2007-08-06 23:39:25 +00:00
ruby-rd-mode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ruby-readline Support user-destdir installation. 2008-03-13 21:04:40 +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 Initial import of ruby18-rspec-1.1.3 as devel/ruby-rspec. 2008-04-04 15:18:33 +00:00
ruby-SDL Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +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 RUBY_REPLACE_DIRS is relative to ${WRKSRC} so no need to give the absolute 2008-04-04 15:31:39 +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 Initial import of ruby18-ruby2ruby-1.1.8 as devel/ruby2ruby. 2008-04-04 15:18:56 +00:00
rubyforge Update rubyforge to version 4.5.0. Changes from version 0.4.2 include: 2008-04-04 15:19:03 +00:00
rudiments Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
rvm Update to 1.14. 2007-04-11 18:20:14 +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 Change default rsh to ssh(1). It's what cvs(1) in base does. 2008-01-17 11:03:02 +00:00
scmgit Update to v1.5.4.5. 2008-04-07 15:05:31 +00:00
scmgit-base Update to v1.5.4.5. 2008-04-07 15:05:31 +00:00
scmgit-docs Add USE_LANGUAGES=c (spotted by dh@, thanks). Bump rev. 2008-03-03 00:35:13 +00:00
scons Fixed PKGMANDIR. 2006-10-22 06:39:43 +00:00
scons-devel Fixed PKGMANDIR. 2007-01-02 14:05:59 +00:00
sdcc
SDL Update to 1.2.13: 2008-01-13 15:57:59 +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 Update to 2.0.9: 2007-07-26 00:08:40 +00:00
SDLmm
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 Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +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 The package supports installation to DESTDIR. 2007-06-10 09:03:19 +00:00
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 Fallback to strtod on DragonFly. Limit it until the 2.0 release for now. 2007-06-12 14:48:33 +00:00
sparsehash Update to 0.4, provided by Aleksey Cheusov in PR 34063: 2006-08-03 19:46:42 +00:00
spiff Made the package work on Solaris, which didn't like redeclarations of 2007-10-05 21:13:59 +00:00
splint Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
st Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
stgit Take maintainership, as I regularly update this package. 2008-04-10 12:12:24 +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 Use apache.mk and depend on APACHE_PKG_PREFIX instead of switching on 2008-03-08 21:20:59 +00:00
subversion-base No longer set apache22 option if apr1 is set, as nothing uses it. 2008-03-08 21:00:53 +00:00
svk Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
swig Adapted package for installation to DESTDIR. 2007-07-10 19:51:22 +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.30: Fix a GIT bug, support mercurial 0.9.5. 2007-11-08 05:19:24 +00:00
tavrasm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tcl-tclcl Update tcl-tclcl to 1.19. 2007-04-26 15:32:24 +00:00
tcllib Remove myself as maintainer, I don't have the time anymore to keep these 2007-05-18 10:03:30 +00:00
teem Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tet3 Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +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 Remove dead MASTERS_SITES. From Zafer Aydogan. 2007-06-08 18:39:22 +00:00
tkdiff Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tla Remove trailing spaces. 2007-10-09 19:19:08 +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 Update to trio-1.11. Most important changes are various bug and 2006-10-31 23:13:51 +00:00
tvision Fixed build with sunpro. 2008-01-24 19:27:10 +00:00
ucl Don't install Makefile. It contains workdir references and is bare-bone, 2007-06-17 15:15:09 +00:00
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
vanessa_logger fix silly mistake in last :/ 2007-03-02 11:45:47 +00:00
vanessa_socket
vtcl Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
wide Fix DESTDIR installation. 2008-04-07 16:18:02 +00:00
xdelta Reset maintainer on his request. 2008-01-19 09:16:17 +00:00
xdelta3 Fix DESTDIR. 2008-04-07 18:26:21 +00:00
xfce4-dev-tools Updated Xfce to 4.4.2 2007-12-07 19:43:19 +00:00
xmake Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
xorg-util-macros Add patch to allow cross-compilation of packaging using the 2007-08-06 15:27:06 +00:00
xxgdb Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
yasm Update yasm to 0.6.2. 2007-10-21 23:41:59 +00:00
z80-asm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ZenTest Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
zlib Re-arrange lines to make this more likely to pass pkglint. 2007-08-22 18:36:09 +00:00
Makefile + py-newt. 2008-04-13 09:56:30 +00:00