Commit graph

110543 commits

Author SHA1 Message Date
wiz
f9a0c7d5fc Update MASTER_SITES/HOMEPAGE -- mostly disappeared.
From Sergey Svishchev in private mail.
2007-03-04 11:29:57 +00:00
wiz
f394899b1c Update MASTER_SITES. This one provides a .tar.gz, so update distinfo. 2007-03-04 11:28:48 +00:00
wiz
71203d2002 Remove two GNU ex-mirrors. 2007-03-04 10:53:17 +00:00
wiz
acb36a6608 + gnome-mag-0.14.2, wine-0.9.32. 2007-03-04 09:36:45 +00:00
dogcow
85401cea82 update dnstop to version 20070219.
IPv6 support is now included; less CPU is required; miscellaneous bugfixes.
See CHANGES for more detailed information.
2007-03-04 06:49:43 +00:00
obache
b4f2271ac8 Updated graphics/ruby-RMagick to 1.15.4. 2007-03-04 01:58:10 +00:00
obache
5e064cd8c4 Update ruby-RMagick to 1.15.4.
Changes:
RMagick 1.15.4
o Fix bug #8927, RMagick and rbgsl both export the
  name ID_call (bug report from Shin Enomoto)
2007-03-04 01:57:10 +00:00
grant
a156ec5cb4 make this actually work (on Solaris, at least) by forcing -lclntsh.
something weird is going on in the pkgsrc perl build process which is
trashing required arguments...
2007-03-04 01:17:51 +00:00
grant
3d2443abf8 note update of p5-DBD-Oracle to 1.19. 2007-03-04 01:05:04 +00:00
grant
02dcf96623 update DBD::Oracle to 1.19.
Changes in DBD-Oracle 1.19 (svn rev 8002) 3rd November 2006

  Fixed execute_array to comply with DBI standard from Martin J. Evans, Xho Jingleheimerschmidt and others
  Fixed execute_array so it will not throw a Perl warning on undef values in Tuples from John Scoles
  Fixed execute_array so it will take the ora_array_chunk_size DB handle attribute
  Fixed a few other little bugs dealing with  compatibility with Oracle 8
  Added support for array context aware execute_for_fetch from Martin J. Evans

Changes in DBD-Oracle 1.18 (svn rev 6697)

  Added support for native Oracle Array interface thanks Kristian Nielsen
  Added suppot for LOB Locators from Jeffrey Klein.

Changes in DBD-Oracle 1.17 (svn rev 3726)

  Added expanded support for Lobs from Jeffrey Klein
  Fixed automatic csform setting for some UTF8 cases and for Oracle 8.0
  Fixed truncation error on fetch into UTF8 charset thanks to Honza Pazdziora.
  Fixed INTERVAL DAY TO SECOND thanks to Honza Pazdziora.
  Fixed unicode tests for cygwin thanks to Andy Hassall.
  Fixed undef warnings when connecting with undef $user.
  Fixed undef warnings from $dbh->get_info(18);
  Fixed LOB streaming example thanks to Pablo Zorzoli.

  Added support for nested cursors in select lists thanks to Charles Jardine.
  Added "Trailing Spaces" section to docs thanks to Michael A Chase.
  Added support for binary floats/doubles thanks to Dennis Box.
  Added INSTANCE_NAME, SERVER and SERVICE_NAME as valid connect keywords
    in the 'dbi:Oracle:x=y' short form of connecting without tnsnames.ora.
    For example 'dbi:Oracle:host=localhost;service_name=xe;server=dedicated'
  Added auto-detection of ORACLE_HOME in some configurations.

