Commit graph

14888 commits

Author SHA1 Message Date
wiz
47568e78ca links{,-gui} updated to 2.1pre20. 2005-12-11 18:57:27 +00:00
wiz
e6ff31ce35 + DatLib-2.13, DatUtil-2.25, MAMEDiff-2.23, ROMInfo-2.6, ZIPIdent-2.7,
gtk2+-2.8.9, links-2.1pre20, p5-libwww-5.805.
2005-12-11 18:44:19 +00:00
salo
5fe697f88b Note devel/libebml, multimedia/libmatroska, multimedia/mkvtoolnix
and multimedia/mmg updates.
2005-12-11 18:08:44 +00:00
markd
078d0f9ec7 R update. 2005-12-11 14:39:29 +00:00
markd
632a2becc9 acroread7 asian font pack additions. 2005-12-11 13:43:03 +00:00
taca
ffa460f273 Note update of www/htmllint package to 20050924. 2005-12-11 13:32:27 +00:00
markd
2c61395d63 KDE 3.5.0 updates. 2005-12-11 13:21:13 +00:00
wulf
7f3b2ebde9 Updated gnuradio packages:
* support of new daughterboards
	* support of new USB HID devices
	* new USRP (FPGA) firmware
	* several code optimizations
	* many bug fixes
2005-12-11 12:03:34 +00:00
hira
1e9178dfee Update www/firefox-bin-flash to 7.0r61. Changes unknown. 2005-12-11 10:27:30 +00:00
markd
051793b8bb Add poppler-qt. 2005-12-11 10:11:22 +00:00
wiz
6700aac0f9 Note aalib-x11 and aview-x11 removals, and aalib and aview PKGREVISION bumps. 2005-12-11 09:44:11 +00:00
salo
2f1319549b Note print/poppler PKGREVISION bump: security fix. 2005-12-11 05:11:09 +00:00
markd
6e15bb660e Updates for mimedefang and kbiff. 2005-12-10 22:17:18 +00:00
salo
7b51b5e41a Note net/ethereal PKGREVISION bump: security fix. 2005-12-10 22:02:16 +00:00
salo
1730adf9a5 Note www/curl security update. 2005-12-10 17:59:11 +00:00
darcy
8dfcba14ff Update to py-docutils-0.3.9 is done. 2005-12-10 16:05:40 +00:00
darcy
7425258252 note update of textproc/py-docutils to 0.3.9 2005-12-10 16:01:29 +00:00
taya
ba82436ef9 note update of firefox & firefox-gtk1 to 1.5 2005-12-10 13:52:45 +00:00
wiz
e2c2e54884 Note ap-jserv removal. 2005-12-09 20:47:15 +00:00
wiz
4423cad2c5 Note mldonkey{,-gui} updates to 2.7.1. 2005-12-09 20:45:56 +00:00
wiz
1285cd8332 Note groff update to 1.19.2nb1 (new x11 option,
on by default).
2005-12-09 20:41:59 +00:00
wiz
598d4f67c6 Note ghostscript*x11* removals. 2005-12-09 20:31:39 +00:00
wiz
7da3aa08c2 + amarok-1.3.7, cmake-2.2.3, courier-authlib-0.58, curl-7.15.1,
digikam-0.8.0, elm-me-2.4pl122f, hpijs-2.1.4, ike-scan-1.8,
  jdbc-postgresql-7.3.11, jdbc-postgresql74-7.4.9, kazehakase-0.3.3
  [pkg/32272], mkvtoolnix-1.6.5, mldonkey-2.7.1, mldonkey-gui-2.7.1,
  mplayer-plugin-firefox-3.17, tcl-8.4.12, tk-8.4.12, xmule-1.12.2.
2005-12-09 20:28:59 +00:00
salo
38b2673368 Note audio/libdca addition. 2005-12-09 17:22:52 +00:00
gdt
26c5adc4c6 remove note to update guile-pg to 0.29 2005-12-09 16:18:03 +00:00
gdt
a045fbf993 note addition of guile-pg 2005-12-09 16:10:43 +00:00
gdt
2a7d6d445d note addition of TiffIO 2005-12-09 15:52:14 +00:00
uebayasi
93e32cca2e gauche-[0-9]* is done. 2005-12-09 15:41:02 +00:00
uebayasi
bfdc779de0 Update gauche to 0.8.6. Patch provided by Kenji Hisazumi.
From this release we don't use external Boehm GC library because
gauche needs GC to be built with special compilation options.

New features in 0.8.6:

    * New modules:

	+ dbi: Database independent access layer, providing unified
	  access to various relational databases. You need separate
	  "driver" packages to access the actual RDBMS. There are a
	  few driver packages available at
	  http://www.kahua.org/cgi-bin/kahua.fcgi/kahua-web/show/dev/DBI/.
	    Note: If you have been using the separate dbi module, make
	    sure you remove it before using the new dbi and dbd
	    modules. You can find the old dbi.scm under somewhere like
	    /usr/local/share/gauche/site/lib (the actualy directory
	    depends on the configuration when you've installed the dbi
	    module).
	+ util.relation: A framework to work with relations (as defined
	  by Codd). The result of database access via dbi is represened as
	  a relation.
	+ text.sql: SQL parser/constructor. Full features are not
	  implemented yet, but used in dbi module for prepared queries.

    * New SRFIs:

	+ SRFI-40 (Library of streams) as util.stream.
	+ SRFI-43 (vector library) as srfi-43.
	+ SRFI-45 (Primitives for Expressing Iterative Lazy
	    Algorithms) : built-in.

    * New built-in proceduers global-variable-bound? and
      glboal-variable-ref. The former supersedes symbol-bound? (
      symbol-bound? is now deprecated and will go away in the future
      releases. Code that uses symbol-bound? should change it to
      global-variable-bound?. ). The latter removes some need of using
      eval just to peek the value of the global variable.

    * New regexp procedures: regexp-replace*, regexp-replace-all*,
      regexp-case-fold?.

    * Stack overflow handling is largely improved. You can see better
      performance if your script frequently oveflows the stack.

