pkgsrc/net
obache e84f94813d Update p5-SOAP-Lite to 0.69.
Changes:
0.69 Aug 16 2006

  ! Commented out two lines of code that were causing S::L to die under
    a non-fatal error condition. This is a HACK.

0.68 July 6 2006

  ! Patched support for mod_perl Apache2 (thanks to JT Justman)
  ! Fixed bug where SOAP::SOM objects were not properly detected,
    serialized and returned (thanks chris at prather dot o r g)
  ! Fixed bug with default_ns and ns functions so that they
    serialized XML properly.
  + Started to add experimental DIME support - possible impacts to MIME
    support as well

0.65-beta7 May 12 2005

  + Added default_ns and ns to replace the confusing use of uri() and
    use_prefex()

0.65-beta6 June 3 2005

  ! Fixed bug resulting in XMLRPC requests to be serialized using the
    doc/literal serializer if serializing arrays

0.65-beta5 May 6 2005

  ! Fixed critical bug which prevented all XMLRPC servers from working

0.65-beta4 Apr 3 2005

  ! Fixed bug 1160881 - HTTP headers are now terminated by \r\n for
    compatibility with .NET and compliance with HTTP spec.
  ! Fixed 1158666 - stubmaker.pl no longer call deprecated subroutine
  + stubmaker.pl got a lot of enhancements - now has help and version
    output, run time options, etc. See 'man stubmaker.pl' for more.
  + Classes generated by stub_maker.pl now have a special subroutine
    called 'want_som.' When set to 1, the stub class will return a
    SOAP::SOM object for every request.
  ! Fixed bug 1149427 - now capable of returning SOAP::SOM objects
    from generated stub classes.

0.65-beta3 Mon Oct 25 2004

  + SOAP::Lite will only warn you once when you call a doc/literal
    service
  + Added SOAP::Schema->cache_dir() and SOAP::Schema->cache_ttl(),
    which control how code stubs generated from WSDLs are cached to
    prevent constant reparsing of WSDL files.
  ! Tested SOAP::Lite against Google, Salesforce, and FedEx. So far,
    clients can successfully call these service providers (at least
    some of their operations) - testing does not provide 100% coverage
    of their APIs.

0.65-beta2.1 Mon Oct 25 2004

  + Fixed bug in unit tests in which MIME::Tools was not properly detected
    resulting in failed unit tests for some users.
  + Fixed some documentation issues (speling, etc).

0.65-beta2 Mon Oct 25 2004
  ** WARNING ** substantial changes have been made to SOAP::Lite in
  this release in regards to how it manages attachments. The changes
  may introduce instabilities into your software that relies on this
  functionality. Please test your software with 0.65 prior to moving it
  to a production environment.

  + Added ReleaseNotes.txt
  + Added section REPORTING BUGS to pod comments
  + Deprecated SOAP::Lite->schema removed
  + Deprecated SOAP::Lite->on_debug removed
  + Deprecated SOAP::Schema->schema in favor of SOAP::Schema->schema_url
  + Added SOAP::Schema->useragent - which returns the LWP::UserAgent instance
    that will be used when accessing WSDLs via the SOAP::Lite->service call.
    This is helpful when access to a WSDL requires authentication, etc.
  + Made changes that allow messages to be constructed using a NULL body:
    <Envelope><Body /></Envelope>
  + Added constant OBJS_BY_REF_KEEPALIVE which defaults to 600 - this is
    so that services can configure how long to cache objects marked as persistent
    using SOAP::Server::Object->objects_by_reference()
  + Added the ability for a user to modify the UserAgent class used
    by SOAP::Transport::HTTP::Client, updated Transport.pm's documentation
    to reflect this. Added $SOAP::Transport::HTTP::Client::USERAGENT_CLASS
    variable as a means of setting this.
  + Added initial DIME support
  + SOAP Packager package/unpackage now take in a context variable as
    input because DIME needs to know what version of SOAP you are using.
  + Refactored and rewrote README
  + Renamed SOAP::Schema->stub() to SOAP::Schema->generate_stub. This populates
    a private variable called C<stub> with the autogenerate Perl code.
  + Added SOAP::Schema->stub() which returns the autogenerated Perl code used
    internally by SOAP::Lite. This can be helpful for debugging SOAP::Lite's
    utilization of WSDL, as well as helpful to developers working on S::L's
    WSDL support.