Changes in DBD-Oracle 1.16 (svn rev 515)   22nd October 2004

  NOTE:
  This release has major changes to Unicode support. See below.
  It no longer supports the old Oracle 7 OCI interface.
  It requires DBI >= 1.38 for some of the tests if using Perl 5.6.
  It no longer supports Perl 5.5 or earlier.

  Fixed placeholder names to be case insensitive thanks to Charles Jardine.
  Fixed some LOB test problems with Oracle 8.1.7 by implementing ora_lob_append
    with OCILobGetLength() and OCILobWrite(), instead of buggy OCILobWriteAppend(),
    if the Oracle client version is < 9.0. Thanks to Jeff Urlwin.
  Fixed handling of temporary LOBs thanks to Chris Donnelly.
  Fixed memory leaks in auto LOB refetch code thanks to Dongqiang Bai.
  Fixed reporting of length truncated in error message thanks to Jeff Urlwin.
  Fixed column_info() to handle TIMESTAMP and INTERVAL datatypes
    for Oracle >= 8 thanks to Stephen Clouse.
  Fixed STORE to cache attribute value in handle cache.
  Fixed seg fault returning LOB Locators reported by Raj Chandran.
  Fixed binding to allow overloaded scalars (not for 'inout' params).
  Fixed setting of $DBI::err to 0 triggering PrintWarn in DBI >= 1.41.
  Fixed some edge cases in row cache sizing.
  Fixed truncation error fetching very small numbers (1 ^ -130).
  Fixed Oraperl to not enable PrintError or AutoCommit (broken since 1.13).

  Changed some utf8 internals for LOBs.
  Changed ORA_OCI constant from being just 7 or 8 to being a dualvar:
    in numeric context returns the major.minor version number (8.1, 9.2 etc)
    in string context it returns the full "major.minor.foo.bar" version string.
  Changed some SUCCESS_WITH_INFO situtions to be treated as a "warning"
    by setting $DBI::err to "0" (and so trigger PrintWarn in DBI >= 1.43)
    eg "ORA-28011: the account will expire soon; change your password now"
    and package compilation errors.

  Added automatic support for UTF-8 for both NLS_LANG and NLS_NCHAR
    Many thanks to Lincoln Baxter who did most of the hard work and testing
    and to Jeff Urlwin and others who also helped out.
    Perl 5.8.x and Oracle 9+ are highly recommended if you want to use Unicode.
    See POD for more information and documentation.
  Added support for "... RETURNING lob_locator_column INTO ?"
    using $sth->bind_param_inout(2, \$loc, 0, {ora_type => ORA_BLOB});
  Added bind_param() ora_csform, ora_csid, and ora_maxdata_size attributes.
  Added bind_param() support for SQL_BLOB & SQL_CLOB thanks to Stephen Clouse.
  Added $dbh->ora_can_unicode and $dbh->ora_nls_parameters thanks to Andy Hassall.

Changes in DBD-Oracle 1.15   27th January 2004

  NOTE: DBD::Oracle now requires DBI version 1.28 (June 2002) or later.

  NOTE: This is probably the last release that will support being
  built with the old Oracle 7 OCI interface.

  Fixed for extproc_perl (http://search.cpan.org/author/JHORWITZ/extproc_perl/)
  Fixed Oraperl handling of ora_errno and ora_errstr thanks to Martin Busik.
  Fixed PRECISION for "NUMBER" to be 126 not 0 thanks to Steffen Goeldner.
  Fixed bind_param_inout() for placeholders not assigned to in PL/SQL.

  Changed bind_param_inout for CHAR types to no longer use a minimum
    length of 28 characters. Warning: this change may break code that
    doesn't pass bind_param_inout() a length value large enough for the
    returned string. (The minimum length was not documented and should
    not have been relied upon. This change currently only applies to the
    CHAR type but may extended to all string types in a later release.)
  Changed type_info_all() to return the same type info as Oracle's own
    ODBC driver does, thanks to Andy Hassall for the data.
    The types include LOBs but not the new TIMESTAMP and INTERVAL types.

  Added direct access to LOB Locators and major LOB Locator functions
    such as $sth->ora_lob_read(...), $sth->ora_lob_write(...) etc.
    This work was sponsored by Geospiza Inc.
  Added LOB Locator example docs thanks to Mark Dilger at Geospiza.
  Added TIMESTAMP [WITH [LOCAL] TIME ZONE]] support
    thanks to Stephen Clouse and Robert Wyrick.
  Added INTERVAL YEAR TO MONTH, INTERVAL DAY TO SECOND support.
  Added /*+RULE*/ hint to metadata method SQL thanks to Andy Hassall.
  Added connect example using OS authentication thanks to Bob Thomson.
  Added prepare("...", { ora_placeholders => 0 }) to disable placeholders.
  Added docs for returning a recordset (table/array) using Oracle >=9.0.1
    via "FUNCTION foo RETURN type PIPELINED" thanks to Steve Baldwin.
  Added docs on ora_check_sql=>0 in prepare() to avoid server-side parses.
  Added support for sharing database connections with ProC/SQLLIB code
    via ora_use_proc_connection attribute, thanks to Kristian Nielsen
    needs build time option thanks to Steffen Goeldner
  Added (restored) the error "possibly near <*> indicator" marker for
    syntax errors thanks to Jason Hitt and Andy Hassall.
  Added $dbh->{ora_parse_error_offset} attribute thanks to Andy Hassall.
  Added auto setting of $dbh->{Username} if not given to connect
    i.e. using Oracle OS authentication and connecting as "/"
    by selecting SYS_CONTEXT('userenv','session_user') from the db
    thanks to Eric Lenio and Andy Hassall.