0.8.5 was a maintainance release.

0.8.4:

Gauche 0.8.4:

The compiler and VM have been rewritten. Now Gauche runs faster with
less memory (as fast as 1.9x, or cosumes 0.7x memory, in best cases of
our tests. But your mileage may vary.) The compiler now does simple
closure optimization, so the typical loop-by-local-closure style code
will get the advantage. On the other hand, you won't see much gain in
OO-heavy or library-heavy programs.

Other changes:

    * New features:

	  + srfi-42 (Eager comprehension) is supported.
	  + srfi-55 (require-extension) is supported.
	  + A simple sampling profiler is implemented to help tuning
	    programs. Check out "Profiling and tuning" section of the
	    reference manual. The profiler may not be available on all
	    platforms.
	  + We provide an experimenal Windows/MinGW binary package for
	    the convenience. See download page.
2005-12-09 15:38:54 +00:00
tron
5f6f895ac4 Note update of "phpmyadmin" package to version 2.7.0pl1. 2005-12-09 13:50:55 +00:00
salo
3e5f684d81 Note chat/silc-server update. 2005-12-09 00:47:01 +00:00
salo
3a3e176035 Note net/nmap{,fe} updates. 2005-12-08 22:01:50 +00:00
bouyer
2e5aa96d70 Note mailman update to 2.1.6nb1 2005-12-08 21:10:21 +00:00
wiz
7951749673 Note sun-jre15 PKGREVISION bump. 2005-12-08 12:24:45 +00:00
markd
daf4266f99 kdegraphics3, koffice security updates. 2005-12-08 11:14:40 +00:00
rillig
a1ff561a90 Updated pkglint to 4.49.
Changes since 4.48:
- Added a check for .include lines in all Makefiles and *.mk files to make
  sure that only existant files are referenced and that pkgsrc packages do
  not contain references to packages in pkgsrc-wip.
- Extended the --autofix option to all Makefile* and *.mk files. Before, only the
  package Makefile could be fixed.
- Rewrote the detection of direct use of tool names.
- Append-only lists may be initialized using the "?=" operator.
- The typical form of ShellWords for CONFIGURE_ARGS, --foo=${FOODIR}, is checked for
  quoting errors.
- All PKG_OPTIONs are checked whether they are documented in mk/defaults/\
  options.description.
- Many small fixes and improvements.
2005-12-08 10:57:59 +00:00
wiz
9f1deede1f Mention faad2 PKGREVISION bump. 2005-12-08 10:07:34 +00:00
uebayasi
1519979f6a riece-2.0.2 is done. 2005-12-08 06:52:35 +00:00
uebayasi
9394df8af6 Update riece to 2.0.2.
Notable changes from NEWS:

* Major changes in 2.0.2

* Major changes in 2.0.1

** New add-on riece-xfaceb.el, which displays X-Face/Colour Face in
   IRC buffers. (Steve Youngs)

* Major changes in 2.0.0

** Support multiple coding-systems on a server.
   You can use different coding-systems for different channels. (ueno)
   For example:
   (setq riece-channel-coding-system-alist
	 '(("#euc-jp" . euc-jp)
	   ("#utf-8 irc.freenode.net" . utf-8)))

** Support uninstall, unload (dangerous) operations for add-ons.
   Now you can fully customize riece-addons in the add-on listing
   mode. (ueno)

** New mechanism for executing Ruby programs.  To use it, see the
   commentary section of riece-ruby.el. (ueno)

** New add-on riece-eval-ruby.el, which regards user input prefixed by
   ",ruby " as a Ruby program and sends the result to the current
   channel. (ueno)

** New add-on riece-shrink-buffer.el, which now takes care of periodic
   buffer shrinking.  If you have set riece-max-buffer-size, you will
   need to enable the riece-shrink-buffer add-on in the add-on listing
   mode. (ueno)

** Allow "@" instead of " " as a separator of a channel name and an
   IRC server name. (ueno)

** Rewrite the Japanese manual (riece-ja.texi) for IRC & Emacs
   newbies. (ueno)

** Include a document for developers (doc/HACKING{,.ja}) (ueno)

* Major changes in 1.0.8

** Mitigate file locking scheme of riece-log. (ueno)

** Format idle seconds in human readable form. (ueno)

** Support SXEmacs version names. (Steve Youngs)

** Support CTCP TIME. (Steve Youngs)
2005-12-08 06:51:22 +00:00
uebayasi
62ec916f3f libpcap-0.9.4 is done. 2005-12-08 06:38:43 +00:00
uebayasi
06fea9f693 Update libpcap to 0.9.4.
From CHANGES:

Mon. 	September 5, 2005.  ken@xelerance.com. Summary for 0.9.4 libpcap release

	Support for radiotap on Linux (Mike Kershaw)
	Fixes for HP-UX
	Support for additional Juniper link-layer types
	Fixes for filters on MPLS-encapsulated packets
	"vlan" filter fixed
	"pppoed" and "pppoes" filters added; the latter modifies later
	parts of the filter expression to look at the PPP headers and
	headers in the PPP payload
