Commit graph

4359 commits

Author SHA1 Message Date
adam
0bb36053f3 PLIST fix: some files are not installed on Mac OS X; pkglint clean-up 2011-01-03 05:58:49 +00:00
dmcmahill
1f1e4c5651 Update to latex-mk-2.1
--------------------------------
Release Notes for LaTeX-Mk-2.1
--------------------------------
- Fixed a bug in the quoting of lgrind related variables.  The
  result is that the clean target didn't quite work right.

- Improved quoting in the latex-mk script to better handle
  the case of a file name with spaces in it.

--------------------------------
Release Notes for LaTeX-Mk-2.0
--------------------------------
- Added support for the bibunits package

- Fix a bug when exporting xfig figures to pdf (they were exporting
  to postscript instead).

- No longer install the .dvi or .ps versions of the manual.

- Fix a bug where PDFLATEX_FLAGS wasn't being properly
2010-12-31 21:55:50 +00:00
minskim
d57ce5bd1a Regen distinfo for the previous update. Noted by tron@. 2010-12-26 01:02:38 +00:00
minskim
57643bee41 Update tex-latex-bin{,-doc} to 2010.
Changes:
- Use the luatex hyphenation pattern for lualatex and dvilualatex.
2010-12-26 00:58:40 +00:00
minskim
f6e62fefe3 Update distinfo of tex-latex.
This should have been committed with the previous change.  Noted by tron@.
2010-12-25 18:18:15 +00:00
mef
dfeb8f42c0 (1) Bump AUCTeX version 11.84 to 11.86
(2) LICENSE= gnu-gpl-v3
Based on PR pkg/43966.