0.65-beta1 Mon Oct 18 15:55:00 2004

  + Made SOAP::Serializer->readable actually produce readable XML!
  ! Fixed bug 747312 - Made XML Schema 2001 the default schema
  + Changed typelookup of base64 to base64Binary to conform with 2001
    schema
  + Added support for [almost] all XML Schema 2001 built-in datatypes
  + Added register_ns subroutine to SOAP::Serializer
  + Added find_prefix subroutine to SOAP::Serializer
  + Added use_prefix subroutine to SOAP::Serializer
  + Added a necessary set of initial subroutinues to support wsdl2perl
    project
  + Added format_datetime to SOAP::Utils
  + Documented SOAP::SOM->parts
  + Added SOAP::SOM->is_multipart
  + Properly escaped characters to facilitate emacs syntax highlighting
  + Ran podchecker to validate all POD comments
  ! Fixed bug 749636 - changed a croak to a warn to enable socket
    timeouts in SOAP::Transport::TCP::Server
  + Added support for UDDI 2/3
  + Majorly revamped product documentation thanks to the kind
    contribution made by O'Reilly. Appendix B from "Programming Web
    Services with Perl" has been completely integrated.
  + To better segment SOAP::Lite documentation, many modules have been
    added that contain documentation only. For those who loved the old
    documentation, it can be found in lib/OldDocs/SOAP/*.pm and
    lib/OldDocs/SOAP/Transport/*.pm
  ! Fix a bug in which doclit style arrays were not being deserialized
    properly. IOW, Repeated elements were not made into an array, only
    the last occurring value was recorded.
  + Added the ability for a SOAP Client to gain direct access to the
    HTTP::Request and HTTP::Response objects.
  + Changed default envelope namespace prefix from SOAP-ENV to soap
  + Changed default encoding namespace prefix from SOAP-ENC to soapenc
  + Reachitected MIME support to decouple MIME layer from transport
    layer. This only impacts the HTTP layer since that is the only
    transport in SOAP::Lite that supports attachments.
  + Creation of SOAP::Packager - decoupled in an extensible way the
    packaging of parts (a.k.a. attachments). This is used for encoding
    and decoding. This enables a more seemless addition of DIME
    support. Changes were made throughout SOAP::Lite to accomodate this
    functionality.
    - a call "context" was added to SOAP::Server and SOAP::Deserializer
      so that those classes could have access to the global
      SOAP::Packager instance
    - deprecated many function calls and packages having to do with
      attachment support
    - fixed several of the SOAP::*::new() methods so that they don't
      inadvertantly reinitialize themselves and destroy precious context
      information in the process
  + Gave developers direct access to MIME::Parser object so that they
    can optimize its use. See the following URL to optimize it for
    memory consumption, parsing speed, disk utilization, etc:
    http://search.cpan.org/dist/MIME-tools/lib/MIME/Parser.pm#OPTIMIZING_YOUR_PARSER
  + Added a context variable to SOAP::Serializer and SOAP::Deserializer
    so that they have mechanisms for getting instance data from the
    calling context. The value of context is either SOAP::Lite or
    SOAP::Server depending upon the role the service is playing in the
    transaction. Contexts are initialized when a call is made, and
    destroyed when a call is completed.
  + Greater than character '>' has been added to list of characters
    that will be automatically escaped. This is not a requirement by
    the XML spec, it is a MAY, but I am doing it after seeing a minority
    of people report a compatibility problem.
  - Removed deprecated methods: SOAP::Serializer::namespace and
    encodingspace
  + Added SOAP::Serializer::encodingStyle method which allows users to
    set the URI for default encodingStyle.
  + Added initial support for literal encoding style. EXPERIMENTAL
  + Added some true constant values representing various SOAP namespace
    URIs
  + Added SOAP::Constants::SUPPORTED_ENCODING_STYLES for better tracking
    of the set of encoding styles that the toolkit can [de]serialize
  ! Fixed bug 840172 - "Makefile.PL --noprompt flag broken," now fixed
  + Updated SOAP 1.2 URIs to the latest (TODO - maintain support for
    older ones)
  + Added HTTPS support for HTTP::Server Daemon class - thanks to Nils
    Sowen for this contribution
2006-10-21 17:11:47 +00:00
..
6tunnel
adns Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
aget Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
aiccu Fix spaces to unbreak DragonFly build. 2006-09-07 06:18:35 +00:00
airport2basestationconfig Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
airportbasestationconfig Backout last change because it doesn't have any effect. 2006-05-29 14:37:15 +00:00
airportmodemutility Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
amule Fixed "test ==". 2006-10-14 01:14:15 +00:00
argus Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
arla pkglint - no functional changes. 2006-08-24 19:17:53 +00:00
arpd Just turn off "nonnull" warning instead of all warnings. 2006-06-30 15:33:39 +00:00
arping Fix a typo. Reword a sentence. From Zafer Aydogan. 2006-07-14 15:07:59 +00:00
arpwatch Remove an incomplete sentence, reported by Zafer Aydogan. 2006-07-14 14:47:56 +00:00
autonet update autonet to 0.19: 2006-05-05 17:46:26 +00:00
awhois
balance Add DragonFly support. 2006-03-14 02:06:28 +00:00
batchftp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bftpd Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
bind4 Fix a tyop. 2006-03-09 05:29:56 +00:00
bind8 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
bind9 Fixes for CVE-2006-4095 and CVE-2006-4096 from bind-9.3.2-P1 2006-09-05 20:45:32 +00:00
bing Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
bittornado Update to 0.3.15: 2006-03-10 20:46:28 +00:00
bittornado-gui Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
bittorrent Update "bittorrent" and "bittorent-gui" package to version 4.4.0. 2006-02-26 22:43:33 +00:00
bittorrent-gui Fix package list problem caused by revision bump. 2006-04-18 11:53:04 +00:00
bmon Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
boinc3-coreclient Uses C++. 2006-06-02 13:21:28 +00:00
boinc3-libs Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
boinc3-seti Uses C++. 2006-05-12 07:55:32 +00:00
bounce Per PR pkg/30133 majordomo conflicts with net/bounce. 2006-01-06 02:35:32 +00:00
bpalogin Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bridged Fix DragonFly. 2006-03-14 02:07:32 +00:00
bsddip Move "bsddip" package to "bsddip" directory. 2006-06-30 16:17:27 +00:00
btget Needs makedepend as tool. 2006-03-16 22:54:06 +00:00
btpd Update btpd to 0.11, patch provided via PR 34068. 2006-09-10 04:43:13 +00:00
bug-buddy Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 12:20:32 +00:00
cdpd Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
cftp List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-06 03:20:54 +00:00
chksniff
choparp Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
chrony Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cia Update master site URL. 2006-08-24 10:13:03 +00:00
cidr Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
cisco-mibs Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
citrix_ica Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cmu-dhcpd Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
connect Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
corkscrew Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
couriertcpd Fix build on Linux. Replace link to -ldb with BDB_LIBS. Avoid automake 2006-10-09 01:34:10 +00:00
ctorrent Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
dante Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
darkstat Update darkstat to 3.0.540. 2006-10-07 07:49:01 +00:00
dc_gui2 Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 12:20:32 +00:00
dctc Needs pkg-config as tool. 2006-06-06 19:05:29 +00:00
ddclient Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
delegate Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
dgd Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
dhid Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
dhisd Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
djbdns Rename "SITES_* to "SITES.*" for file-specific lists of sites from which 2006-07-27 18:48:02 +00:00
djbdns-run Completely nuke the concept of PKG_PHASE from pkgsrc except for the 2006-07-10 22:59:26 +00:00
dlint Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
dnsdoctor Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
dnsmasq Add DragonFly support. 2006-03-22 15:59:56 +00:00
dnstop Update dnstop to 20060517. 2006-10-08 12:43:38 +00:00
dnstracer Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
docsis Workaround undefined prototype in net-snmp. 2006-03-22 16:33:08 +00:00
driftnet Needs makedepend. 2006-06-09 06:33:27 +00:00
dtcp Update net/dtcp package to 20060109. 2006-07-09 13:21:02 +00:00
dtcpclient Updated dtcpclient-20060526. 2006-08-27 14:00:41 +00:00
dynipclient Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
echoping Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ed2k-gtk-gui Fixed "test ==". 2006-10-14 01:14:15 +00:00
edonkey2k Move the check-shlibs target from bsd.pkg.mk to bsd.pkg.check.mk where 2006-05-22 22:22:02 +00:00
entropy Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
etherape Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 12:20:32 +00:00
ettercap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ettercap-NG Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
ez-ipupdate Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
fair-identd
firewalk Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
flan Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
flodo Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
flow-tools Update URL. From Makoto Fujiwara in PR pkg/34222. 2006-08-18 22:54:54 +00:00
fmirror
fping
fping6 Require option "inet6" for IPv6 capability. 2005-11-08 15:25:07 +00:00
freenet-tools Update to 0.2.25. No offical changelog; mainly, incorporates Interix 2006-05-16 18:02:04 +00:00
freeradius Update to 1.1.3: 2006-09-10 22:35:22 +00:00
freewais-sf Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
ftplibpp Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
ftpproxy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gated Add DragonFly support. Fix va_arg integer promotion problem, bump 2006-06-01 22:40:19 +00:00
GeoIP Update to 1.4.0. Changes: 2006-09-05 21:03:58 +00:00
gethost Install man page to PKGMANDIR instead of hard-coded "man". 2005-12-27 17:37:27 +00:00
gftp Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
gftp-gtk1 Fixed security issue in gftp, so bump revision for gtk1 version as well. 2006-06-27 20:17:36 +00:00
gift nb1: USE_TOOLS+=perl:run (gift-setup requires it). 2006-07-23 22:14:26 +00:00
gift-fasttrack Needs pkg-config. 2006-06-07 12:30:36 +00:00
gift-gnutella LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
gift-openft LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
giftcurs Needs pkg-config. 2006-06-07 12:47:15 +00:00
gini Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gkrellm-multiping Fix build on DragonFly. 2006-05-29 14:06:27 +00:00
gkrellm-ping Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gkrellm-snmp Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gkrellm-wireless Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gkrellm1-snmp Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gkrellm1-wireless Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gnapfetch Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gnet Fixed "test ==". 2006-10-10 20:01:31 +00:00
gnet1 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gnetcat List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-06 03:20:54 +00:00
gnome-netstatus Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 12:20:32 +00:00
gnome-vfs2-smb Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 15:36:12 +00:00
gnugk Disable propolice on DragonFly to work around ICE. 2006-09-24 20:02:42 +00:00
gofish Modify packages that set PKG_USERS and PKG_GROUPS to follow the new 2006-04-23 00:12:35 +00:00
gopher Disable the OS X hack for re_comp and friends on DragonFly, where it 2006-03-22 21:22:09 +00:00
gt-itm Include sys/param.h to use NBBY on Linux. 2006-08-18 14:52:02 +00:00
gtk-gnutella Bump PKGREVISION due to dbus update to 0.9x. 2006-08-23 09:49:35 +00:00
gtk_wicontrol Needs msgfmt. 2006-06-09 06:37:51 +00:00
hesiod Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
hf6to4 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-14 07:59:09 +00:00
hlfl Add some bug fix patches from hlfl's CVS, reported by ISIHARA 2006-01-08 11:46:42 +00:00
hobbitclient USE_TOOLS+=yacc 2006-06-09 16:13:47 +00:00
hobbitmon Fix patch-ae to allow hobbitmon to be built on systems that use bash as 2006-10-09 13:29:00 +00:00
host added support for IRIX 5 2006-10-03 14:25:55 +00:00
howl Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
hping Update to hping2, release candidate 3 2006-03-30 13:51:28 +00:00
httping Fixed the build on Solaris (missing libraries). 2006-09-16 10:07:55 +00:00
httptunnel Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
icsi-finger Force traditional mode for cpp, at least GCC 3.4+ will not generate 2006-06-08 14:29:26 +00:00
iftop Updat enet/iftop to 0.17: 2006-09-25 12:16:12 +00:00
IglooFTP Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ipcalc Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
ipcheck Update ipcheck to 0.233. 2006-10-16 08:36:04 +00:00
iperf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ipgrab List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-06 03:20:54 +00:00
iplog Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ipv6calc Update ipv6calc to 0.61.0. Changes: 2006-08-28 22:02:51 +00:00
ipw Rename variable "optreset" to "my_optreset" to avoid conflict with global 2006-06-30 18:25:43 +00:00
irrd Make gzip be found by configure again, instead of setting it to an empty 2006-08-06 07:09:51 +00:00
irrtoolset-nox11 add a fix for a list content checking problem Hagen Boehm identified 2006-07-07 12:30:56 +00:00
ishell Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
isic Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
ispman Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ja-samba Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-14 07:59:09 +00:00
jftpgw changes new in 0.13.5, Wed Jun 3 16:17:44 CEST 2004 2006-04-10 09:31:01 +00:00
jigdo Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-14 07:59:09 +00:00
jumpgate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
jwhois Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
kdenetwork3 Update to KDE 3.5.5 2006-10-12 10:47:18 +00:00
kftpgrabber Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
kiax Update net/kiax to version 0.8.51 fixing the security issue in 0.8.5 2006-07-07 16:50:35 +00:00
kismet Fixed "test ==" and a lot of pkglint warnings. 2006-10-14 01:27:43 +00:00
kphone Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
LaBrea On BSDs also check if BIOCIMMEDIATE is actually defined, DragonFly 2006-06-06 19:47:48 +00:00
lambdamoo USE_TOOLS+=yacc 2006-06-20 22:12:59 +00:00
lambdamoo-core Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
lambdamoo-doc Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
latd Uses C++. 2006-06-03 00:07:01 +00:00
lft Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
lftp Update to version 3.5.5 2006-10-08 02:57:09 +00:00
libares Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libcares Add ares_get_config() from CVS for unrealircd 3.2.5 to work 2006-07-18 22:38:18 +00:00
libdnet Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libIDL update to 0.8.7 2006-08-03 17:29:07 +00:00
liblive USE_LANGUAGES+= c 2006-07-31 21:08:03 +00:00
libnids Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libpcap Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libradius Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libsoup Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libsoup-devel update to 2.2.96 2006-08-03 17:33:24 +00:00
libsscript Remove unnecessary DECOMPRESS_CMD setting, which is automatically taken 2006-01-19 23:00:24 +00:00
libtorrent Update the "libtorrent" package to version 0.10.3 and the "rtorrent" 2006-10-17 12:28:12 +00:00
libupnp HOMEPAGE has been moved. 2006-10-13 01:36:07 +00:00
libvncserver Import libvncserver, provided by Pierrick Brossin in private mail: 2006-10-15 14:03:41 +00:00
linc install gtk-doc generated API documentation at the default location, 2006-08-10 17:44:11 +00:00
llnlxdir Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-14 07:59:09 +00:00
llnlxftp Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
logjam Imported logjam. 2006-10-02 17:33:25 +00:00
lopster Add some more pixmaps to PLIST. Bump revision. 2006-04-22 16:44:25 +00:00
maradns Use 3rd person for DESCR. 2006-04-27 19:50:15 +00:00
mbrowse The configure script needs to know the location of the installed net-snmp 2006-05-06 17:12:33 +00:00
md-whois Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mDNSResponder Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
mDNSResponder-nss add INSTALL/DEINSTALL scripts to create a symlink /usr/lib/nss_XXX.so.0 2006-09-21 18:06:18 +00:00
miredo Update to 1.0.0 for minor build fixes. 2006-08-23 22:59:09 +00:00
mirror Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
mldonkey Update mldonkey* to 2.8.1: 2006-10-03 18:59:31 +00:00
mldonkey-gui Update to 2.8.0: 2006-09-16 06:21:39 +00:00
mouse-pppoe net/if_ether.h and net/ethertypes.h are approximately replacable by 2006-01-25 17:45:32 +00:00
mping Imported mping from PR 34488. 2006-09-07 10:06:26 +00:00
mppe-lkm Add a reminder that the LKM needs arc4, which is brought by wlan drivers. 2006-02-16 22:04:07 +00:00
mrstat Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
mrt Fix broken va_arg usage violating ISO C promotion rules. Bump revision. 2006-03-22 23:55:37 +00:00
mrtg Updated net/mrtg to 2.14.7 2006-10-19 06:40:54 +00:00
mtr Update to 0.72: 2006-10-03 19:15:20 +00:00
mydns-mysql Handle info page with install framework. Bump revision. 2006-06-07 12:43:13 +00:00
mydns-pgsql Use install framework for info pages. Bump revision. 2006-06-07 12:54:48 +00:00
nagios-base Fixed a typo in CONFIGURE_ARGS and some references to WRKDIR. 2006-10-20 08:45:10 +00:00
nagios-imagepak-base Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
nagios-nrpe Update nagios-nrpe package to 2.5.2. 2006-08-17 14:23:07 +00:00
nagios-nsca Update to 2.6: 2006-05-09 18:12:11 +00:00
nagios-plugin-ldap Fixed "test ==". 2006-10-16 08:40:45 +00:00
nagios-plugin-mysql Fixed "test ==". 2006-10-16 08:40:45 +00:00
nagios-plugin-pgsql Fixed "test ==". 2006-10-16 08:40:45 +00:00
nagios-plugin-snmp Fixed "test ==". 2006-10-16 08:40:45 +00:00
nagios-plugins Perl is needed at run time. PKGREVISION++ 2006-10-20 08:54:44 +00:00
nam Use source files included in ns-allinone, which supports x86_64 and gcc 4.1. 2006-08-23 10:43:49 +00:00
nap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
napshare Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
nasd Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
nbtscan Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ncftp2 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ncftp3
neat Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
nemesis Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
net-snmp Apply patch from net-snmp CVS repository to fix Perl module SNMP's bulkwalk 2006-10-18 22:37:46 +00:00
netatalk Fix test == 2006-10-12 11:54:49 +00:00
netatalk1 netatalk1 package overhaul 2006-08-17 13:57:23 +00:00
netbsd-tap "BUILD_ENV" was misnamed. It's actually the environment that is passed 2006-07-21 14:27:56 +00:00
netcat Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
netcat6 Revert patch-aa to the previous revision and just add __NetBSD__ to the list. 2006-07-07 18:47:52 +00:00
netdisco Use -[0-9]* instead of -* in dependencies. Bump revision. 2006-06-30 09:54:42 +00:00
netgroup NOT_FOR_PLATFORM Interix. 2005-11-03 17:00:38 +00:00
netname
netperf Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
netpipes Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
netsaint-base Modify packages that set PKG_USERS and PKG_GROUPS to follow the new 2006-04-23 00:12:35 +00:00
netsaint-plugin-cluster Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
netsaint-plugin-snmp Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
netsaint-plugins Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ngrep Fixed the path to the manual pages. 2006-10-07 07:24:49 +00:00
nicotine Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
nidentd
nload Uses C++. 2006-05-22 15:10:38 +00:00
nmap Fixed "test ==". 2006-10-11 19:23:53 +00:00
nmapfe Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
nocol Reomove BROKEN_IN for packages that built in the latest 2006-08-06 05:16:50 +00:00
nprobe Correct pthread detection in configure. Has libtool, so annotate that. 2006-05-12 09:19:54 +00:00
ns Update HOMEPAGE. 2006-08-23 10:28:06 +00:00
nsca Fix errno. 2006-04-22 16:49:48 +00:00
nsd Update to nsd-2.3.5. This fixes a number of minor bugs. 2006-07-03 13:33:59 +00:00
nslint Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
nstx DragonFly support. 2005-12-02 21:05:43 +00:00
ntop Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
ntop1 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ntp4 Moved documentation to share/doc/ntp4. Bumped PKGREVISION. 2006-07-12 17:41:54 +00:00
ocamlnet Initial import of ocamlnet-1.1.2: 2006-08-11 15:43:36 +00:00
oidentd Add basic DragonFly support. 2006-06-01 22:20:16 +00:00
oinkmaster Update to 2.0 2006-03-09 14:06:03 +00:00
openafs USE_TOOLS+=lex 2006-06-09 16:05:11 +00:00
openag This package needs zlib. 2006-06-07 21:01:15 +00:00
openh323 Workaround for propolice ICE on DragonFly. 2006-09-19 19:29:30 +00:00
openntpd Update openntpd version 3.9p1. 2006-08-20 14:50:43 +00:00
openslp Make slpd reopen its log file on HUP (it does not use syslog - bah!). 2006-07-13 13:42:36 +00:00
openvmps On NetBSD use daemon() instead of the custom code here which forgets to 2006-05-31 17:47:45 +00:00
openvpn Update net/openvpn to 2.0.7. Changes from version 2.0.6 include fixing 2006-07-05 15:50:05 +00:00
ORBit Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
ORBit2 Flag a number of packages I use as supporting (user-)destdir. 2006-10-09 12:52:34 +00:00
overnet Move the check-shlibs target from bsd.pkg.mk to bsd.pkg.check.mk where 2006-05-22 22:22:02 +00:00
p5-DNS-ZoneParse Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Geo-IP Fix build by pointing to GeoIP location. 2006-07-21 18:19:05 +00:00
p5-INET6
p5-IO-Interface
p5-IO-Socket-Multicast
p5-IP-Country Fixed spelling mistake. 2006-06-11 19:38:05 +00:00
p5-ispman Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net Update comment in patch. 2005-12-01 20:25:44 +00:00
p5-Net-Bind Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-CIDR-Lite Updated to version 0.20. 2006-02-15 22:28:06 +00:00
p5-Net-Daemon
p5-Net-Dev-MIBLoadOrder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-DNS Updated to version 0.58. 2006-09-03 16:55:15 +00:00
p5-Net-DNSServer Remove an unneeded .pl file in the work dir after extraction; fixes 2006-07-21 16:22:01 +00:00
p5-Net-FTPSSL Import p5-Net-FTPSSL from pkgsrc-wip. Packaged by dieter roelants. 2006-04-09 17:14:33 +00:00
p5-Net-Gnats Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-Google Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-Ident
p5-Net-IP Update to 1.25 2006-09-02 08:28:48 +00:00
p5-Net-IPv4Addr Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-Net-IPv6Addr
p5-Net-IRC
p5-Net-Packet Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
p5-Net-Pcap Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
p5-Net-RawIP
p5-Net-Rendezvous This is Net::Rendezvous, a set of perl modules to utilize DNS for service 2006-01-15 16:24:16 +00:00
p5-Net-Server Update to 0.94 2006-09-13 21:07:55 +00:00
p5-Net-SNMP Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-Telnet Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-Telnet-Cisco Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-TFTP Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-XWhois
p5-Net-Z3950 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-NetAddr-IP Update to version 3.33. 2006-05-13 21:03:45 +00:00
p5-NetPacket
p5-Nmap-Parser Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-POE-Component-Client-DNS
p5-POE-Component-Client-Ident Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-POE-Component-SNMP Updated net/p5-POE-Component-SNMP to 1.07 2006-10-16 09:32:53 +00:00
p5-RADIUS Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-14 07:59:09 +00:00
p5-SNMP-Info Update to version 1.04. 2006-10-01 15:56:08 +00:00
p5-SNMP-MIB-Compiler
p5-SNMP_Session Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-SOAP-Lite Update p5-SOAP-Lite to 0.69. 2006-10-21 17:11:47 +00:00
p5-Socket6 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-X500-DN Change MAINTAINER to myself as geeogeegeeoh (at) users.sourceforge.net does 2006-02-17 20:37:11 +00:00
packit
partysip Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pchar Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
pconsole Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
pear-Net_DIME Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pear-Net_Sieve Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pear-Net_SMTP Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pear-Net_Socket Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pear-Net_URL Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pear-SOAP Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pen Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
pfnet Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
php-ftp Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
php-snmp Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
php-sockets Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
php-xmlrpc Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
php-yaz Initial import of php-yaz version 1.0.7 into The NetBSD Packages 2006-07-10 07:44:58 +00:00
php-yp Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
php5-soap Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pim6dd Honour PKGMANDIR and fix installation of man pages on !NetBSD. 2006-03-14 02:38:37 +00:00
pim6sd USE_TOOLS+=yacc 2006-06-21 18:31:21 +00:00
pload Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
poink Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
polsms Uses C++. 2006-06-07 12:43:54 +00:00
poptop DragonFly support. 2006-03-23 00:53:48 +00:00
powerdns Import net/powerdns, based on wip/pdns2 from pkgsrc-wip. 2006-08-13 09:34:21 +00:00
powerdns-ldap Import net/powerdns-ldap. 2006-08-13 09:36:40 +00:00
powerdns-mysql Revert to net/powerdns-mysql (I accidentally imported net/powerdns-pgsql in 2006-08-13 09:38:42 +00:00
powerdns-pgsql Import net/powerdns-pgsql. 2006-08-13 09:36:06 +00:00
powerdns-sqlite Import net/powerdns-sqlite. 2006-08-13 09:36:24 +00:00
ppp-lzs Mark as BROKEN_IN pkgsrc-2006Q1 according to 2006-05-18 20:29:58 +00:00
pppd Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pptp Fix build on DragonFly. Add pptp.8 to PLIST. Bump revision. 2006-05-12 09:30:55 +00:00
proftpd The databases/openldap package has been split in -client and -server component 2006-05-31 18:22:23 +00:00
proxycheck Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
publicfile Use errno-hack for leapsecs_read.c as well. 2005-12-18 20:28:34 +00:00
puf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pure-ftpd The databases/openldap package has been split in -client and -server component 2006-05-31 18:22:23 +00:00
pxe Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-adns Reset maintainer, email bounced with: 2006-08-13 23:32:22 +00:00
py-dns Mark as Python 2.2+, since explicit integer division is used (//). 2006-06-02 16:17:08 +00:00
py-GeoIP Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-google py-SOAPpy needs Python 2.2+ 2006-06-07 16:56:08 +00:00
py-IP Consistently use NetBSD.org address for shell, shellhung.org does not exist. 2006-03-16 22:48:42 +00:00
py-kenosis ... and the logging module is available for Python 2.3+. 2006-06-07 12:53:48 +00:00
py-libdnet Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-libpcap Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-mimelib Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-ORBit Linking against libpython needs to link against pthread on some platforms 2006-07-14 06:29:02 +00:00
py-soaplib Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-soappy Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-spreadmodule Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-twisted Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-twisted-docs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-zsi Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pygopherd Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
qadsl Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
quagga Update to 0.98.6. 2006-06-05 19:28:25 +00:00
quagga-devel Update to 0.99.4. 2006-06-05 13:58:54 +00:00
queryperf Add queryperf-2.1, an updated version of the contrib tool shipped with 2006-08-09 18:20:46 +00:00
ra-rtsp-proxy Fix errno. 2006-03-14 02:41:56 +00:00
radiusd-cistron Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
rdesktop Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
rdist6 If guessing OS type has to have a '*4.0*' entry to try to match svr4, 2006-08-19 23:34:54 +00:00
rinetd Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ripe-whois Rename "SITES_* to "SITES.*" for file-specific lists of sites from which 2006-07-27 18:48:02 +00:00
ripe-whois-tools Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rootprobe Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rp-l2tp Add DragonFly support. 2006-05-12 09:41:15 +00:00
rp-pppoe Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
rsync Update to 2.6.8: 2006-04-28 16:08:37 +00:00
rtorrent Update the "libtorrent" package to version 0.10.3 and the "rtorrent" 2006-10-17 12:28:12 +00:00
ruby-icmp Bump PKGREVISION of these packages which affected (fixed) by 2006-02-03 04:43:47 +00:00
samba Don't use .for with on-demand expanded variables that depend on an 2006-10-17 11:29:36 +00:00
scamper Update to cvs version 20060331, from Matthew Luckie <mjl@luckie.org.nz>. 2006-04-20 22:57:06 +00:00
scapy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
scdp Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
scli Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
sdig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sdist Logging option added, defaults to same logging as rdist. 2006-06-04 07:58:36 +00:00
SDL_net Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
sendfile Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
sharity-light Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-14 07:59:09 +00:00
sipcalc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sipsak
sitescooper Use pkginstall framework. Sort PLIST. Bump PKGREVISION. 2006-02-22 22:51:28 +00:00
skype pkglint says: Alignment of variable values should be done with tabs, 2006-08-28 07:54:05 +00:00
slurm Add DragonFly and try to fix the reliance on zeroness of undefined 2006-02-24 19:25:33 +00:00
smokeping Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
sniffit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
snort Fixed a typo (SUBST_MESSAGE.cgi => SUBST_MESSAGE.paths) found by pkglint. 2006-06-18 00:25:26 +00:00
snort-mysql Add debug option 2006-04-18 22:39:32 +00:00
snort-pgsql Add debug option 2006-04-18 22:39:32 +00:00
snort-prelude Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
snort-rules
socat Update to 1.4.3.1 2006-02-05 00:33:34 +00:00
socket++ - add DragonFly support (positive lists for broken platforms would 2006-05-12 07:44:26 +00:00
socks4 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
socks5 Fixed the path to the manual pages. 2006-09-19 08:05:16 +00:00
soup Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
speedtouch Remove incorrect extern variable declaration which stopped compilation 2006-08-18 18:33:39 +00:00
spegla
spread Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
srsh
ssync
stripes Fixed creating libexec/cgi-bin as a regular file. Corrected PKGMANDIR. 2006-10-17 07:00:19 +00:00
sup fix the checksums 2006-03-29 00:15:44 +00:00
synergy - Add a missing entry to PLIST. 2006-08-23 09:13:24 +00:00
synergy1.2 Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
tacacs Fix errno. Define O_SYNC as O_FSYNC for DragonFly. 2005-12-18 19:23:04 +00:00
tcl-scotty Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
tcpdmerge Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tcpdpriv Reomove BROKEN_IN for packages that built in the latest 2006-08-06 05:16:50 +00:00
tcpdstat Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tcpdump Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
tcpflow Include a set of patches from Jukka Salmi in PR# 30805 2006-01-02 19:23:40 +00:00
tcpick Update net/tcpick to version 2.1. Addresses PR#34166 2006-08-09 13:58:30 +00:00
tcpillust Switch to Tcl/Tk 8.4. Bump PKGREVISION. 2006-03-08 19:02:47 +00:00
tcpreplay Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
tcpslice Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tcptrace Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tcptraceroute Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
teamspeak-client Update net/teamspeak-client to 2.0.32.60 2006-09-25 13:15:35 +00:00
tightvnc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tightvncviewer Reset maintainer for people who lost their commit bit. 2006-09-03 00:56:28 +00:00
tinc Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
tinyfugue Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
tkined Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
tn5250 Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
tnftp For consistency with the other tools from bootstrap, the preformatted 2006-07-24 08:10:37 +00:00
tnftpd USE_TOOLS+=yacc 2006-06-20 22:19:38 +00:00
tor Update to 0.1.1.24. Changes: 2006-10-09 00:51:26 +00:00
torrentutils Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
totd Fixed gcc warnings. 2006-06-26 11:20:47 +00:00
traceroute-as Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
trafshow Add -DBIND_8_COMPAT to CFLAGS to build on Darwin. This fixes 2006-06-05 17:29:25 +00:00
trickle Add DragonFly support. 2006-03-23 15:55:53 +00:00
tsclient Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 12:20:32 +00:00
tsocks Fix build under Mac OS X by not building an useless (and not installed 2006-09-17 11:50:15 +00:00
tspc Install the relevant template files and point the configuration file to their 2006-02-23 10:18:02 +00:00
ttt Reset maintainer for people who lost their commit bit. 2006-09-03 00:56:28 +00:00
ucarp Needs msgfmt. 2006-07-06 13:14:01 +00:00
ucspi-ssl Only build sslperl if option "ucspi-ssl-perl" is enabled. Bump PKGREVISION. 2006-04-02 17:44:16 +00:00
ucspi-tcp Rename "SITES_* to "SITES.*" for file-specific lists of sites from which 2006-07-27 18:48:02 +00:00
udpcast Linux doesn't know SO_REUSEPORT, noticed by Min Sik Kim 2006-08-28 15:07:48 +00:00
udptunnel Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
unison Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
unison-devel Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
upclient Slightly reorder includes to allow it to build on DragonFly (again). 2006-09-19 22:25:48 +00:00
userppp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
uucp Initial import of uucp-1.07 as net/uucp. 2006-04-24 23:21:46 +00:00
vcheck Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
vde Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
vino Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 12:20:32 +00:00
vnc - Update net/vncviewer4 to 4.1.2 (release notes just state "FIXED: Security 2006-07-22 19:21:11 +00:00
vncviewer - Update net/vncviewer4 to 4.1.2 (release notes just state "FIXED: Security 2006-07-22 19:21:11 +00:00
vpnc Fix a problem with ifconfig output on Fedora Core 5, see 2006-09-27 12:50:29 +00:00
vsftpd Explicitly error out if inet6 support is not present or disabled. 2006-10-05 15:20:28 +00:00
vtun Fix build with newer OpenSSL. 2006-05-12 09:48:09 +00:00
wakeup
wap-utils Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
waste Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
wget Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
whatmask
whoson Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
wimon Reuse MAX if it is already defined. Fixes build on DragonFly 1.6. 2006-09-24 13:53:17 +00:00
wireshark Fixed the shell interpreter for one script. Bumped PKGREVISION. 2006-09-01 19:53:47 +00:00
wistumbler DragonFly support. 2006-03-23 17:20:22 +00:00
wistumbler2 Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
wistumbler2-gtk Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
wmget Invert MASTER_SITES and HOMEPAGE. Pointed out by Bernd Ernesti. 2006-02-26 18:44:54 +00:00
wminet Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
wmnd Use DIST_SUBDIR and bump PKGREVISION. Pointed out by salo and wiz. 2006-04-29 10:55:55 +00:00
wmnet Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
wmpload Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
wol Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
wu-ftpd Fix build on DragonFly 1.6+. 2006-09-22 18:58:59 +00:00
x2vnc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
xfce4-wavelan-plugin Regenerate to fix some pkglint warnings. 2006-10-12 09:24:19 +00:00
xipdump Reset maintainer for people who lost their commit bit. 2006-09-03 00:56:28 +00:00
xmftp Include stdlib.h instead of malloc.h, which is not available on Darwin. 2006-05-10 06:40:59 +00:00
xnap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
xorp Fixed "test ==". 2006-10-05 02:40:25 +00:00
xrmftp Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
xtraceroute added support for IRIX 5 2006-10-01 22:36:46 +00:00
yafc List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-06 03:20:54 +00:00
yale-tftpd When opening a file for write, truncate it as well. 2006-03-14 14:11:53 +00:00
yaz Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
ytalk Merge Makefile.common into Makefile (not needed any longer 2006-01-12 20:03:52 +00:00
ywho Make this package build with gcc-4. 2006-05-10 06:13:51 +00:00
Makefile Maintainer update of ipa to 2.0.1 and move to sysutils. 2006-10-18 11:45:22 +00:00