2005-12-08 06:32:30 +00:00
uebayasi
ef89caa0eb navi2ch-1.7.5 was done long ago. 2005-12-08 06:14:08 +00:00
wiz
7398572dd3 bacula updated to 1.38.2. 2005-12-08 01:33:01 +00:00
uebayasi
6e49e20b8c Note that gauche-0.8.[46] don't work with boehm-gc-6.4. 2005-12-08 01:29:01 +00:00
wiz
6e09388ae0 Updated graphics/lcms to 1.15 [wiz 2005-12-07]
Updated emulators/ROMInfo to 2.4 [wiz 2005-12-07]
      Updated devel/libidn to 0.6.0 [wiz 2005-12-07]
      Updated multimedia/libogg to 1.1.3 [wiz 2005-12-07]
      Updated audio/libvorbis to 1.1.2 [wiz 2005-12-07]
      Updated textproc/groff to 1.19.2 [wiz 2005-12-07]
      Updated games/wesnoth to 1.0.2 [wiz 2005-12-07]
2005-12-07 17:59:21 +00:00
wiz
0733692c67 + findutils-4.2.27, libextractor-0.5.8. 2005-12-07 17:40:26 +00:00
peter
a9f814ca00 Note tcllib update. 2005-12-07 14:19:20 +00:00
mjl
5ec29269bc asterisk-sounds-de-x9media 20051128 2005-12-07 12:28:16 +00:00
uebayasi
bf253d50a8 Update xpdf to 3.01pl1.
Fix a patch for "Xpdf Multiple Buffer Overflow Vulnerabilities"
(http://secunia.com/advisories/17897/).
2005-12-07 09:27:54 +00:00
uebayasi
5dc856fbda zsh-4.2.6 is done. 2005-12-07 03:02:34 +00:00
uebayasi
652605de6a Update zsh to 4.2.6.
Better DragonFly support, new complete functions (arch_archives,
arch_namespace, bzr, cplay, date, dchroot, dlocate, dpkg-cross,
git, madison, module-assistant, piuparts, quilt, toolchain-source,
urxvt, and xpdf), bug fixes, etc.
2005-12-07 03:00:50 +00:00
wiz
6da4bddfe1 cdtools-ossdvd updated to 2.01.01a03. 2005-12-06 23:57:02 +00:00
wiz
c1d1a96b76 - kphone (thanks tron), 9base, wmii (thanks, rillig). 2005-12-06 23:53:52 +00:00
wiz
c59f1b16b2 p7zip updated to 4.30. 2005-12-06 23:49:19 +00:00
wiz
3cf3a3acbb Added security/p5-Crypt-SmbHash version 0.12 2005-12-06 22:55:39 +00:00
wiz
83f776954e Mention new gate package. 2005-12-06 22:43:54 +00:00
ben
cb552d4ce3 Add ghostscript-esp todo item to make cups dependency optional. 2005-12-06 20:08:33 +00:00
dillo
d9960fbfbc Regenerate (no PKGBASE in PKG_OPTIONS_VAR). 2005-12-06 20:02:34 +00:00
dillo
79e46305a4 Document that ${PKGBASE} cannot be used in defining PKG_OPTIONS_VAR. 2005-12-06 19:58:35 +00:00
rillig
36182c8800 Updated wm/wmii to 20051114. Patch provided by Leonard Schmidt in PR 32096.
Changes:
- removed some more actions.
- the new wmibar layout has been improved.
2005-12-06 18:56:08 +00:00
rillig
1e8a030cb4 Updated sysutils/9base to 20051114.
Changes:
- added bc.
- added date.
- merged patch-ab upstream.

pkgsrc-related:
- support PKGMANDIR.
2005-12-06 18:51:39 +00:00
wiz
9a024b8037 + bittorrent-4.2.1, dirac-0.5.4, gstreamer-0.10.0, net-snmp-5.2.2,
nsd-2.3.2, sox-12.17.9, trac-0.9.2, wesnoth-1.0.2, zsh-4.2.6.
2005-12-06 17:22:52 +00:00
rillig
4c75fa82de Bumped PKGREVISION of www/thttpd because of the recent change to patch-af.
See PR 25487 for details.
2005-12-06 14:20:57 +00:00
martti
a87eea3b05 squirrelmail and PHP 5.1.1 fixes 2005-12-05 20:14:58 +00:00
wiz
e43605602d + TeXmacs-1.0.6, bitlbee-1.0, clisp-2.36, mailscanner-4.48.4,
phpmyadmin-2.7.0, xmms-crossfade-1.3.10.
2005-12-05 19:49:19 +00:00
wiz
24bccffe26 Note nvi-m17n PKGREVISION bump. 2005-12-05 19:44:38 +00:00
rillig
e55de1a330 Added a note that using the binary bootstrap kits only works for
privileged builds that use LOCALBASE=/usr/pkg.
2005-12-05 18:04:39 +00:00
taca
437c280450 Note addition of converters/smbchartool package 2.3a. 2005-12-05 15:37:56 +00:00
taca
929b8ab057 Note update of mail/poppassd package to 4.0.8nb2. 2005-12-05 14:13:40 +00:00
taca
54f2c4d31e Note update of www/squid package to 2.5.12nb3. 2005-12-05 14:08:46 +00:00
martti
3556ea51ba Updated mail/ja-squirrelmail to 1.4.5nb2 2005-12-05 09:28:51 +00:00
martti
f45974a720 Updated mail/squirrelmail to 1.4.5nb2 2005-12-05 09:18:51 +00:00
snj
0afea721c0 Updated scponly to 4.1. 2005-12-05 03:05:44 +00:00
snj
a41bc48ae2 jdolecek already updated php5. 2005-12-05 02:30:51 +00:00
salo
075ffe90b0 Note net/lftp update. 2005-12-04 22:13:32 +00:00
kristerw
5e79700dad Note updated of devel/yasm to 0.4.0. 2005-12-04 20:09:44 +00:00
mjl
499f6afff6 Note refinecvs 2005-12-04 17:53:53 +00:00
rillig
4d235fb633 Reverted the last change after massive protest from agc. 2005-12-04 17:22:24 +00:00
rillig
a330b60fe7 Added documentation for the make(1) variables that are most likely to be
overridden in a user's mk.conf file.
2005-12-04 17:05:22 +00:00
hira
994c77ea05 Note PKGREVISION bump of sysutils/gnome-vfs2. 2005-12-04 16:51:35 +00:00
ben
74825459d4 Make note of helpdeco update. 2005-12-04 15:51:33 +00:00
wiz
5724983f69 Fix last entries for new packages (hi mjl! use make changes-entry!). 2005-12-04 15:03:57 +00:00
mjl
18034d11bf Note p5-Pod-POM, p5-Text-Diff-HTML, p5-Number-Format, p5-Template-Plugin-Number-Format, p5-SVN-Web 2005-12-04 13:54:40 +00:00
uebayasi
ebda791de2 inkscape-0.43 is done. 2005-12-04 13:52:59 +00:00
uebayasi
fc504fcc2a Update inkscape to 0.43.
Changes from NEWS:

   The focus of this release is on the exciting new features sponsored by
   Google via their Summer of Code program. However, we have quite a bunch of
   other stuff too. Here are the highlights:

     * Connectors: A new Connector tool implements creation, editing, and
       autorouting (object-avoiding) of connector lines between objects.
       Indispensable for diagramming. (A Google SoC project.)
     * Inkboard collaborative editing: You can now connect to other Inkscape
       users over the Net and edit a shared document together, watching
       others' changes and making yours! (A Google SoC project.)
     * Pressure and tilt sensitivity: the Calligraphy tool can now use a
       tablet pen with pressure/tilt support to vary the width and angle of
       the calligraphic stroke.
     * Better node editing: You can freely drag/bend/stretch a Bezier curve
       by any point (not only by a node), as well as add a new node at any
       point on the curve.
     * New extensions for envelope distortion, whirling, and adding nodes.
     * Improved precision, expanded limits, many usability improvements and
       bugfixes.
2005-12-04 13:51:38 +00:00
hira
ee5035f068 Note PKGREVISION bump of mail/evolution. 2005-12-04 09:12:36 +00:00
wiz
358758b619 + arla-0.41, libidn-0.6.0. 2005-12-04 09:11:50 +00:00
wiz
6d907a9362 Fix typo in package name (please, do use "make changes-entry"). 2005-12-04 08:55:51 +00:00
joerg
4cddae2721 plist fix for x11/xautolock 2005-12-04 01:18:19 +00:00
mrg
e645310060 belatedly note subtitleripper was upgraded to 0.3-1nb3, fixing pkgsrc
integration issues.
2005-12-04 00:29:02 +00:00
peter
44a2e29e51 Note qstat update to 2.8. 2005-12-03 23:21:03 +00:00
joerg
d7d45b897c x11/wmweather bumped due to dependency change. 2005-12-03 21:05:25 +00:00
jdolecek
3ff37a4b5f meta-pkgs/php5-extensions updated for PHP 5.1.1 2005-12-03 19:06:38 +00:00
jdolecek
94bac0eb30 Update PHP5 to version 5.1.1. Some of the key features include:
* A complete rewrite of date handling code, with improved timezone support.
* Significant performance improvements compared to PHP 5.0.X.
* PDO extension is now enabled by default (separate pkg for pkgsrc)
* Over 30 new functions in various extensions and built-in functionality.
* Bundled libraries, PCRE and SQLite upgraded to latest versions.
* Over 400 various bug fixes.
* PEAR upgraded to version 1.4.5

This release also fixes various security problems discovered in 5.0.X.
2005-12-03 18:53:57 +00:00
jdolecek
10346852f0 note php-pdo* updates - changes are bugfixes mostly and LOB related 2005-12-03 18:00:50 +00:00
adrianp
f434500059 Updated chat/centericq to 4.21.0nb1 2005-12-03 17:05:52 +00:00
adrianp
2c9dff0c4b Updated sysutils/webmin to 1.170nb2 2005-12-03 16:19:14 +00:00
salo
535d171d37 Note archivers/unalz security update. 2005-12-03 15:08:29 +00:00
wiz
a8ee477321 + abook-0.5.5.
- getmail-4.4.3.
2005-12-03 11:36:04 +00:00
kristerw
19848f7a25 Note update of xmame/xmess. 2005-12-03 11:00:03 +00:00
schmonz
0f884649bd Note addition of newspipe. 2005-12-03 06:35:47 +00:00
dmcmahill
cf8b9742c5 note cad/pcb-current removal and cad/pcb update 2005-12-03 04:21:35 +00:00
joerg
90842a396c python15 fix on DragonFly. 2005-12-03 01:36:09 +00:00
schmonz
d150256b96 Note rss2email PKGREVISION bump (for external py-html2text dependency). 2005-12-03 00:52:45 +00:00
schmonz
5288587bf3 Note addition of py-html2text. 2005-12-03 00:48:27 +00:00
joerg
1a95b8156d devel/nbitools bumped for DragonFly related PLIST change. 2005-12-02 23:00:23 +00:00
joerg
19a573747c PLIST change in postgresql73-lib for DragonFly. 2005-12-02 19:48:05 +00:00
jmmv
ad8fee053e Note update of monotone-server to 0.24. 2005-12-02 17:57:10 +00:00
schmonz
2a4ae8189d Note bglibs update. 2005-12-02 17:18:22 +00:00
wiz
ce892abfa6 + bogofilter-1.0.0, fetchmail-6.3.0, getmail-4.4.3, mathomatic-12.5.3,
openmotif-2.2.3 [http://www.openmotif.org/], wcalc-2.1.2.
- openmotif-2.3.0 (development version)
2005-12-02 17:03:28 +00:00
schmonz
509691ec0c Note getmail update. 2005-12-02 16:38:21 +00:00
rillig
8bf422cbd9 Don't encourage users to abuse the patch framework for installing
pkgsrc-specific files into ${WRKSRC}. I've lately seen too many patches
against /dev/null that contain RCS Ids.
2005-12-02 13:52:31 +00:00
xtraeme
cfff21f756 + apache-2.2.0 2005-12-02 12:54:44 +00:00
xtraeme
8cd8f9d299 Updated mail/clamsmtp to 1.6 2005-12-02 08:49:12 +00:00
xtraeme
0581fe7490 Updated databases/mysql5-{client,server} to 5.0.16 2005-12-02 08:14:53 +00:00
xtraeme
522c8f7a66 Updated mail/dspam to 3.6.2 2005-12-02 08:11:04 +00:00
xtraeme
8282f4028f Updated mail/sylpheed-devel to 2.1.8 2005-12-02 07:49:33 +00:00
minskim
5e08d85f91 Add p5-Text-Emoticon-MSN. 2005-12-02 04:10:05 +00:00
joerg
1b633cdbf9 math/R bumped due to dependency change 2005-12-01 23:17:27 +00:00
gdt
0d3b26e470 add missing 'version' token for tex2page (tnx wiz for pointing out) 2005-12-01 18:56:34 +00:00
adrianp
bb31ea40e5 Updated chat/unrealircd to 3.2.3nb1 2005-12-01 18:55:27 +00:00
gdt
806fceaecc note tex2page 2005-12-01 18:37:23 +00:00
adrianp
8d4b8b05c5 Added net/libcares version 1.3.0 2005-12-01 17:30:21 +00:00
wiz
6a2c48e229 + audacity-1.2.4, cdrtools-ossdvd-2.01.01a03, exim-4.60, gxine-0.5.1,
icecast-2.3.1, kazehakase-0.3.3, lcms-1.15, libogg-1.1.3,
  libvorbis-1.1.2, liquidwar-5.6.3, snd-7.17, sylpheed-devel-2.1.8,
  webmin-1.250, xfstt-1.7, xmms-crossfade-0.3.9.
2005-12-01 17:23:47 +00:00
tv
500423f84f lang/sun-j??15 -> 5.0.6 2005-12-01 15:40:29 +00:00
rillig
d9afea06e4 Corrected the pkglint version. 2005-12-01 15:00:28 +00:00
martti
1cd4803b2b vim-6.4.3 2005-12-01 14:05:00 +00:00
rillig
9d462108c7 Updated pkglint to 4.48.
Changes since 4.47:
- Output warnings for partial RCS tags in patch files.
- Added many warnings concerning Makefile directives and make targets.
2005-12-01 13:44:11 +00:00
martti
abd465e058 Updated mail/postfix to 2.2.6 2005-12-01 06:46:54 +00:00
rillig
8f38ceeec1 Updated pkglint to 4.47.
Changes since 4.46:
- Made the --explain command line option work.
- Added many explanations for existing diagnostics.
- Improved the diagnostics.
- In --autofix mode, no backup files are created anymore.
- Temporarily disabled the check for direct use of tool names.
- Fixed some false positive warnings.
- Added a check for the use of absolute pathnames in shell commands.
2005-12-01 04:11:56 +00:00
minskim
5b96d2b5f4 Add clex. 2005-12-01 03:56:01 +00:00
minskim
f172a7d638 Add detox. 2005-12-01 03:35:44 +00:00
minskim
f73fc8d2f0 Note update of pax. 2005-12-01 03:01:10 +00:00
bouyer
a3990dd4cd net/arpwatch updated to 2.1a13 2005-11-30 22:48:24 +00:00
tonio
372244f5d6 Updated print/a2ps to 4.13.0.2nb9
Avoid runtime failure under Darwin (dynamic linking problem with
flat_namespace)
2005-11-30 18:27:38 +00:00
wiz
a2caec355c Updated pango to 1.10.2. 2005-11-30 18:10:12 +00:00
wiz
9343405126 + dspam-3.6.2, kdbg-2.0.2, openmotif-2.3.0 [http://www.openmotif.org/],
pango-1.10.2, vice-1.18, xmame-0.102, xmess-0.102.
2005-11-30 18:03:06 +00:00
adrianp
8ad8797508 Update of ircservices 2005-11-30 17:49:51 +00:00
martti
d31263d84f postfix-current-2.3-20051128 2005-11-30 14:03:15 +00:00
markd
c820366a13 Add KDE 3.5 and note I'll do it. 2005-11-30 07:13:11 +00:00
minskim
d073d178cd Add tex-unttf and tex-dhucs. 2005-11-29 22:39:48 +00:00
adrianp
ab12d7d256 Added tre and unrealircd 2005-11-29 19:35:33 +00:00
wiz
f16ec4195e Updated gtk2+ to 2.8.8. 2005-11-29 17:46:19 +00:00
wiz
40e0118969 + galeon-2.0.0, gtk2+-2.8.8, maradns-1.0.35, mplayer-plugin-firefox-3.16,
sun-jdk14-2.10, sun-jre14-2.10.
2005-11-29 17:44:24 +00:00
adam
b018a691d1 Updated fonts/fontforge to 20051028 2005-11-29 14:28:45 +00:00
adam
dedd901b8e Updated math/octave to 2.1.72 2005-11-29 13:12:12 +00:00
rillig
7ade6c222e Updated pkgse to 0.3.
Update provided by the maintainer in PR 32189. He says that version 0.2
does not work anymore.
2005-11-29 10:21:05 +00:00
tron
d95335d54e Note update of "kphone" package to version 4.2. 2005-11-29 10:15:48 +00:00
adam
8136fbbab1 Updated devel/hdf5 to 1.6.5 2005-11-29 10:04:38 +00:00
rillig
b9f650f345 Reordered the configuration files for bulk builds. Since the
build.conf file contains a setting for choosing another mk.conf file,
it should come first. Updated the wording of the text.
2005-11-29 09:58:27 +00:00
adam
cff3be3490 Updated graphics/ImageMagick to 6.2.5.5 2005-11-29 08:52:33 +00:00
dan
d662a59c99 monotone 0.24 2005-11-29 00:28:33 +00:00
wiz
b4fb001148 + grace-5.1.19, p7zip-4.30, phppgadmin-4.0.1, vlc-0.8.4, vnc2swf-0.8.1,
xmule-1.12.1.
2005-11-28 21:06:37 +00:00
jlam
e6e49a2f0f Change all instances of including mk/ghostscript.mk into asking for
the appropriate tool via USE_TOOLS (usually "gs:run"), and remove
ghostscript.mk.  This change removes a rather out-dated file from
pkgsrc and switches packages to use the more compact implementation
of the Ghostcript-handling inside the tools framework.
2005-11-28 06:41:20 +00:00
salo
6552d3051f Fix the directory entry for suse91_gtk2.. 2005-11-27 18:35:15 +00:00
salo
d24e2165c6 Note emulators/suse91_gtk2 PKGREVISION bump: security update. 2005-11-27 18:17:04 +00:00
adrianp
32d7ff4314 Updated print/ghostscript-afpl to 8.51nb1
Updated print/ghostscript-esp to 8.15.1nb1
Updated print/ghostscript-esp-nox11 to 8.15.1nb1
Updated print/ghostscript-gnu to 8.15nb1
Updated print/ghostscript-gnu-nox11 to 8.15nb1
Updated print/ghostscript to 6.01nb6
Updated print/ghostscript-nox11 to 6.01nb6

All for http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0967
2005-11-27 17:16:27 +00:00
wiz
d5ad1a67a8 Fix comms/asterisk-sounds-de-x9media entry. 2005-11-26 19:47:42 +00:00
uebayasi
d00b75d918 zsh-4.2.5nb2; honour PKG_SYSCONFDIR. PR32026 from Geert Hendrickx. 2005-11-26 15:42:35 +00:00
wiz
9861042baa + cdrdao-1.2.1, gcdmaster-1.2.1, php-5.1.0, rdiff-backup-1.0.3,
tuxpaint-0.9.15, tuxpaint-stamps-20051125.
2005-11-26 10:32:56 +00:00
adrianp
98bf41d8e2 Updated www/thttpd to 2.25bnb4 2005-11-26 10:04:00 +00:00
salo
ac1237dc62 Note graphics/gdk-pixbuf PKGREVISION bump: security fixes. 2005-11-26 09:42:17 +00:00
ben
1c2fa6cc8e Make note of bochs update. 2005-11-26 06:15:52 +00:00
xtraeme
f2eb252a05 Updated emulators/gxemul to 0.3.7 2005-11-26 06:01:34 +00:00
mjl
8a7b363ffd Note asterisk-sounds-de-x9media-20051126 2005-11-26 01:45:47 +00:00
ben
f8e4c04dca Make note of mplayer PKGREVISION bump. 2005-11-26 01:33:22 +00:00
wiz
0c5a3f8286 Note uim bug fix PKGREVISION bump. 2005-11-25 22:17:56 +00:00
wiz
db60e0b0c4 Mention libgsf update. 2005-11-25 21:40:06 +00:00
adrianp
174b8c0406 Remove horde TODO updates 2005-11-25 21:22:48 +00:00
adrianp
c06d11b7e2 Updated www/horde to 2.2.9 2005-11-25 21:22:05 +00:00
adrianp
251e70d09a Updated www/horde3 to 3.0.7 2005-11-25 21:01:12 +00:00
wiz
b09e87893a + wine-0.9.2. 2005-11-25 19:59:54 +00:00
wiz
89a2a328f5 micq updated to 0.5.0.4. 2005-11-25 19:59:26 +00:00
heinz
ade7ff3d59 Import of converters/convmv version 1.08. 2005-11-25 02:01:15 +00:00
rpaulo
81c20b34fa Mention gtick 0.3.7. 2005-11-24 23:23:44 +00:00
wiz
73291716fc Note two more perl package updates. 2005-11-24 19:03:45 +00:00
wiz
9a69a74b6e Mention some new packages and package updates. 2005-11-24 18:55:53 +00:00
wiz
403092dcd8 + efax-gtk-3.0.7, kphone-4.2 [pkg/32159], leafnode-1.11.4,
lighttpd-1.4.8, silc-server-1.0.1.
- Gorm-1.0.1 (thanks rh! you're allowed to touch this file, btw :) )
2005-11-24 18:35:54 +00:00
rillig
22806feb9f regen. 2005-11-24 11:02:09 +00:00
rillig
500b58c211 Somehow, all the __i386__ were missing an additional underscore. Fixed it. 2005-11-24 10:53:44 +00:00
rillig
556eb8885a Updated pkglint to 4.46.
Changes since 4.45:
- Added the type ShellWord.
- Added quoting checks for variables that are appended to a
  List of ShellWord.
- Multiple -v increase the verbosity.
- The --autofix option is no longer undocumented, but still experimental,
  as this is the only part of pkglint that can modify external files.
- Added an --explain option that provides additional help for the
  diagnostics.
- Added checks for unportable CPP macro names in patches.
- Updated the documentation.
2005-11-24 10:16:54 +00:00
rillig
1f6b1c5e5f regen. 2005-11-24 10:08:00 +00:00
rillig
2330f610f9 Fixed the wording in the "CPP defines" section. Added more examples of
predefined CPP macros for some platforms.
2005-11-24 10:03:37 +00:00
rh
d343b5f5fb Note update of Gorm to 1.0.1 2005-11-24 04:27:48 +00:00
wiz
776feb01c5 Note p5-Digest-SHA update to 5.31. 2005-11-23 22:41:16 +00:00
wiz
060cbb6045 snd updated to 7.15. 2005-11-23 22:40:30 +00:00
wiz
f2dcd9fac7 Note p5-Digest update to 1.13. 2005-11-23 22:31:39 +00:00
wiz
daba60db3f Belatedly note spamassassin update to 3.1.0 (hi heinz!). 2005-11-23 22:26:53 +00:00
wiz
8b4b050be4 Mention some perl package updates. 2005-11-23 22:24:12 +00:00
wiz
5dec210191 + arpwatch-2.1a13 [pkg/32151], bacula-1.38.2, bittorrent-4.2.0,
horde3-3.0.7.
2005-11-23 22:03:51 +00:00
markd
b267e20a92 gwenview update. 2005-11-23 19:25:00 +00:00
adam
861229434a Updated emulators/BasiliskII to 1.0.20051122 2005-11-23 12:19:37 +00:00
wiz
d5c33bc4d7 Note some py-qt3 package updates drochner did yesterday. 2005-11-23 07:33:14 +00:00
minskim
a89be97882 Add qdbm-plus. 2005-11-23 06:59:44 +00:00
minskim
69cfe2390f Add qdbm-cgi. 2005-11-23 06:54:44 +00:00
minskim
e8f976bd6b Add ruby-qdbm. 2005-11-23 06:44:38 +00:00
minskim
5481107fde Add p5-qdbm. 2005-11-23 06:38:38 +00:00
minskim
c1af683852 Note update of qdbm. 2005-11-23 06:21:59 +00:00
minskim
8b1e7b0405 Note update of alee-ttf. 2005-11-23 05:50:44 +00:00
minskim
7adce805f9 Note update of mathomatic. 2005-11-23 05:26:59 +00:00
wiz
7ee7c2292f Remove some package updates that already happened:
lang/chicken to 2.2 [rillig 2005-11-16]
 mail/dspam to 3.6.1 [adrianp 2005-11-12]
 net/gopher to 3.0.11 [adrianp 2005-10-30]
 devel/guile-www to 1.1.1 [gdt 2005-10-16]
 devel/ht to 0.9.1 [rh 2005-10-23]
 net/ipv6calc to 0.50 [hubertf 2005-11-08]
 devel/libjit to 0.0.4 [rillig 2005-10-22]
 devel/libstatgrab to 0.12 [rillig 2005-11-01]
 www/lighttpd to 1.4.7 [joerg 2005-11-06]
 mail/mairix to 0.16.1 [simonb 2005-10-18]
 devel/p5-OOTools to 2.21 [hiramatsu 2005-10-18]
 databases/phpmyadmin to 2.6.4pl4 [tron 2005-11-21]
 lang/tcl-itcl to 3.2.1 [minskim 2005-10-26]
 www/zope25-ZPsycopgDA to 1.1.21 [joerg 2005-11-16]
2005-11-22 23:20:55 +00:00
wiz
d9e943b3d6 Note some more perl package updates. 2005-11-22 23:16:48 +00:00
wiz
2d925ae62a Note some perl package updates. 2005-11-22 22:59:03 +00:00
wiz
4614c13c0f Updated mldonkey{-gui} to 2.7.0. 2005-11-22 21:45:35 +00:00
jdolecek
3915480de4 www/opera update to 8.51 - security update 2005-11-22 20:07:58 +00:00
wiz
280ad56b56 Mention new libmpd and updated gmpc. 2005-11-22 19:28:31 +00:00
wiz
9c1223aa97 Fix darcs entry. 2005-11-22 19:08:09 +00:00
wiz
01abcd40d4 Note updates for bacula* and scmxx. 2005-11-22 19:07:16 +00:00
wiz
32ddb35f14 + inkscape-0.43, mathomatic-12.5.2, silc-toolkit-1.0.1, xchat-gnome-0.7.
- ipsec-tools (thanks, tron)
2005-11-22 18:11:12 +00:00
tron
33362ea566 Note update of "ipsec-tools" package to version 0.6.3. 2005-11-22 16:27:23 +00:00
rillig
8699918866 Bumped PKGREVISION of mail/spamassassin, as the patch-ar has been
removed again.
2005-11-22 13:04:39 +00:00
augustss
81b00c840a Update darcs to 1.0.4nb1 2005-11-22 12:58:51 +00:00
rillig
05e032c0ac Bumped PKGREVISION of mail/spamassassin because of a bugfix in the
validator for regular expressions.
2005-11-22 10:38:43 +00:00
dan
e3c77e66b1 monotone-viz revision bump for explicit dependency on graphviz 2005-11-22 03:12:19 +00:00
wiz
607d4b05a4 Note musicpd PKGREVISION bump. 2005-11-22 00:02:13 +00:00
wiz
cd1b20dcd9 bogofilter updated to 0.96.6. 2005-11-21 23:47:31 +00:00
rillig
3ffb27719a Updated pkglint to 4.45.
- Fixed perl -T warnings:
  - Replaced $#{@{$lines}} with $#{$lines}.
  - Avoided calls to external programs (sed and digest).
- Removed redundant warning if DISTNAME is set to an invalid package name
  and PKGNAME is not defined.
- Changed dependency from pkgtools/digest to security/p5-Digest-SHA1.
2005-11-21 22:06:30 +00:00
minskim
43b91a245c Add synergy. 2005-11-21 19:46:46 +00:00
wiz
0e9762a623 + Gorm-1.0.1, avr-libc-1.4.0, cbrowser-0.8 [pkg/30972], db4-4.4.16,
findutils-4.2.26, gwenview-1.3.1 [pkg/32134], jpegpixi-1.1.1,
  sipsak-0.9.5, vnc2swf-0.8.0.
- gwenview-1.3.0 (thanks, reed)
2005-11-21 15:32:45 +00:00
tron
61958a214f Note update of "phpmyadmin" package to version 2.6.4pl4. 2005-11-21 13:49:24 +00:00
agc
fd7082ab6c Update audit-packages to version 1.41
Fix PR 31957 - only report that we're using @PKG_SYSCONFDIR@/audit-packages.conf
if we're in verbose mode.
2005-11-21 10:39:50 +00:00
rillig
8563978799 regen. 2005-11-21 09:40:30 +00:00
rillig
750c275eb7 Inserted punctuation into the list of predefined CPP macros to make it
more readable.
2005-11-21 09:33:39 +00:00
rillig
d5650e7dc3 Added more documentation on the predefined C preprocessor macros. 2005-11-21 09:27:04 +00:00
dan
2cbd522c3f +postgresql 8.1 2005-11-21 09:24:01 +00:00
jlam
d0890a0ccb Update print/ghostscript-esp{,-nox11} to ESP Ghostscript 8.15.1. This
version is based on the GPL Ghostscript 8.15 release.  Major changes from
Ghostscript 7.0x include:

* Many printer drivers were added and updated.
* Improved support for running as a job server (-dJOBSERVER)
* Support for DeviceN colorspaces at up to 8 colorants total at 8 bits
  per colorant.
* The PDF writer has been considerably improved and implements PDF
  1.4 encryption
* Add a new feature to scale PDFs to the current page size.
* Font rendering has been substantially reworked and improved.
* PDF 1.4 transparency rendering is much more likely to be correct
* Improved support for CID font substitution.
* Improved processing of incorrect and broken PDF files, including files
  with corrupted xref tables and non-ASCII font names.
* Support for JBIG2-encoded images.
* The usual plethora of bug fixes.
2005-11-21 06:17:58 +00:00
schmonz
d70cb30bf6 Note bglibs update. 2005-11-21 06:08:28 +00:00
schmonz
f1c5a51079 Note mailfront update. 2005-11-21 05:54:38 +00:00
schmonz
acbeaa2ddd Note bglibs PKGREVISION bump. 2005-11-21 05:38:17 +00:00
schmonz
685887f525 Note getmail update. 2005-11-21 05:24:23 +00:00
ben
92538da3bb Make note of fprot-workstation-bin update to version 4.6.2. 2005-11-21 02:08:38 +00:00
rillig
6efa75eb39 Updated pkglint to 4.44.
Changes since 4.43:
- Removed the remaining code that had been imported from FreeBSD's
  portlint.
- Removed the (undocumented) -Wvague option.
- Removed the -Wexec and -Wparen options. The latter had no effect at all,
  and the former cannot lead to false positives, so it is always enabled.
- Variable names starting with an underscore are reserved for internal
  pkgsrc use.
- Added some more type checks.
2005-11-20 20:09:35 +00:00
minskim
724c939fd1 dvipdfmx update was done. 2005-11-20 18:57:07 +00:00
minskim
c8b57df8ee Note update of dvipdfmx. 2005-11-20 18:55:38 +00:00
magick
470ff2028d nxtvepg updated to 2.7.6 2005-11-20 17:54:28 +00:00
rillig
2a72606c23 Updated the example use of pkglint. 2005-11-20 17:14:26 +00:00
xtraeme
dfa7d334db Added graphics/f4l 2005-11-20 17:00:07 +00:00
wiz
66214e07c1 Note gtk2 and glib2 updates. 2005-11-20 16:50:38 +00:00
rillig
9ad0beb5cc Imported emulators/vmips from the TODO list. 2005-11-20 13:31:41 +00:00
rillig
7a8467a5f6 Imported emulators/vmips-1.3.1 from pkgsrc-wip 2005-11-20 13:30:14 +00:00
wiz
8ca3f7fd84 + ArX2-2.2.4, asterisk-1.2.0, bittorrent-4.1.8, mldonkey-2.7.0,
riece-2.0.2, scmxx-0.8.2.
2005-11-20 11:55:08 +00:00
cjep
ba8e8802f7 Note update of mail/nail to 11.25 2005-11-20 11:09:19 +00:00
rillig
90d634940e regen. 2005-11-20 10:09:29 +00:00
rillig
fa35d64150 Added a section on how to keep pkgsrc up-to-date. 2005-11-20 10:02:31 +00:00
rillig
ba11eb0df5 Imported audio/tcd-2.2.0 from pkgsrc-wip 2005-11-20 08:45:21 +00:00
joerg
1ed196fcaa While I was root when running make changes-entry, it is better to
keep my developer name in CHANGES. Fix the botched-up entries.
2005-11-20 03:01:10 +00:00
joerg
0cd544b6c0 Import slapd pthread fix for databases/openldap. 2005-11-19 18:42:29 +00:00
rillig
80dd2e6994 Imported textproc/p5-Pod-Tree-1.11 from pkgsrc-wip 2005-11-19 12:47:24 +00:00
rillig
8d39bfce88 Imported www/p5-HTML-Stream-1.55 from pkgsrc-wip 2005-11-19 12:43:16 +00:00
xtraeme
5e3c715808 Updated mail/sylpheed-devel to 2.1.7 2005-11-19 10:47:45 +00:00