2007-03-04 01:04:11 +00:00
jwise
d7e53641c7 Add an option fancythreads' to add Eduardo Chappa's fancy threading' UI
patches to pine.  Bump PKGREVISION.
2007-03-03 21:54:23 +00:00
simonb
68e31dfd62 Note update of adzap to version 20070225. Only changes are to ad patterns. 2007-03-03 20:56:34 +00:00
simonb
dcf12f5a27 Update to version 20070225. Only changes are to ad patterns. 2007-03-03 20:55:28 +00:00
joerg
5e59767160 Another link fix. 2007-03-03 17:54:31 +00:00
joerg
6bccc27377 Fix almost all shared library issues (with the exception of libgvc_builtin,
where I have no idea what it is supposed to be). Force pthread linkage
for dot and gvchackm as some of the plugins can pull in pthread and that
avoids the abort on NetBSD. Fixes PR 35679 and 35865. Bump revision.
2007-03-03 16:51:36 +00:00
kano
96b246bf59 NO_BUILD is for build phase, not for configure phase 2007-03-03 13:27:03 +00:00
adrianp
7851bd5a1f Update to php 4.4.6 2007-03-03 13:22:16 +00:00
adrianp
2ed60d4384 Update to 4.4.6
* Updated PCRE to version 7.0.
* Fixed segfault in ext/session when register_globals=On.
* Fixed (segfault in cURL extension).
* Fixed (possible cURL memory error).
* Fixed (imagettftext() multithreading issue).
* Fixed (ext/interbase compile failure).
* Fixed (PHP fastcgi with PHP_FCGI_CHILDREN don't kill children when parent is killed).

4.4.5
# Upgraded PEAR to 1.5.0.
# Updated PCRE to version 6.7.
# Moved extensions to PECL: ext/ovrimos
# Added a meta tag to phpinfo() output to prevent search engines from indexing the page.
# Backported a fix in the configure tests to detect the "rounding fuzz".
# Backported fix for ext/imap compilation failure with recent c-client versions.
# Fixed missing open_basedir check inside chdir() function.
# Fixed (Compile fails when using GCC 4.1.1/binutils 2.17).
# Fixed (pg_insert/pg_update do not allow now() to be used for timestamp fields).
# Fixed (using autoconf 2.6x and --with-layout=GNU breaks PEAR install path).
# Fixed (Using $this not in object context can cause segfaults).
# Fixed (ext/dba doesn't check for db-4.5 and db-4.4 when db4 support is enabled).
# Fixed (ftp_put() does not change transfer mode to ASCII).
# Fixed (ftp_nlist() returns false on empty dirs).
# Fixed (Allow building of curl extension against libcurl 7.16.0).
# Fixed (curl_exec() with return transfer returns TRUE on empty files).
# Fixed (Fixed a possible open_basedir bypass in tempnam()).
# Fixed (ldap_connect causes segfault with newer versions of OpenLDAP).
# Fixed (parse_url() fails if passing '@' in passwd).
# Fixed (Calling undefined method prints insufficient error message).
# Fixed (segfault when calling setlocale() in userspace session handler).
# Fixed (constructor is not called for classes used in userspace stream wrappers).
# Fixed (wddx_serialize_value() generates no wellformed xml).
# Fixed (aggregate_methods_by_list fails to take certain methods).
# Fixed (natcasesort() causes array_pop() to misbehave).
# Fixed (CURLOPT_HEADERFUNCTION, couldn't set the function in the class).
# Fixed (recursive array_walk causes segfault).
2007-03-03 13:19:52 +00:00
joerg
0dddc4833a Fix build with modular Xorg. 2007-03-03 13:14:09 +00:00
kano
cf0f2c0c22 remove extra character 2007-03-03 12:30:12 +00:00
joerg
fe6fd3c86e Instead of including mk/x11.b3.mk, include the linked libraries.
Please, do not add new includes of that file, thanks.
2007-03-03 12:06:54 +00:00
wiz
f8e2752852 + clamav-0.90.1, dosbox-0.70, libtasn1-0.3.9, phpmyadmin-2.10.0.2,
webmin-1.330, wxRemind-0.8.6.
2007-03-03 11:04:35 +00:00
uebayasi
bc1a1ff556 Install gtags.conf as CONF_FILES. 2007-03-03 08:06:25 +00:00
uebayasi
d28849879c Take maintainership. 2007-03-03 05:06:47 +00:00
uebayasi
c10d0cbc3e Note update of global 5.4.
Version 5.4 - January 29 2007, by Shigio YAMAGUCHI

[INCOMPATIBLE CHANGES]
* Further compression of tag file (format version 5).
  Though new global can read older tag file since version-5.0, older
  global cannot read new format. It might say like follows:
	"GTAGS seems new format. Please install the latest GLOBAL."

[OTHER CHANGES]
* global: Improved performance when the -x option is not specified.
* globash.rc: Added new option -l for tag search command (x,r,s,g,P,I,f).
  This option invokes less(1) directly without tag stack.
* Verbose messages are unified.
  P option      file not found
		<n> files located
  others        object not found
		path format: <n> files located
		other format:<n> objects located

[BUG FIXED]
* Gtags(1) and global(1) didn't work well in the system root directory('/').

Version 5.3 - November 20 2006, by Shigio YAMAGUCHI

[INCOMPATIBLE CHANGES]
* global: Changed not to locate other symbols (-s) in GTAGSLIBPATH.
  This is the original specification of GLOBAL.
* global: Stop sorting when the -I(--idutils) option specified.
  The output of gid(idutils) is sorted by the suitable way. Though the order is
  slightly differ from global(1), it need not be sorted again.

[OTHER CHANGES]
* global:  Added new option -O(--only-other).
* htags: Added some new options and new arguments which are synonyms of config variable.
  This decreases dependence on configration file.

  new option              | config variable
  ------------------------+-------------------------
  --disable-grep          | disable_grep
  --table-list            | table_list
  --tabs=<n>              | tabs
  --full-path             | full_path

  new argument            | config variable
  ------------------------+-------------------------
  --line-number [columns] | ncol
  --func-header [position]| definition_header
  --xhtml [version]       | xhtml_version

	(*=default)
	position: before, right, *after
	version: *1.0, 1.1

* htags: Changed to use each 'CVS/Repository' file to generate URLs if it is available.
* htags: Added '.gitignore' to the default skip file list.

* gtags.el:
  - Shorten path names in [GTAGS SELECT MODE]:
    If project directory is specified using 'gtags-visit-rootdir', gtags.el print path
    using the relative path name from the project directory, else print absolute path name.
  - Support dynamic completing-read of tag name.
    gtags-make-complete-list is deprecated. You can enjoy tag name completetion without
    invoking this command.

[BUG FIXED]
* gtags: gtags had exited when it encountered dead symbolic link.
2007-03-03 05:05:12 +00:00
uebayasi
e87d96f1d5 Update global from 5.2 to 5.4.
Version 5.4 - January 29 2007, by Shigio YAMAGUCHI

[INCOMPATIBLE CHANGES]
* Further compression of tag file (format version 5).
  Though new global can read older tag file since version-5.0, older
  global cannot read new format. It might say like follows:
	"GTAGS seems new format. Please install the latest GLOBAL."

[OTHER CHANGES]
* global: Improved performance when the -x option is not specified.
* globash.rc: Added new option -l for tag search command (x,r,s,g,P,I,f).
  This option invokes less(1) directly without tag stack.
* Verbose messages are unified.
  P option      file not found
		<n> files located
  others        object not found
		path format: <n> files located
		other format:<n> objects located

[BUG FIXED]
* Gtags(1) and global(1) didn't work well in the system root directory('/').

Version 5.3 - November 20 2006, by Shigio YAMAGUCHI

[INCOMPATIBLE CHANGES]
* global: Changed not to locate other symbols (-s) in GTAGSLIBPATH.
  This is the original specification of GLOBAL.
* global: Stop sorting when the -I(--idutils) option specified.
  The output of gid(idutils) is sorted by the suitable way. Though the order is
  slightly differ from global(1), it need not be sorted again.

[OTHER CHANGES]
* global:  Added new option -O(--only-other).
* htags: Added some new options and new arguments which are synonyms of config variable.
  This decreases dependence on configration file.

  new option              | config variable
  ------------------------+-------------------------
  --disable-grep          | disable_grep
  --table-list            | table_list
  --tabs=<n>              | tabs
  --full-path             | full_path

  new argument            | config variable
  ------------------------+-------------------------
  --line-number [columns] | ncol
  --func-header [position]| definition_header
  --xhtml [version]       | xhtml_version

	(*=default)
	position: before, right, *after
	version: *1.0, 1.1

* htags: Changed to use each 'CVS/Repository' file to generate URLs if it is available.
* htags: Added '.gitignore' to the default skip file list.

* gtags.el:
  - Shorten path names in [GTAGS SELECT MODE]:
    If project directory is specified using 'gtags-visit-rootdir', gtags.el print path
    using the relative path name from the project directory, else print absolute path name.
  - Support dynamic completing-read of tag name.
    gtags-make-complete-list is deprecated. You can enjoy tag name completetion without
    invoking this command.

[BUG FIXED]
* gtags: gtags had exited when it encountered dead symbolic link.
2007-03-03 05:03:26 +00:00
tv
a29907dba1 Give this away to pkgsrc-users. I don't have a use for this anymore, so I
haven't really been paying attention to its status upstream.  <sigh>
2007-03-02 23:44:13 +00:00
dmcmahill
4e8a43fb39 no need to explicitly use -lpng, pkg-config --libs libpng takes care of that 2007-03-02 23:08:12 +00:00
gdt
a41884e867 Fix passing of rpath to build of xephem binary from x11.buildlink3.mk.
pkgrevision++.
2007-03-02 22:20:44 +00:00
tonio
ae7dffa5f9 Updated converters/bibtex2html to 1.85 2007-03-02 21:21:03 +00:00
tonio
b5b82b80c8 update converters/bibtex2html to 1.85
Version 1.85, 2/11/2006
=======================
 o fixed HTML output in f_bib.html: <pre> no more enclosed in <p>;
   bibtex fields now typeset in lowercase; added links back to f.html
 o macros \textin (<sub>), \textsu (<sup>), \textsi (<i>),
   and macros \textln, \textos, \textdf, \textsw without translation
 o fixed bug in --quiet under Windows
 o option -t now sets the title of f_bib.html too (and of entries
   files when used with -multiple)

Version 1.84, 19/10/2006
========================
 o improved support for MRNUMBER of AMS styles: only first word used
   in URL link

Version 1.83, 13/09/2006
========================
 o support for DOI links: a field "DOI = {xxx}" will be recognized, if any,
   and a link to http://dx.doi.org/xxx will be displayed;
   option -no-doi turns it off and option -doi-prefix <url> sets a
   different prefix for the DOI urls
 o macro \H (Hungarian umlauts)
 o new option -linebreak to insert a linebreak between an entry and its links
 o new option -use-table to enforce the use of a table (to be used
   _after_ -no-keys if needed)
2007-03-02 21:20:14 +00:00
abs
e616a6c74e Add USE_TOOLS+=pkg-config to fix build 2007-03-02 20:48:09 +00:00
wiz
12a59f9d84 Use standard headers. Use more macros. 2007-03-02 20:38:21 +00:00
wiz
f93aa15197 Remove references to pkgmanpages package and packages(7). Noted by reed@. 2007-03-02 16:48:48 +00:00
drochner
b596a53b21 mention recent updates/addition 2007-03-02 16:31:53 +00:00
hira
f6cf7b2ccb USE_TOOLS+=pkg-config. 2007-03-02 15:32:54 +00:00
ghen
a039fd6710 Updated mail/thunderbird and mail/thunderbird-gtk1 to 1.5.0.10. 2007-03-02 14:14:15 +00:00
ghen
6b33134d05 Update thunderbird and thunderbird-gtk1 to 1.5.0.10. Fixed in this version:
MFSA 2007-06  Mozilla Network Security Services (NSS) SSLv2 buffer overflow
MFSA 2007-01 Crashes with evidence of memory corruption (rv:1.8.0.10/1.8.1.2)

For more info, see http://www.mozilla.com/en-US/thunderbird/releases/1.5.0.10.html
2007-03-02 14:12:24 +00:00
hira
ccbd7a0b20 Fix "test ==". 2007-03-02 13:17:48 +00:00
dmcmahill
9dbf69bde7 - don't overwrite LDFLAGS but rather append the stuff we need.
- add missing -lm (how did this work before?)
- remove one last GNU make-ism since there is a portable way of doing
  it
2007-03-02 12:20:47 +00:00
grant
c9baef25f1 note PKGREVISION bump of mail/perdition (SSL fix). 2007-03-02 12:06:19 +00:00
grant
f121be3d64 if SSL is enabled we need to tell configure where to find it, or it
is silently built without SSL.

bump PKGREVISION since SSL is enabled by default.
2007-03-02 12:05:32 +00:00
drochner
f5d0e6a3c8 fix glx option for amd64, and make it build without private patches
to *proto pkgs, from Blair Sadewitz
2007-03-02 11:51:49 +00:00
grant
09ef0c0461 fix silly mistake in last :/ 2007-03-02 11:45:47 +00:00
grant
13f8f90493 fix build on Solaris with sunpro. 2007-03-02 11:37:33 +00:00
grant
3ec2614161 note PKGREVISION bump of vanessa_logger to nb2 (Solaris/sunpro fix). 2007-03-02 11:31:44 +00:00
grant
5b51e6bae2 sunpro doesn't understand __FUNCTION__, subst it with __FILE__ in the
installed header file.

bump PKGREVISION.
2007-03-02 11:29:00 +00:00
grant
991192a218 make this build on Solaris with sunpro. 2007-03-02 11:20:09 +00:00
abs
17e0a98df3 Added mail/p5-Mail-Sender version 0.8.13
Added mail/p5-Mail-Sender-Easy version 0.0.5
2007-03-02 10:58:29 +00:00
abs
0a4f2323b2 enable p5-Mail-Serner and p5-Mail-Sender-Easy 2007-03-02 10:55:58 +00:00