Commit graph

171127 commits

Author SHA1 Message Date
obache
146c3dfd95 Update mikutter to 0.0.3.3.
* Add HTTP proxy support.
* Support notify with Growl.
* Support sound with SDL.
* Fix to get tweet from keyed account.
* Some bug fixes and performance improvements.
2011-05-07 13:57:35 +00:00
shattered
5aaac13c65 Fix build on NetBSD 4 2011-05-07 10:07:12 +00:00
shattered
ff80a9795a PR/44785 -- fix build on NetBSD 4 2011-05-07 10:06:34 +00:00
cheusov
efc47d97e0 Closes PR pkg/44850, oked by wiz@ and reed@
devel/libmaa updated to 1.3.0
recursive bump pkgrevisions of dependent packages due to ABI change
2011-05-07 10:06:02 +00:00
cheusov
adbb22ca9a Closes PR pkg/44851, oked by wiz@ and reed@
Add LICENCE
Update to 1.0.5
   Major changes in Judy-1.0.5:
   1.0.5  Version by (twh)
   o added proper clean targets to enable multiple builds
   o added examples directory
   o Correctly Detects 32/64-bit build environment
   o Allow explicit configure for 32/64-bit environment
2011-05-07 09:59:16 +00:00
cheusov
816352b502 Closes PR pkg/44852, oked by wiz@ and reed@
Update mawk to 1.3.4.20100625
Major changes in this release of mawk:
    20100625
        + correct translation of octal and hex escapes for system regular
          expression library.
        + modify configure script to support --program-suffix, etc.
        + add Debian package scripts, for "mawk-cur".
        + add RPM spec-file.
        + move release- and patch-level values from version.c to patchlev.h
          to simplify packaging scripts.

    20100618
        + correct translation of "^{" pattern for system regular expression
          library  (report by Elias Pipping).
        + fix sentence fragment in README (report by Elias Pipping).

    20100507
        + cleanup gcc warnings for 64-bit platform, e.g., use size_t rather
          than unsigned, etc.
        + fix warnings from clang --analyze
        + update/improve configure script
          + modify CF_GCC_VERSION to ignore stderr, e.g., from c89 alias
          + modify CF_GCC_WARNINGS, moving -W and -Wall into the list to check,
            since c89 alias for gcc complains about these options.
          + add --disable-leaks and related options, for testing.
          + add lint rule to makefile.
          + add configure-check for ctags to work with pkgsrc.
        + amend change of array.w, fixes a regression in "delete" (report by
          Heiner Marxen).

    20100419
        + modify split() to handle embedded nulls in the string to split, e.g.,
                BEGIN{s="a\0b"; print length(s); n = split(s,f,""); print n}
          (report by Morris Lee).
        + modify array.w to update table pointers in the special case where
          an array is known to have string-indices, but is later indexed via
          integers.  The problem occurs when the array grows large enough to
          rehash it, e.g.,
                BEGIN{a["n"];for(i=1;i<1000;++i)printf "%d\n", a[i]; }
          (report by Morris Lee).
        + increase size of reference-count for strings to unsigned.  It was an
          unsigned short, which prevented using arrays larger than 64k, e.g.,
                BEGIN{for(i = 1; i <= 65550; ++i){if(i >= 65534 && i<=65537) print i; s[i] = "a"}; delete s;}
          (report by Morris Lee).
        + add special case for Solaris 10 (and up) to configure check
          CF_XOPEN_SOURCE
        + refactored configure check CF_REGEX

    20100224
        + add a configure check for large files (report by Sean Kumar).
        + modify check in collect_RE() to show the actual limit value, e.g.,
          MIN_SPRINTF-2 used for built-in regular expressions.
        + increase MIN_SPRINTF, used as limit on regular-expression size, to
          match the MAX_SPLIT value, i.e., slightly more than doubling the size
          (report by Markus Gnam).
        + further modify makefile to build outside the source-tree.
        + modify makefile and mawktest to use relative path again, since the
          existing script did not work with openSUSE's build (patch by Guido
          Berhoerster).
        + fix makefile's .c.i rule, which lacked CPP definition.
        + update mawktest.bat script to more/less correspond with mawktest,
          for Win32 console except where echo command does not handle the
          required quoting syntax.
        + add vs6.mak, for Visual Studio 6.
        + modify mawktest script to report results from all tests, rather than
          halting on the first failure.
        + add limit-check after processing match(test, "[^0-9A-Za-z]") to
          ensure the internal trailing null of the test-string is not mistaken
          for part of the string, i.e., RSTART, RLENGTH are computed correctly
          (report by Markus Gnam).
        + modify parsing of -W option to use comma-separated values, e.g.,
          "-Wi,e" for "-Winteractive" and "-Werror".
        + add timestamp to scancode.c, to help manage revisions.
        + improve configure macro CF_XOPEN_SOURCE, making it remove possibly
          conflicting definitions before adding new ones.
        + update config.guess and config.sub

        > patches by Jan Psota:

        + improve buffering for -Winteractive option.
        + allow multiple single-character flags after -W, e.g., "-Wie" for
          "-Winteractive" and "-Werror" to permit these to be passed on a
          "#"-line of a shell script, e.g.,
                #!/usr/bin/mawk -Wie

        > patches by Jonathan Nieder:

        + add new M_SAVE_POS and M_2JC operation codes (states) to the
          built-in regular expression engine.  Use these to reimplement
          m* (closure), to provide a way to avoid infinite looping on
          matches against empty strings.  This change requires
          reimplementing
          the workaround for gawk's noloop1 testcase from 20090726.
        + improve buffer-overflow check for string_buff.
        + fix collect_RE to treat "[^]]" as a character class (meaning "not a
          closing bracket") but "[^^]]" not as one.  This also requires
          initializing the local "start of character class" variable to NULL
          rather than the beginning of the string, to avoid an invalid array
          access when collecting expressions such as "^text".
        + within a character class and not followed by a :, ., or ~, a "[" is
          just like any other character.  This way, you can tell mawk to scan
          for a literal [ character with "mawk /[[]/", and you can scan for a [
          or ] with "mawk /[][]/".  Also clean up the relevant loop in
          do_class() to make it a bit more readable.
        + outside a character class, a "]" is just like any other character.
        + prevent do_class() from scanning past the end, e.g., if the
          terminating zero byte was escaped.
        + fix regular-expression parsing when a right parenthesis ")" is
          found without a preceding left parenthesis.
        + fix resetting of position stack when backtracking.
        + modify regular-expression engine to avoid exponential running time
          for some regular expression matches in which the first match mawk
          finds extends to the end of the string.  This is a new fix for the
          gawk noloop2 test, added here for regression testing.
2011-05-07 09:43:05 +00:00
tnn
779063a84e xenkernel41 didn't build on current/amd64.
It uses -nostdinc and tries to use #include <stdarg.h> through
a local copy of stdarg.h, which can't work.
Fixed this by putting the relevant builtin stdarg definitions for
NetBSD in the local copy.
2011-05-07 07:11:22 +00:00
tnn
098a844b3b drop superflous item in CHECK_PORTABILITY_SKIP 2011-05-07 06:39:16 +00:00
manu
91b02cbd80 Unbreak SP initiated SLO with lasso >= 2.3.5 (patch backported from upstream) 2011-05-07 05:15:21 +00:00
adam
7be1ce5663 Updated databases/mysql55-{client,server} to 5.5.12 2011-05-07 04:05:04 +00:00
adam
05b98ae603 Changes 5.5.12:
* Fixed bugs: Illegal mix of collations
* Problem: comparison of a DATETIME sp variable and NOW() led to Illegal mix of
  collations error when character_set_connection=utf8.
* Error happened in Arg_comparator::set_compare_func(), because the first
  argument was errouneously converted to utf8, while the second argument was
  not.
* Fix: separate agg_arg_charsets_for_comparison() into two functions:
  - agg_arg_charsets_for_comparison() - for pure comparison, when we don't need
    to return any string result and therefore don't need to convert arguments
    to @@character_set_connection:
          SELECT a = b;
  - agg_arg_charsets_for_string_results_with_comparison() - when we need to
    return a string result, but we also need to do comparison internally:
          SELECT REPLACE(a,b,c)
    If all arguments are numbers:
          SELECT REPLACE(123,2,3) -> 133
    we convert arguments to @@character_set_connection.
2011-05-07 04:03:07 +00:00
obache
ed0b185973 Updated security/ruby-simple_oauth to 0.1.5 2011-05-07 03:01:53 +00:00
obache
c468aabcb7 Update ruby-simple_oauth to 0.1.5.
* Rakefiles are executables, and rake loads rake, not rakefile code
* Replace rcov with simplecov
* Convert README to Markdown
* Convert LICENSE to Markdown
* Replace rdoc with yard
* Add turn in development for more verbose test output
* Trust the load path
* Remove vestigial VERSION file
* Add Travis configuration file
* Bundle setup before running tests
* Require rubygems
* Add bundler as a development dependency
* Apparently, Object#tap was added in 1.8.7, not 1.9
* Add jruby-openssl dependency
* Add link to Travis CI
* Remove vestigial rdoc options from gem specification
* Bump version to 0.1.5
2011-05-07 03:01:35 +00:00
dholland
9f68fb3d71 pysolfc 2011-05-07 00:19:06 +00:00
dholland
6a2290ded2 Bump PKGREVISION for previous (to 6) -- while the build was failing, it
only started failing after the /usr/bin/env change, and the installed
package is now different, so it should be a new version.
2011-05-07 00:18:49 +00:00
wiz
1276afb31d + kde4-4.6.3, puzzles-9167. 2011-05-06 20:28:08 +00:00
alnsn
2ea2a2cb37 Add LIBnn=lib to ./configure environment. This fixes a build failure on 64bit linux.
Briefly discussed with wiz@
2011-05-06 19:42:48 +00:00
alnsn
e5cee11ab4 pass --libdir to ./configure to fix lib64 vs lib confusion on linux 2011-05-06 19:30:13 +00:00
drochner
59e5ff3d93 update to 2.2.4
changes:
-misc fixes and improvements
-added selftest
2011-05-06 18:02:06 +00:00
abs
986593df3f Fix build on (at least RHEL 5.6). Tested (and no change) on NetBSD 5.99.51 2011-05-06 16:21:16 +00:00
ryoon
3035a6eb0f PR pkg/44894
* Improve patch for Makefile.in. No functional change.

Thank you, Rhialto.
2011-05-06 13:12:48 +00:00
obache
d44bcd19b1 Updated net/maradns to 1.4.06 2011-05-06 11:36:59 +00:00
obache
96553f5e89 Update maradns to 1.4.06.
maradns-1.4.06:

   This is the stable branch of MaraDNS.

       * Fix for CVE-2011-0520
       * Deadwood updated to 3.0.02

     (2011.01.28)

   maradns-1.4.05:

   This is a stable branch of MaraDNS.

       * Deadwood updated to the stable 3.0.01 release.
       * MicroDNS now returns "not implemented" when given an EDNS packet
       * FAQ updated.

     (2010.09.25)

   maradns-1.4.04:

   This is the stable branch of MaraDNS.

       * Bugfix: NAPTR records now work when ~ is used to separate
         records
       * NAPTR records now documented
       * Bugfix: ANY queries now correctly work with NS referrals
       * Example IPv6 addresses now use RFC-4193 compliant IPs
       * Website updated to point out that Deadwood is now feature
         complete and ready for beta-testing
       * Some updates to the SQA regressions
       * Deadwood updated to Deadwood 2.9.02
       * Windows-only mkSecretTxt program added (*NIX users can
         just type in "dd if=/dev/urandom of=secret.txt bs=64
         count=1"; this gives Windows the same ability).

     (2010.07.31)
2011-05-06 11:36:23 +00:00
drochner
05769089de make Python extensions work (adds Python dependency), add some
CHECK_INTERP_SKIPs to quell false warnings
bump PKGREV
2011-05-06 09:32:49 +00:00
dholland
00882ce9c4 REPLACE_PYTHON. 2011-05-06 08:27:07 +00:00
adam
8bace119ee Updated graphics/png to 1.5.3beta05 2011-05-06 07:20:16 +00:00
adam
72730ee48e Changes 1.5.3beta05:
* Added the "_POSIX_SOURCE" feature test macro to ensure libpng sees the
  correct API. _POSIX_SOURCE is defined in pngpriv.h, pngtest.c and
  pngvalid.c to ensure that POSIX conformant systems disable non-POSIX APIs.
* Removed png_snprintf and added formatted warning messages.  This change adds
  internal APIs to allow png_warning messages to have parameters without
  requiring the host OS to implement snprintf.  As a side effect the
  dependency of the tIME-supporting RFC1132 code on stdio is removed and
  PNG_NO_WARNINGS does actually work now.
* Added PNG_WRITE_OPTIMIZE_CMF_SUPPORTED macro to make the zlib "CMF" byte
  optimization configureable.
* IDAT compression failed if preceded by a compressed text chunk (bug
  introduced in libpng-1.5.3beta01-02).  This was because the attempt to
  reset the zlib stream in png_write_IDAT happened after the first IDAT
  chunk had been deflated - much too late.  In this change internal
  functions were added to claim/release the z_stream and, hopefully, make
  the code more robust.  Also deflateEnd checking is added - previously
  libpng would ignore an error at the end of the stream.
2011-05-06 07:19:22 +00:00
obache
b5bbf90893 Update HOMEPAGE. 2011-05-06 05:54:12 +00:00
obache
87c5c234d2 Updated devel/msgpack to 0.5.6 2011-05-06 05:48:24 +00:00
obache
7261845585 Update msgpack to 0.5.6.
2011-04-24 version 0.5.6:

  * #42 fixes double-free problem on msgpack_unpacker_release_zone
2011-05-06 05:48:11 +00:00
obache
81d71c9c1a Updated net/zeromq to 2.1.6 2011-05-06 05:30:48 +00:00
obache
9e37e75ff1 Update zeromq to 2.1.6.
0MQ version 2.1.6 (Stable), released on 2011/04/26
==================================================

Bug fixes
---------

* Fixed memory leak with threads on Windows.

* Assert during SUB socket termination fixed.

Changes
-------

* Checks zmq_msg_t validity at each operation.

* Inproc performance tests now work on Windows.

* PGM wire format specification improved in zmq_pgm(7)

* Added thread latency/throughput performance examples.

* Added "--with-system-pgm" configure option to use already installed
  OpenPGM.


0MQ version 2.1.5 (Broken), released on 2011/04/20
==================================================

Note that this version contained a malformed patch and is not usable.
It is not available for download, but is available in the git via the
2.1.5 tag.

0MQ version 2.1.4 (Stable), released on 2011/03/30
==================================================

Bug fixes
---------

* Fix to OpenPGM which was asserting on small messages (Steven McCoy).

Changes
-------

* Upgraded OpenPGM to version 5.1.115 (Pieter Hintjens).

* OpenPGM build changed to not install OpenPGM artifacts.


0MQ version 2.1.3 (Stable), released on 2011/03/21
==================================================

Bug fixes
---------

* Fix to PUSH sockets, which would sometimes deliver tail frames of a
  multipart message to new subscribers (Martin Sustrik).

* Fix to PUB sockets, which would sometimes deliver tail frames of a
  multipart message to new subscribers (Martin Sustrik).

* Windows build was broken due to EPROTONOSUPPORT not being defined. This
  has now been fixed (Martin Sustrik).

* Various fixes to make OpenVMS port work (Brett Cameron).

* Corrected Reference Manual to note that ZMQ_LINGER socket option may be
  set at any time, not just before connecting/binding (Pieter Hintjens).

* Fix to C++ binding to properly close sockets (Guido Goldstein).

* Removed obsolete assert from pgm_socket.cpp (Martin Sustrik).

Changes
-------

* Removed stand-alone devices (/devices subdirectory) from distribution.
  These undocumented programs remain available in older packages (Pieter
  Hintjens).

* OpenPGM default rate raised to 40mbps by default (Steven McCoy).

* ZMQ_DEALER and ZMQ_ROUTER macros provided to ease upgrade to 0MQ/3.0.
  These are scheduled to replace ZMQ_XREQ and ZMQ_XREP (Pieter Hintjens).

* Added man page for zmq_device(3) which was hereto undocumented (Pieter
  Hintjens).

* Removed zmq_queue(3), zmq_forwarder(3), zmq_streamer(3) man pages
  (Pieter Hintjens).

OpenPGM Integration
-------------------

* Upgraded OpenPGM to version 5.1.114 (Steven McCoy, Mikko Koppanen).

* Build system now calls OpenPGM build process directly, allowing easier
  future upgrades of OpenPGM (Mikko Koppanen).

* Build system allows configuration with arbitrary versions of OpenPGM
  (./configure --with-pgm=libpgm-x.y.z) (Mikko Koppanen).

* OpenPGM uses new PGM_ODATA_MAX_RTE controlling original data instead of
  PGM_TXW_MAX_RTE covering entire channel (Steven McCoy).

Building
--------

* 0MQ builds properly on FreeBSD (Mikko Koppanen).


0MQ version 2.1.2 (rc2), released on 2011/03/06
===============================================

Bug fixes
---------

* 0MQ now correctly handles durable inproc sockets; previously it ignored
  explicit identities on inproc sockets.

* Various memory leaks were fixed.

* OpenPGM sender/receiver creation fixed.


0MQ version 2.1.1 (rc1), released on 2011/02/23
===============================================

New functionality
-----------------

* New socket option ZMQ_RECONNECT_IVL_MAX added, allows for exponential
  back-off strategy when reconnecting.

* New socket option ZMQ_RECOVERY_IVL_MSEC added, as a fine-grained
  counterpart to ZMQ_RECOVERY_IVL (for multicast transports).

* If memory is exhausted, 0MQ warns with an explicit message before
  aborting the process.

* Size of inproc HWM and SWAP is sum of peers' HWMs and SWAPs (Douglas
  Greager, Martin Sustrik).

Bug fixes
---------

* 0MQ no longer asserts in mailbox.cpp when multiple peers connect with
  the same identity.

* 0MQ no longer asserts when rejecting an oversized message.

* 0MQ no longer asserts in pipe.cpp when the swap fills up.

* zmq_poll now works correctly with an empty poll set.

* Many more.

Building
--------

* 0MQ now builds correctly on CentOS, Debian 6, and SunOS/gcc3.

* Added WithOpenPGM configuration into MSVC builds.

Known issues
------------

* OpenPGM integration is still not fully stable.


0MQ version 2.1.0 (Beta), released on 2010/12/01
================================================

New functionality
-----------------

* New semantics for zmq_close () and zmq_term () ensure that all messages
  are sent before the application terminates. This behaviour may be
  modified using the new ZMQ_LINGER socket option; for further details
  refer to the reference manual.

* The new socket options ZMQ_FD and ZMQ_EVENTS provide a way to integrate
  0MQ sockets into existing poll/event loops.

* Sockets may now be migrated between OS threads, as long as the
  application ensures that a full memory barrier is issued.

* The 0MQ ABI exported by libzmq.so has been formalised; DSO symbol
  visibility is used on supported platforms to ensure that only public ABI
  symbols are exported. The library ABI version has been set to 1.0.0 for
  this release.

* OpenPGM has been updated to version 5.0.92. This version no longer
  depends on GLIB, and integration with 0MQ should be much improved.

* zmq_poll() now honors timeouts precisely, and no longer returns if no
  events are signaled.

* Blocking calls now return EINTR if interrupted by the delivery of a
  signal; this also means that language bindings which previously had
  problems with handling SIGINT/^C should now work correctly.

* The ZMQ_TYPE socket option was added; this allows retrieval of the socket
  type after creation.

* Added a ZMQ_VERSION macro to zmq.h for compile-time API version
  detection.

* The ZMQ_RECONNECT_IVL and ZMQ_BACKLOG socket options have been added.

Bug fixes
---------

* Forwarder and streamer devices now handle multi-part messages correctly.

* 0MQ no longer asserts when malformed data is received on the wire.

* 0MQ internal timers now work correctly if the TSC jumps backwards.

* The internal signalling functionality (mailbox) has been improved
  to automatically resize socket buffers on POSIX systems.

* Many more.

Building
--------

* 0MQ now builds correctly with many more non-GCC compilers (Sun Studio,
  Intel ICC, CLang).

* AIX and HP-UX builds should work now.

* FD_SETSIZE has been set to 1024 by default for MSVC builds.

* Windows builds using GCC (MinGW) now work out of the box.

Distribution
------------

* A simple framework for regression tests has been added, along with a few
  basic self-tests. The tests can be run using "make check".
2011-05-06 05:30:34 +00:00
dholland
aaaa91b3bd maelstrom-sdl 2011-05-06 05:29:12 +00:00
dholland
c614b88159 Put the scorefile in ${VARBASE}/games instead of under ${PREFIX}/share.
It is still mode 666, which is wrong (XXX), but this way:
   - the package will actually install again;
   - the score file is not overwritten every time you recompile/reinstall.

There's also an .if 0 block in the makefile that can be turned on to
install the game setgid so the score file can be mode 664. I'm not
comfortable turning this on without doing at least a basic audit, and
I don't have energy for that at the moment; but it's there and it
works if anyone feels inclined to make that tradeoff locally.

An alternative approach would be to write and install a setgid
scorefile helper program, but that's not really any improvement over
making the scores world writeable

PKGREVISION -> 8.
2011-05-06 05:28:39 +00:00
obache
3d38e78542 MASTER_SITES <=> HOMEPAGE. 2011-05-06 04:34:50 +00:00
obache
bbea6f5a77 reorder entries. 2011-05-06 04:33:31 +00:00
obache
9d0255d540 MASTER_SITES <=> HOMEPAGE. 2011-05-06 04:32:04 +00:00
obache
d6b934a733 fix HOMEPAGE url. 2011-05-06 04:10:00 +00:00
taca
72581fe62d Note update of net/bind98 package to 9.8.0pl1. 2011-05-06 00:35:17 +00:00
taca
99da4e6c38 Update bind98 pacakge to 9.8.0p1 (9.8.0-P1).
Fixes https://www.isc.org/CVE-2011-1907.

	--- 9.8.0-P1 released ---

3100.	[security]	Certain response policy zone configurations could
			trigger an INSIST when receiving a query of type
			RRSIG. [RT #24280]
2011-05-06 00:34:32 +00:00
gdt
037848d501 Updated print/gutenprint-lib to 5.2.7 2011-05-05 23:39:37 +00:00
gdt
d17a15a6ac Update to 5.2.7. Notable changes from 5.2.6 (see release announcement
for full details):

  1) New printers supported in this release:

     - Canon inkjet printers (many):

     - Epson inkjet printers (many):

     - Dye sublimation printers:

       Kodak EasyShare G600 Printer Dock
       Kodak PD-4000
       Kodak PD-6000
       Kodak Photo Printer
       Kodak Photo Printer 500
       Kodak Printer Dock Plus
       Kodak Printer Dock Plus S3

  2) Corrected color matching profile used for Mac OS X 10.5.x.
     sRGB will now be used instead of Generic RGB.  Users with work-
     flows dependant on the previously used Generic RGB can select
     this color profile in the print window by using ColorSync to
     choose the profile rather than using VendorMatching.

  9) Corrected base density for Photo Paper on printers using Claria
     ink (use 20% less ink).  The default results in heavy ink
     puddling in some cases.

 12) A problem whereby certain malformed PPD files would cause the
     PostScript driver to crash has been fixed.  In addition, the
     PostScript driver now runs considerably faster.