News in 11.86
=============

   * Parsing of LaTeX output was improved.  It is now less likely that
     AUCTeX opens a non-existent file upon calling `TeX-next-error'; a
     problem for example encountered when using MiKTeX 2.8.  In addition
     quoted file names as emitted by MiKTeX are now supported.

   * A new framework for the definition and selection of viewers was
     implemented.  If you have customizations regarding viewers you
     will have to redo them in this new framework or reenable the old
     one.  See the section on viewers in the manual for details.

   * Comprehensive editing support for PSTricks was added.

   * Support for various LaTeX packages was added, e.g. `tabularx',
     `CJK', and `hyperref'.

   * An easy way to switch between TeX engines (PDFTeX, LuaTeX, XeTeX,
     Omega) was added.

   * Support for SyncTeX was added.  This involves the command line
     options for LaTeX and the viewer.

   * Folding can now be customized to use macro arguments as replacement
     text.

   * `preview.sty' now works with XeTeX.

   * A lot of smaller and larger bugs have been squashed.

News in 11.85
=============

   * Font locking has been improved significantly.  It is now less
     prone to color bleeding which could lead to high resource usage.
     In addition it now includes information about LaTeX macro syntax
     and can indicate syntactically incorrect macros in LaTeX mode.

   * The license was updated to GPLv3.

   * Support for the nomencl, flashcards and comment LaTeX packages as
     well as the Icelandic language option of babel were added.

   * Support for folding of math macros was added.

   * Lots of minor bugs in features and documentation fixed.
2010-12-25 13:16:22 +00:00
minskim
2dc279a718 Add tex-marginnote{,-doc}. 2010-12-25 06:25:37 +00:00
minskim
7a706538da Import tex-marginnote-doc-v1.1f as print/tex-marginnote-doc.
This is documentation for tex-marginnote.
2010-12-25 06:14:20 +00:00
minskim
c646c7d086 Import tex-marginnote-v1.1f as print/tex-marginnote.
This package provides the command \marginnote that may be used instead
of \marginpar at almost every place where \marginpar cannot be used,
e.g., inside floats, footnotes, or in frames made with the framed
package.
2010-12-25 06:14:09 +00:00
minskim
bc5442ee32 Update DISTFILES of tex-relsize for TeX Live 2010. No functional change. 2010-12-25 05:55:53 +00:00
minskim
8f25518f3e Remove tex-apalike{,-doc}, which are now included in tex-bibtex{,-doc}. 2010-12-25 05:47:29 +00:00
minskim
31bb846156 Update tex-collection-basic{,-doc} to TeX Live r20730.
Changes:
- Remove tex-apalike from the dependency list; it is now included in
  tex-bibtex.
2010-12-25 05:44:34 +00:00
minskim
568fac2bc3 Update tex-bibtex{,-doc} to 0.99d.
Changes:
- Provides APA-like bibliography style.
2010-12-25 05:36:07 +00:00
minskim
787fbefe09 Update tex-luatex{,-doc} to TeX Live r20552. No functional change. 2010-12-25 05:25:30 +00:00
minskim
bb5afcf3f1 Update tex-pdftex{,-doc} to TeX Live r20786.
Changes:
- Added more fonts to the map file, including bbold, contnav, fstr,
  and hans.
2010-12-25 02:52:14 +00:00
minskim
08f9247544 Update tex-latex{,-doc} to 2010.
Changes:
- Use PDF-1.5 instead of PDF-1.4.
2010-12-25 02:44:49 +00:00
minskim
8551415021 Update tex-plain to TeX Live r20544.
Changes:
- Include luatex-unicode-letters.tex for dviluatex format.
2010-12-25 02:40:11 +00:00
minskim
ea7230d71e Update tex-latexconfig to 2010.20663.
Changes:
- Added lualatex-reset-codes.tex.
2010-12-25 02:30:12 +00:00
minskim
c210332a5d Update tex-vertbars to 1.0b.
Changes:
- Added \pagewiselinenumbers.
2010-12-25 02:18:44 +00:00
dsainty
1f40f3a084 Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-23 11:44:24 +00:00
obache
cc379cad84 Adjust Thai and Japanese examples in xpdfrc(5) to realities (add-to-xpdfrc
in xpdf-thai and xpdf-japanese package).
Fixes PR#44266.

Bump PKGREVISION.
2010-12-23 04:44:41 +00:00
drochner
ad29ca5bdf +scribus-qt4 2010-12-13 11:52:29 +00:00
drochner
ff60c62de7 first cut on scribus-qt-1.3.9, the current "scribus" release with
the UI ported to qt4
(documents from pkgsrc/scribus can be imported, but not the other way)
2010-12-13 11:49:42 +00:00
wiz
d978506b9c Update to 0.4.4.
Changes to
cMap/Adobe-CNS1/UniCNS-UTF16-H
cMap/Adobe-CNS1/UniCNS-UTF32-H
cMap/Adobe-CNS1/UniCNS-UTF8-H
cMap/Adobe-GB1/UniGB-UTF16-H
cMap/Adobe-GB1/UniGB-UTF32-H
cMap/Adobe-GB1/UniGB-UTF8-H
cMap/Adobe-Japan1/UniJIS-UTF16-H
cMap/Adobe-Japan1/UniJIS-UTF32-H
cMap/Adobe-Japan1/UniJIS-UTF8-H
cMap/Adobe-Japan1/UniJIS2004-UTF16-H
cMap/Adobe-Japan1/UniJIS2004-UTF32-H
cMap/Adobe-Japan1/UniJIS2004-UTF8-H
cMap/Adobe-Japan1/UniJISX0213-UTF32-H
cMap/Adobe-Japan1/UniJISX02132004-UTF32-H
cMap/Adobe-Korea1/UniKS-UTF16-H
cMap/Adobe-Korea1/UniKS-UTF32-H
cMap/Adobe-Korea1/UniKS-UTF8-H
2010-12-02 12:43:10 +00:00
drochner
4e29fd3977 -catch up with the ghostscript font changes a while ago
-update to 2.12.3
 changes:
 -MacOSX GUI fixes
 -bugfixes
2010-12-01 19:39:29 +00:00
minskim
f745df20bf Add tex-xargs{,-doc}. 2010-11-29 19:35:47 +00:00
minskim
016593e1bd Import tex-xargs-doc-1.1 as print/tex-xargs-doc.
This is documentation for tex-xargs.
2010-11-29 19:34:49 +00:00
minskim
d3765db18b Import tex-xargs-1.1 as print/tex-xargs.
The package provides extended versions of \newcommand and related LaTeX
commands, which allow easy and robust definition of macros with many
optional arguments, using a clear and simple xkeyval-style syntax.
2010-11-29 19:34:41 +00:00
drochner
9a1b306004 update to 1.1.4
changes:
-Improved the reporting of files that are the same
2010-11-29 18:42:39 +00:00
obache
d9558bce3d Update ruby-gnome2 packages to 0.90.5.
== Ruby-GNOME2 0.90.5: 2010-10-28

NOTE: 0.90.x releases are for 1.0.0 major release.

A build system improvements release.

=== Changes

==== All

  * Improvements
    * add --with-pkg-config-dir option to extconf.rb for *.pc.

==== Ruby/GLib2

  * Improvements
    * glib-mkenums.rb can work with Ruby 1.9 on LANG=C.
      [Kouhei Sutou]

  * Bug fixes
    * fix pkg-config gem dependency.
      [Kouhei Sutou]

== Ruby-GNOME2 0.90.4: 2010-10-24

NOTE: 0.90.x releases are for 1.0.0 major release.

A bug fix release of 0.90.3.

=== Changes

==== Ruby/GLib2

  * Bug fixes
    * add missing '*' for String type conversion. [#3093789]
      [tmtms, Kouhei Sutou]

==== Ruby/GIO2

  * Bug fixes
    * Remove needless cairo dependency.
      [OBATA Akio, Kouhei Sutou]

==== Ruby/Libglade2

  * Improvements
    * Don't install *.pc by default.
      [OBATA Akio, Kouhei Sutou]
2010-11-27 06:14:45 +00:00
drochner
ab1cf4e7a0 bump PKGREV for e-d-s shlib change 2010-11-24 20:20:29 +00:00
tron
6d6217d782 Add Dr. Werner Fink's patch for the vulnerability reported in CVE-2010-2055. 2010-11-23 11:10:15 +00:00
obache
1d8cdf21f9 Update HOMEPAGE. 2010-11-23 06:37:00 +00:00
minskim
1e5d1af504 Update tex-dvips{,-doc} to TeX Live r20445.
Added new font entires: contnav, hans, hans-sh, and mksk.
2010-11-17 19:33:13 +00:00
minskim
9c6c30cf4b Update tex-kpathsea to TeX Live r19875. No change to installed files. 2010-11-17 19:29:03 +00:00
minskim
ae966ad9c5 Make opentype and truetype fonts directories interchangeable. 2010-11-17 19:27:05 +00:00
minskim
6e3c6d8ef3 Update tex-latexconfig to 2010.
- Updated configuration files for LuaTeX.
2010-11-17 19:12:44 +00:00
minskim
391a919eca Update tex-polytable{,-doc} to TeX Live r20331.
- Added missing dependencies.
2010-11-17 17:48:30 +00:00
minskim
23b84a6239 Add tex-lazylist{,-doc}. 2010-11-17 17:46:28 +00:00
minskim
a3ce64fc07 Import tex-lazylist-doc-1.0a as print/tex-lazylist-doc.
This is documentation for tex-lazylist.
2010-11-17 17:45:25 +00:00
minskim
5d63edff36 Import tex-lazylist-1.0a as print/tex-lazylist.
This package provides a pile of lambda-calculus and list-handling
macros of an incredibly obtuse nature. The TUGboat paper serves as a
manual for the macros. This TeX code was formally verified.
2010-11-17 17:45:10 +00:00
minskim
ff9834c60f Update tex-cyrillic to TeX Live r20254.
- Use PDF 1.5.
2010-11-16 17:55:15 +00:00
abs
9987fa4b3a PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnome 2010-11-15 22:56:08 +00:00
minskim
6ab7bb0aa2 Add a missing dependency to tex-hyphen-russian. 2010-11-15 22:25:13 +00:00
minskim
6490aaae4e Add a missing dependency to tex-hyphen-ukrainian. 2010-11-15 21:32:17 +00:00
minskim
22114cb202 Add a missing dependency to tex-ukrhyph. 2010-11-15 21:30:38 +00:00
minskim
3b1d17cb44 Update tex-babel{,-doc} to TeX Live r20253.
- Added missing dependencies to tex-babel.
2010-11-15 17:54:13 +00:00
drochner
c3c21036bf update to 0.14.5
changes: minor fixes
2010-11-15 15:13:20 +00:00
minskim
01dca66bbe Update tex-amsmath{,-doc} to TeX Live r20250.
- Added a license file.
2010-11-14 15:19:41 +00:00
bouyer
d87f440da0 Apply patch from official repository:
- Fixed memory reallocation on bitmap size change. Reallocation is not only
   needed when dimendions and margins change, but also when the color depth
   changes. Fixes bugs #691029 and #691108.
- Fixed arrayoption() macro in cups_put_params() function. Array values did
  not get actually set in cups.header data structure. Bug only showed via
  a compiler warning.
- Silenced compiler warning by presetting c0..c3 in cups_map_cmyk() to zero.

makes my epson USB printer work again with 2010Q3 cups+ghostscript
PKGREVISION++
2010-11-13 17:03:00 +00:00