2011-05-05 23:39:24 +00:00
wiz
6ad2ad8924 + aspell-faroese-0.4.0, chrony-1.25, clive-2.3.0.3, diffutils-3.0,
dri2proto-2.4, gcc44-4.4.6, glproto-1.4.13, gutenprint-5.2.7,
  horde-4.0.2, imp-5.0.2, kronolith-3.0.2, libdvbpsi-0.2.0,
  mousetweaks-3.0.1, puzzles-9166, py-gdata-2.0.14, stunnel-4.36,
  turba-3.0.2, vino-2.32.2, vino-3.0.2, xf86-input-void-1.4.0,
  zile-2.4.0.50.
2011-05-05 21:49:17 +00:00
wiz
55b3876cfd Fix version number in old entry. 2011-05-05 21:44:41 +00:00
drochner
f064c7c3ef update to 1.1.0
changes:
-bugfixes
-select improvements
-other minor improvements

(tested with osmarender)
2011-05-05 19:36:09 +00:00
gdt
6514cfc9d3 In the logic to maybe install a config file, or to install it as
config.new, check within $(DESTDIR) rather than the host system.

Resolves DESTDIR-mode build when privoxy is also installed, common in
make replace.

(No revbump because this change only affects a case where the package
failed to build.)
2011-05-05 16:54:55 +00:00
markd
d2febbc1b2 Add tex-parskip{,-doc} 2011-05-05 12:51:49 +00:00
markd
3a26214f4d Initial import tex-parskip-doc 2.0
documentation for tex-parskip
2011-05-05 12:49:44 +00:00
markd
3fe95db73e Initial import tex-parskip 2.0
Simply changing \parskip and \parindent leaves a layout that is
untidy; this package (though it is no substitute for a
properly-designed class) helps alleviate this untidiness
2011-05-05 12:48:44 +00:00
adam
f415864f1f Updated x11/qt4 to 4.7.3 2011-05-05 12:40:26 +00:00