Commit graph

5590 commits

Author SHA1 Message Date
drochner
e0cd02b6d6 update to 0.24.3
changes: bugfixes, among them a format string problem (CVE-2013-4474)

pkgsrc change: kill the poppler-cms/lcms option, it got broken recently
and it is not useful enough to justify the complexity
2013-10-29 19:05:23 +00:00
joerg
8873e9f488 Missing include. 2013-10-27 21:52:53 +00:00
joerg
6c132dabb1 Don't use -fno-check-new, it is the default behavior of GCC anyway. 2013-10-27 20:38:25 +00:00
joerg
9dd14ee075 Drop -fno-check-new, it is the default. 2013-10-26 15:10:57 +00:00
wiz
1f5f72db38 Remove legacy support that was scheduled for removal. 2013-10-25 06:53:33 +00:00
wiz
4ff222a951 Update to 5.0.1:
2013-10-18  Jay Berkenbilt  <ejb@ql.org>

	* 5.0.1: release

	* Warn when -accessibility=n is specified with a modern encryption
	format (R > 3).  Also, accept this flag (and ignore with warning)
	with 256-bit encryption.  qpdf has always ignored the
	accessibility setting with R > 3, but it previously did so
	silently.

2013-10-05  Jay Berkenbilt  <ejb@ql.org>

	* Replace operator[] in std::string and std::vector with "at" in
	order to get bounds checking.  This reduces the chances that
	incorrect code will result in data exposure or buffer overruns.
	See README.hardening for additional notes.

	* Use cryptographically secure random number generation when
	available.  See additional notes in README.

	* Replace some assert() calls with std::logic_error exceptions.
	Ideally there shouldn't be assert() calls outside of testing.
	This change may make a few more potential code errors in handling
	invalid data recoverable.

	* Security fix: In places where std::vector<T>(size_t) was used,
	either validate that the size parameter is sane or refactor code
	to avoid the need to pre-allocate the vector.  This reduces the
	likelihood of allocating a lot of memory in response to invalid
	data in linearization hint streams.

	* Security fix: sanitize /W array in cross reference stream to
	avoid a potential integer overflow in a multiplication.  It is
	unlikely that any exploits were possible from this bug as
	additional checks were also performed.

	* Security fix: avoid buffer overrun that could be caused by bogus
	data in linearization hint streams.  The incorrect code could only
	be triggered when checking linearization data, which must be
	invoked explicitly.  qpdf does not check linearization data when
	reading or writing linearized files, but the qpdf --check command
	does check linearization data.

	* Security fix: properly handle empty strings in
	QPDF_Name::normalizeName.  The empty string is not a valid name
	and would never be parsed as a name, so there were no known
	conditions where this method could be called with an empty string.

	* Security fix: perform additional argument sanity checks when
	reading bit streams.

	* Security fix: in QUtil::toUTF8, change bounds checking to avoid
	having a pointer point temporarily outside the bounds of an
	array.  Some compiler optimizations could have made the original
	code unsafe.

2013-07-10  Jay Berkenbilt  <ejb@ql.org>

	* 5.0.0: release

	* 4.2.0 turned out to be binary incompatible on some platforms
	even though there were no changes to the public API.  Therefore
	the 4.2.0 release has been withdrawn, and is being replaced with a
	5.0.0 release that acknowledges the ABI change and also removes
	some problematic methods from the public API.

	* Remove methods from public API that were only intended to be
	used by QPDFWriter and really didn't make sense to call from
	anywhere else as they required internal knowledge that only
	QPDFWriter had:
	   - QPDF::getLinearizedParts
	   - QPDF::generateHintStream
	   - QPDF::getObjectStreamData
	   - QPDF::getCompressibleObjGens
	   - QPDF::getCompressibleObjects

2013-07-07  Jay Berkenbilt  <ejb@ql.org>

	* 4.2.0: release [withdrawn]

	* Ignore error case of a stream's decode parameters having invalid
	length when there are no stream filters.

	* qpdf: add --show-npages command-line option, which causes the
	number of pages in the input file to be printed on a line by
	itself.

	* qpdf: allow omission of range in --pages.  If range is omitted
	such that an argument that is supposed to be a range is an invalid
	range and a valid file name, the range of 1-z is assumed.  This
	makes it possible to merge a bunch of files with something like
	qpdf --empty out.pdf --pages *.pdf --

2013-06-15  Jay Berkenbilt  <ejb@ql.org>

	* Handle some additional broken files with missing /ID in trailer
	for encrypted files and with space rather than newline after xref.

2013-06-14  Jay Berkenbilt  <ejb@ql.org>

	* Detect and correct /Outlines dictionary being a direct object
	when linearizing files.  This is not allowed by the spec but has
	been seen in the wild.  Prior to this change, such a file would
	cause an internal error in the linearization code, which assumed
	/Outlines was indirect.

	* Add /Length key to crypt filter dictionary for encrypted files.
	This key is optional, but some version of MacOS reportedly fail to
	open encrypted PDF files without this key.

	* Bug fix: properly handle object stream generation when the
	original file has some compressible objects with generation != 0.

	* Add QPDF::getCompressibleObjGens() and deprecate
	QPDF::getCompressibleObjects(), which had a flaw in its logic.

	* Add new QPDFObjectHandle::getObjGen() method and indiciate in
	comments that its use is favored over getObjectID() and
	getGeneration() for most cases.

	* Add new QPDFObjGen object to represent an object ID/generation
	pair.

2013-04-14  Jay Berkenbilt  <ejb@ql.org>

	* 4.1.0: release

2013-03-25  Jay Berkenbilt  <ejb@ql.org>

	* manual/qpdf-manual.xml: Document the casting policy that is
	followed in qpdf's implementation.

2013-03-11  Jay Berkenbilt  <ejb@ql.org>

	* When creating Windows binary distributions, make sure to only
	copy DLLs of the correct type.  The ensures that the 32-bit
	distributions contain 32-bit DLLs and the 64-bit distributions
	contain 64-bit DLLs.

2013-03-07  Jay Berkenbilt  <ejb@ql.org>

	* Use ./install-sh (already present) instead of "install -c" to
	install executables to fix portability problems against different
	UNIX variants.

2013-03-03  Jay Berkenbilt  <ejb@ql.org>

	* Add protected terminateParsing method to
	QPDFObjectHandle::ParserCallbacks that implementor can call to
	terminate parsing of a content stream.

2013-02-28  Jay Berkenbilt  <ejb@ql.org>

	* Favor fopen_s and strerror_s on MSVC to avoid CRT security
	warnings.  This is useful for people who may want to use qpdf in
	an application that is Windows 8 certified.

	* New method QUtil::safe_fopen to wrap calls to fopen.  This is
	less cumbersome than calling QUtil::fopen_wrapper.

	* Remove all calls to sprintf

	* New method QUtil::int_to_string_base to convert to octal or
	hexademical (or decimal) strings without using sprintf

2013-02-26  Jay Berkenbilt  <ejb@ql.org>

	* Rewrite QUtil::int_to_string and QUtil::double_to_string to
	remove internal length limits but to remain backward compatible
	with the old versions for valid inputs.

2013-02-23  Jay Berkenbilt  <ejb@ql.org>

	* Bug fix: properly handle overridden compressed objects.  When
	caching objects from an object stream, only cache objects that,
	based on the xref table, would actually be resolved into this
	stream.  Prior to this fix, if an object stream A contained an
	object B that was overridden by an appended section of the file,
	qpdf would cache the old value of B if any non-overridden member
	of A was accessed before B.  This commit fixes that bug.

2013-01-31  Jay Berkenbilt  <ejb@ql.org>

	* Do not remove libtool's .la file during the make install step.
	Note to packagers: if your distribution wants to you remove the
	.la file, you will have to do that yourself now.

2013-01-25  Jay Berkenbilt  <ejb@ql.org>

	* New method QUtil::hex_encode to encode binary data as a
	hexadecimal string

	* qpdf --check was exiting with status 0 in some rare cases even
	when errors were found.  It now always exits with one of the
	document error codes (0 for success, 2 for errors, 3 or warnings).

2013-01-24  Jay Berkenbilt  <ejb@ql.org>

	* Make --enable-werror work for MSVC, and generally handle warning
	options better for that compiler.  Warning flags for that compiler
	were previous hard-coded into the build with /WX enabled
	unconditionally.

	* Split warning flags into WFLAGS in autoconf.mk to make them
	easier to override.  Before they were repeated in CFLAGS and
	CXXFLAGS and were commingled with other compiler flags.

	* qpdf --check now does syntactic checks all pages' content
	streams as well as checking overall document structure.  Semantic
	errors are still not checked, and there are no plans to add
	semantic checks.

2013-01-22  Jay Berkenbilt  <ejb@ql.org>

	* Add QPDFObjectHandle::getTypeCode().  This method returns a
	unique integer (enumerated type) value corresponding to the object
	type of the QPDFObjectHandle.  It can be used as an alternative to
	the QPDFObjectHandle::is* methods for type testing, particularly
	where there is a desire to use a switch statement or optimize for
	performance when testing object types.

	* Add QPDFObjectHandle::getTypeName().  This method returns a
	string literal describing the object type.  It is useful for
	testing and debugging.

2013-01-20  Jay Berkenbilt  <ejb@ql.org>

	* Add QPDFObjectHandle::parseContentStream, which parses the
	objects in a content stream and calls handlers in a callback
	class.  The example pdf-parse-content illustrates it use.

	* Add QPDF_Operator and QPDF_InlineImage types along with
	appropriate wrapper methods in QPDFObjectHandle.  These new object
	types are to facilitate content stream parsing.
2013-10-23 09:07:27 +00:00
wiz
bffe518c2e Update to 2.1.3:
2.1.3

- Minor GUI fixes.

- Subtle bug fix by Bryan Huh which _may_ help resolve the bug that
  affects saving when page ranges are in effect.
2013-10-20 21:57:48 +00:00
joerg
6261be68d9 Fix perl use. Bump revision. 2013-10-20 17:56:54 +00:00
joerg
c8290bfe8b Explicitly depend on lcms. 2013-10-20 17:56:26 +00:00
markd
c38b3a5e09 Split out and update various texlive packages from teTeX3-texmf to
separate packages.
2013-10-19 20:43:38 +00:00
adam
63c018902c Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
minskim
643e3897ca Install directories that actually exist in ${WRKSRC} instead of relying
on TEX_TEXMF_DIRS.  No user-visible change.
2013-10-17 07:07:26 +00:00
minskim
819001b117 Replace shebang lines for texlua. 2013-10-17 04:18:30 +00:00
minskim
4a5e53b13e Add a missing dependency. 2013-10-15 09:24:22 +00:00
richard
4d09fbc407 add -lssp for solaris in print/cups for dependant programs 2013-10-14 05:53:17 +00:00
richard
b3ba2b0562 improve cups builtin kerberos support 2013-10-12 06:01:58 +00:00
ryoon
3fba1a52dd Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
wiz
6068eaecf6 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
wiz
ee229dfe7c Update to match 0.16 better. Ride import. 2013-10-09 09:48:22 +00:00
wiz
72036d9269 + py-poppler 2013-10-09 09:21:32 +00:00
wiz
7352c01c77 Import py27-poppler-0.12.1 as print/py-poppler.
Poppler is a PDF rendering library based on the xpdf-3.0 code base.

PyPoppler is a wrapper which exposes the poppler API to the python
world. It is fairly complete, most of the API are covered.

The documentation is actually missing, help wanted :)
2013-10-09 09:21:15 +00:00
wiz
fd2d0f1e5c + py-PDF2 2013-10-09 08:53:25 +00:00
wiz
41e34a4b46 Import py27-PDF2-1.18 as print/py-PDF2.
PyPDF2 is a library for handling PDF files for python.  It is an
enhanced version of pyPdf, supporting more PDF files encountered
in the wild with better error handling.
2013-10-09 08:53:07 +00:00
ryoon
00714bb56c Fix build on OpenBSD 5.3.
* Pass LDFLAGS to gsx build etc.
* Pass -lxcb to LDFLAGS for OpenBSD
2013-10-05 05:13:07 +00:00
wiz
141315b6d5 Update to 0.24.2:
Release 0.24.2
        core:
         * Windows: Fix CreateFile fails with ERROR_SHARING_VIOLATION. Bug #69597

        utils:
         * pdfseparate: improve the path building
         * pdftocairo: check file opening failure in beginDocument()
2013-10-04 21:15:40 +00:00
asau
0f44c26f1a Passing "-ansi" turns "long long" support off on FreeBSD/amd64.
Define __LONG_LONG_SUPPORTED to make the package build.
2013-09-25 23:07:31 +00:00
taca
9fba7bb11f Update ruby-pdf-reader to 1.3.3.
v1.3.3 (7th April 2013)
- various bug fixes
2013-09-15 14:40:58 +00:00
jperkin
466c2e6866 SunOS needs -D__EXTENSIONS__ for realpath(). 2013-09-13 10:16:05 +00:00
schnoebe
b3b2c0eb42 Update to 3.13.9:
Added Support for the Following New Printers:

- HP Designjet Z5400 44-in PostScript ePrinter
- HP Deskjet Ink Advantage 1018 Printer
- HP Deskjet Ink Advantage 1518 All-in-One Printer
- HP Deskjet Ink Advantage 2540 All-in-One Printer Series
- HP Deskjet Ink Advantage 2545 All-in-One Printer
- HP Deskjet Ink Advantage 2546 All-in-One Printer
- HP DeskJet Ink Advantage 4515 e-All-in-One Printer
- HP DeskJet Ink Advantage 4518 e-All-in-One Printer
- HP Envy 4504 e-All-in-One
- HP LaserJet Pro MFP M435nw
- HP Officejet 4630 e-All-in-One
- HP Officejet 4632 e-All-in-One Printer
- HP Officejet 4635 e-All-in-One Printer
- HP OfficeJet Pro 8600 Premium e-AiO N911n
- HP Photosmart 5521 e-All-in-One Printer

Launchpad fixes:

1209339  - HP OfficeJet G55 is not detecting through USB
1209352  - Collate broken under Fedora 19/CUPS-1.6/hplip-3.13.7 as hpps
           sends SET COPIES

Issues fixed:

- Added support for print queue addition using hostname(hp-setup
  <HOSTNAME>)
- Fix for plugin installation and test page in 'hp-setup -i'
2013-09-12 16:12:13 +00:00
joerg
f575e6ef8a Fix format string. Fix error handling. Don't bail out on pointer sign
casts for clang.
2013-09-10 14:41:18 +00:00
adam
1886ec16df Changes 9.10:
* Background printing (BGPrint) is a new feature allowing an accumulated page clist to be rendered by one or more rendering threads whilst the interpreter (in the "main" thread) continues to accumulate the subsequent page's clist. For certain classes of file this can result in a useful performance increase.
* GrayDetection allows suitably written devices to detect "color" input in near neutral tones (i.e. near monochrome) and to convert "on-the-fly" to pure grayscale, whilst retaining the ability to print full color on demand. This is primarily aimed at workflows where saving ink (especially color inks) is required.
* LittleCMS2 and libpng have both been updated to the latest versions.
* Support has been added to build the Ghostscript DLL for WinRT for x86, x64 and ARM (Requires MS Visual Studio 2012 Pro).
* Processing of Windows command line arguments into UTF8 (as presaged a few releases ago) has been enhanced and enabled by default.
* The URW Postscript font set has been updated to the latest version, fixing many compatibility problems with the Adobe fonts.
* Plus the usual round of bug fixes, compatibility changes, and incremental improvements.
2013-09-03 06:39:12 +00:00
adam
d2cb6dec32 Revbump after cairo update 2013-09-02 19:50:38 +00:00
wiz
db950f356e Update to 0.24.1. No shlib version change.
Release 0.24.1
        core:
         * SplashOutputDev: use getRGBLine images if available. Bug #66928
         * SplashOutputDev: Don't copy bitmap if we don't need to.
         * PSOutputDev: Fix regression in -eps -level1sep rendering. Bug #68321
         * Fix crash in malformed file 1026.asan.0.42.pdf
         * use copyString instead of strdup where memory is freed with gfree. Bug #67666

        utils:
         * pdfdetach: don't mention xpdfrc
         * pdftotext: Fix -bbox with stdin as input. Bug #45163
         * pdftohtml: Fix jpeg image export. Bug #48270
         * pdfimages: Fix typos in man page

        glib:
         * demo: Remove GTK_DISABLE_DEPRECATED compilation flag

        qt4:
         * Fix small typo in documentation

        qt5:
         * Fix small typo in documentation
2013-09-02 18:40:42 +00:00
joerg
059e6bff7f Fix fallout from poppler API changes. 2013-08-31 14:54:22 +00:00
wiz
df129d9aa2 + tex-algorithm2e-doc 2013-08-29 08:11:29 +00:00
wiz
42136cb02e Fix grammar for bison-3.0. 2013-08-27 18:43:31 +00:00
tron
476278729a Add "share/texmf-dist/doc/latex/ntheorem/ntheorem.pdf" back to the package
list. It still gets installed and referenced by HTML parts of the
documentation.
2013-08-25 10:50:42 +00:00
jaapb
d69e81f296 committed correct PLIST for tex-algorithmicx-doc. 2013-08-24 17:24:45 +00:00
jaapb
5f1e36cc87 Added tex-algorithmicx-doc package. 2013-08-24 17:23:37 +00:00
jaapb
f863b2233f Added package print/tex-algorithmicx-doc, the documentation for
print/tex-algorithmicx.
2013-08-24 17:22:44 +00:00
jaapb
b9ded0b346 Added tex-algorithmicx subdir. 2013-08-24 17:22:08 +00:00
jaapb
69dde89c13 Added print/tex-algorithmicx, a package for typesetting source code and
pseudo-code algorithms with LaTeX.
2013-08-24 17:19:57 +00:00
schnoebe
232ef7d96f Update to hplip 3.13.8:
Release Notes/Change Log:

HPLIP 3.13.8 - This release has the following changes:
Added Support for the Following New Printers:

- HP Deskjet 1510 All-in-One Printer
- HP Deskjet 1512 All-in-One Printer
- HP Deskjet 1513 All-in-One Printer
- HP Deskjet 2540 All-in-One Printer
- HP Deskjet 2542 All-in-One Printer
- HP Deskjet Ink Advantage 1010 Printer Series
- HP Deskjet Ink Advantage 1015 Printer
- HP Deskjet Ink Advantage 1510 All-in-One Printer Series
- HP Deskjet Ink Advantage 1515 All-in-One Printer
- HP Deskjet Ink Advantage 1516 All-in-One Printer
- HP Deskjet Ink Advantage 3540 e-All-in-One Printer Series
- HP Deskjet Ink Advantage 3545 e-All-in-One Printer
- HP Deskjet Ink Advantage 3546 e-All-in-One Printer

Launchpad fixes:

233393  - Smart install disable popup is coming for HP pen drive and HP
          CD/DVD ROM

Change log:

- Added support for Avahi network printer browsing
- Using SLP protocol by default to browse printer in hp-setup
- Fix for Failing to install libtool package in Fedora 18 during HPLIP
  installation


HPLIP 3.13.7 - This release has the following changes:
Added Support for the Following New Printers:

- HP Deskjet 1010 Printer
- HP Deskjet 1012 Printer
- HP ENVY 5530 e-All-in-One Printer
- HP ENVY 5535 e-All-in-One Printer
- HP Officejet 7610 Wide Format e-All-in-One Printer

Added support for the following new Distro's:

- Debian 7.1
- Fedora 19

Launchpad fixes:

746814  - CVE-2010-4267 Remote Stack Overflow Vulnerability
1195221 - Unable to install plugin for network printer Laserjet 2600n
1197306 - HP laserjet 1020 not printing on Ubuntu12.10 after power cycle
	  the printer
1196335 - HPLIP 3.13.6 stop working after shutting down/rebooting the
	  computer

Issues fixed:

- Unable to launch "Align Cartrides" and "Clean Cartridges" interfaces
  from HP Device Manager
- Lot of debug prints(File Pointer is NULL) are found in syslog even
  when hpLogLevel is not 15
- Updated plugin-reason for HP LaserJet Professional P1607dn Printer
  Series
2013-08-24 16:44:15 +00:00
jaapb
8821e74cc8 Split ntheorem package. Bumped PKGREVISION. 2013-08-24 10:59:49 +00:00
jaapb
f5ccbc59ac Added ntheorem-doc package 2013-08-24 10:59:10 +00:00
jaapb
6554773bd5 Added documentation for tex-ntheorem package 2013-08-24 10:58:18 +00:00
jaapb
829abeb224 Added tex-ntheorem package 2013-08-24 10:58:01 +00:00
jaapb
c6115e09ad Added package print/tex-ntheorem, version 1.31. 2013-08-24 10:57:01 +00:00
adam
c01ba419d9 Changes 9.09:
* Background printing (BGPrint) is a new feature allowing an accumulated page clist to be rendered by one or more rendering threads whilst the interpreter (in the "main" thread) continues to accumulate the subsequent page's clist. For certain classes of file this can result in a useful performance increase.
* GrayDetection allows suitably written devices to detect "color" input in near neutral tones (i.e. near monochrome) and to convert "on-the-fly" to pure grayscale, whilst retaining the ability to print full color on demand. This is primarily aimed at workflows where saving ink (especially color inks) is required.
* LittleCMS2 and libpng have both been updated to the latest versions.
* Support has been added to build the Ghostscript DLL for WinRT for x86, x64 and ARM (Requires MS Visual Studio 2012 Pro).
* Processing of Windows command line arguments into UTF8 (as presaged a few releases ago) has been enhanced and enabled by default.
* The URW Postscript font set has been updated to the latest version, fixing many compatibility problems with the Adobe fonts.
* Plus the usual round of bug fixes, compatibility changes, and incremental improvements.
2013-08-22 21:07:08 +00:00
prlw1
36d0ada6e0 Fix build - reported by wiz@. 2013-08-22 15:06:15 +00:00
prlw1
7c95fa6f13 To quote an earlier commit message:
Recursive revbump because poppler updated its shlib major for a
x.y.z+1 change, again...
2013-08-22 09:21:57 +00:00
prlw1
f8e7427c41 Update poppler to 0.24.0.
Release 0.24.0
  core:
   * TextOutputDev: Do not draw ligatures more than once when
     selected. Bug #9001
   * PSOutputDev: Make some pdftops conversions much faster
   * PSOutputDev: Initialize t3FillColorOnly
   * SplashOutputDev: Fallback to 1x1 bitmap if we fail to create
     the real size

Release 0.23.4
  core:
   * TextOutputDev: clip the selected text rendering to the selection
     box. Bug #66983
   * CairoImageOutputDev: Fix the bounding box of saved images

  build system:
   * Improve linking against pthreads

Release 0.23.3
  core:
   * Annotation improvements
   * Fix crashes on malformed files
   * TextSelectionPainter: Draw glyphs after selection background
   * TextOutputDev: add a method to TextPage to get the selection
     as a list of words

  qt5:
   * Initial Qt5 port

  qt4:
   * Windows compile fixes
   * Demo: Allow the choose the page rotation

  build system:
   * Fix mingw build
   * Minor autotools fixes

Release 0.23.2
  core:
   * SplashOutputDev: Speed-up some tiling on a 10x factor
   * Improve caching of lcms2 ICC color profiles
   * Put some private classes in an anonymous namespace

  qt4:
   * Add a thread stresser tool

  build system:
   * Fix mingw build

Release 0.23.1
  core:
   * XRef stream writing: Write 32-bit offsets when possible
   * Fix splashModeBGR8 rendering (Bug #64381)

  glib:
   * Do not use deprecated gtk_scrolled_window_add_with_viewport()
     (Bug #64683)

  build system:
   * Fix Large file support when using cmake

Release 0.23.0
  core:
   * Make rendering thread safe
   * Large file support
   * Implement Crypt filter (Bug #62800)
   * Fix endstream detection (Bug #62985)
   * CairoOutputDev: support uncolored tiling patterns (Bug #59179)
   * SplashOutputDev: Introduce Thin Line mode support (Bug #37347)

  qt4:
   * Expose Thin Line mode support
2013-08-22 09:11:16 +00:00
joerg
e4ad7ec7fc Fix build with recent giflib. 2013-08-17 11:17:48 +00:00
wiz
4861142f5d Fix build with bison-3.0. 2013-08-16 09:01:48 +00:00
drochner
2766b15190 update to 1.4.3
changes:
The Barcode Writer has been updated and supports many more barcodes,
 including QR.
The Galaxy Gauge# color matching system and color tools have been included.
New color palettes from government agencies (Canada, Germany,
 The Netherlands, United Kingdom) have been included.
More Open Source color palettes have been included.
Improvements to the build system.
Improvements to the Preflight Verifier.
The A4 page size limit of TeX-rendered graphics in Render Frames has been
 removed.
The Short Words plug-in now supports Danish.
Many updates to the Online Manual.
Bugfixes
2013-08-09 11:06:28 +00:00
minskim
90e74a4f58 print/texlive-tetex-format.mk is no longer used. 2013-08-07 00:51:43 +00:00
obache
76f2fd0c00 tell FREETYPE_DIR to cmake.
fixes PR pkg/48087
2013-08-03 11:09:13 +00:00
minskim
95905067c3 Let teTeX-bin use tex-tetex's format.mk instead of texlive-tetex's.
The files required to generate TeX formats were moved from
texlive-tetex to tex-tetex as of TeX Live 2012.
2013-08-02 06:00:00 +00:00
wiz
d041a89e70 Fix build with bison-3.0. 2013-07-31 14:11:57 +00:00
schnoebe
8d2bcc79ae HPLIP 3.13.6 - This release has the following changes:
Added Support for the Following New Printers:

- HP DesignJet T920 Postscript
- HP DesignJet T1500 Postscript
- HP Envy 4500 e-All-in-One
- HP Envy 4502 e-All-in-One

Added support for the following new Distro's:

-LinuxMint 15

Launchpad fixes:

1179433 - cupsext/getPrinter leaks server connection on each call
1179454 - Cannot set filename when scanning with hp-scan from ADF
1186411 - Fix for firmware download during plug and play
1185866 - hp-config_usb_printer hangs in loop
1189333 - Fixed hplip markup documentation errors

Issues fixed:

- Crash happens after removing "lp" group in RHEL6 32bit OS

Deailed Change log:

- Supported CUPS 1.6 IPP Private Structure changes
2013-07-21 15:56:37 +00:00
taca
891809084b Enable ruby200. 2013-07-21 02:50:43 +00:00
wiz
b6d125ee08 Use Mt for email addresses. 2013-07-20 21:50:52 +00:00
joerg
ae557319a8 Regen. 2013-07-17 09:39:36 +00:00
joerg
609739ab94 Merge two patches already upstream:
- use a more compact encoding for reals by dropping trailing zeros after
  the decimal point.
- ensure the BaseFont property of the standard PS fonts is preserved.

Bump revision.
2013-07-16 21:28:43 +00:00
jperkin
b091c2f172 Bump PKGREVISION of all packages which create users, to pick up change of
sysutils/user_* packages.
2013-07-12 10:44:52 +00:00
joerg
89bb40dfb3 Update to Podofo 0.9.2 for various bug fixes and improved encryption
support. Additionally, build shared libraries.
2013-07-05 21:12:45 +00:00
wiz
ef687ae4ad Fixes for building documentation with texinfo-5.x, from Don Armstrong
<don@debian.org>.
2013-07-05 14:51:43 +00:00
ryoon
2193923ba6 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
adam
f9cd38361f Revbump after updating lang/lua to 5.2.2. 2013-07-04 21:27:56 +00:00
wiz
c0250291d6 Reset PKGREVISION for base package update. 2013-07-04 13:14:07 +00:00
wiz
2aade55702 Update to 0.22.5.
Use "lcms" option instead of package-specific "poppler-cms" one.
Add backwards compat for this.

Add comments to most patches.

Changes:

Release 0.22.5
        core:
         * PSOutputDev: Make sure that Title: doesn't contain \n or \r (Bug #63862)
         * Fix slowlyness reading malformed files (Bug #46703)
         * Fix infinite loop while feeding wrong data in stdin (Bug #64967)
         * Fix crash on malformed file (Bug #65221)
         * Fix mismatched delete (Bug #65553)

        qt4:
         * Fix mismatched delete (Bug #65551)

        utils:
         * pdftohtml: Fix memory leak
2013-07-04 13:13:55 +00:00
obache
23fb2bf239 revert `say good-bye to ruby-1.8', it should not be done dureing a freeze. 2013-06-20 09:12:13 +00:00
obache
0e33d4e5ff say good-by to Ruby-1.8. 2013-06-19 13:40:29 +00:00
joerg
81cbdb7ea7 Add explicit operator << for Commands taking File arguments as the
use depends on the intermediate conversion to string, which is not valid
C++.
2013-06-18 20:11:18 +00:00
asau
70e4468953 This package definitly doesn't need Fortran compiler to build. 2013-06-16 23:25:01 +00:00
joerg
a278f46171 std_vector.hh depends on config.hh, so include the latter whenever the
former is used. to_string is part of C++11 STL, so pick the version from
the global namespace whenever it is unclear which one is desired.
2013-06-16 20:46:52 +00:00
obache
7c9a82cc85 Update ruby-gnome2 to 2.0.2.
(whth addition of cairo-gobject, webkit-gtk and webkit-gtk2 binding packages)

== Ruby-GNOME2 2.0.2: 2013-05-26

Windows XP re-supportted release!

=== Changes

==== Ruby/GLib2

  * Improvements
    * Added rbgutil_key_equal() convenient function.
      It is used for comparing key that may be String or Symbol.

==== Ruby/Pango

  * Improvements
    * [windows] Forced to disable uniscribe backend of HarfBuzz.
      [ruby-list:49412] [Reported by Masafumi Yokoyama]
    * Don't define Pango::CairoFcFontMap and Pango::CairoWin32FontMap
      because they may cause crash on OS X.
      [shocker-ja:1119] [Reported by znz]
    * Updated samples.
      [GitHub#164] [Patch by Kentaro Fukuchi]
  * Fixes
    * Fixed wrong index access in Pango::GlyphString#glyphs.
      [ruby-gnome2-devel-ja] [Reported by Kentaro Fukuchi]

=== Thanks

  * Kentaro Fukuchi
  * Masafumi Yokoyama
  * znz

== Ruby-GNOME2 2.0.1: 2013-05-25

Ruby 1.8 support is dropped release!

=== Changes

==== All

  * Improvements
    * Dropped Ruby 1.8 support.
    * Updated bundled binaries versions for Windows.

==== Ruby/Pango

  * Improvements
    * Added Pango::CairoFontMap.set_default.
    * Enabled fontconfig font on Windows.
    * Defined Pango::CairoFcFontMap on init if it is available.
    * Defined Pango::CairoWin32FontMap on init if it is available.

==== Ruby/GTK3

  * Improvements
    * Added Gtk::Image#set_from_icon_set.
      [GitHub#150] [Patch by Detlef Reichl]
    * Added Gtk::Image#set_from_stock.
      [GitHub#150] [Patch by Detlef Reichl]
    * Added Gtk::Image#set_from_gicon.
      [GitHub#150] [Patch by Detlef Reichl]
    * Updated samples.
      [GitHUb#151] [Patch by Detlef Reichl]
  * Fixes
    * Fixed a GC related crash bug.
      [ruby-gnome2-devel-en] [Reported by Detlef Reichl]

==== Ruby/GObjectIntrospection

  * Improvements
    * Supported ownership transfer for some input argument types.
      (Struct and Object)
    * Supported "(out caller-allocates)" for boxed object.
      [ruby-gnome2-devel-ja] [Reported by Kentaro Fukuchi]
    * Supported gpointer in/out.
      [ruby-gnome2-devel-ja] [Reported by NAKAJIMA Takashi]
  * Fixes
    * Fixed missing argument.
      [GitHub#154] [Reported by Masafumi Yokoyama]

==== RubyGStreamer

  * Improvements
    * Supported methods that call callback
      [ruby-gnome2-devel-ja] [Reported by NAKAJIMA Takashi]
    * Updated samples.
      [GitHub#156][GitHub#159][GitHub#160][GitHub#161]
      [Patch by NAKAJIMA Takashi]
    * Supported Gst::Bus#set_handler.
      [ruby-gnome2-devel-ja] [Reported by NAKAJIMA Takashi]
    * Supported Gst::Controller
      [ruby-gnome2-devel-ja] [Suggested by NAKAJIMA Takashi]
    * Stopped to require Gst.init.
  * Fixes
    * Fixed out of index access bug.

==== Ruby/GooCanvas

  * Improvements
    * Migrated to Ruby/GObjectIntrospection based bindings.
    * Stopped to require Goo.init.
  * Fixes
    * Updated samples.
      [GitHub#152][GitHub#153][GitHub#155][GitHub#157]
      [Patch by Masafumi Yokoyama]

==== Ruby/Clutter

  * Improvements
    * Stopped to require Clutter.init.
  * Fixes
    * Fixed broken samples.
      [ruby-gnome2-devel-ja] [Patch by Kentaro Fukuchi]

==== Ruby/ClutterGtk

  * Improvements
    * Stopped to require ClutterGtk.init.

==== Ruby/ClutterGStreamer

  * Added.

==== Ruby/WebKitGtk

  * Improvements
    * Stopped to require WebKitGtk.init.

==== Ruby/WebKitGtk2

  * Improvements
    * Stopped to require WebKitGtk2.init.

=== Thanks

  * Detlef Reichl
  * NAKAJIMA Takashi
  * Masafumi Yokoyama
  * Kentaro Fukuchi
2013-06-15 09:39:33 +00:00
wiz
220e245fa7 Remove GNU_CONFIGURE_LIBDIR.
Rationale: undocumented, easily replaced with "CONFIGURE_ARGS+=--libdir="
and only used by 10 packages.
2013-06-12 12:35:35 +00:00
ryoon
5a25bc59af Update to 1.6.6
* Remove obsolete patch (already in upstrem).
* Update HOMEPAGE.

Changelog:
Summary of changes in enscript version 1.6.6:

* Add afm/MustRead.html, containing licensing information for Adobe
  AFM files.  (Savannah bug #35883)

* Sync all translations from the Translation Project.  Please visit
  http://translationproject.org/ to help translate Enscript!

* Add documented but missing '-w' option as an alias for '--language'.
  (Savannah bug #30651)

* Apply sliceprint patch from Debian. (Savannah bug #31259)
2013-06-09 08:26:48 +00:00
wiz
e0b49a2fed Bump PKGREVISION for libXft changes for NetBSD native X support on
NetBSD 6, requested by tron.
2013-06-06 12:53:40 +00:00
tron
a36fb86593 Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:
Recursively bump package revisions again after the "freetype2" and
"fontconfig" handling was fixed.
2013-06-04 22:15:37 +00:00
wiz
53745b22ea Bump freetype2 and fontconfig dependencies to current pkgsrc versions,
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.

While doing that, also bump freetype2 dependency to current pkgsrc
version.

Suggested by tron in PR 47882
2013-06-03 10:05:17 +00:00
wiz
d2ca14a3f1 Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
2013-05-31 12:39:57 +00:00
wiz
2c8f1b3a15 Recursive revbump because poppler updated its shlib major for a
x.y.z+1 change, again...

Noted by tron.
2013-05-29 22:13:16 +00:00
schnoebe
8cb317ad45 HPLIP 3.13.5 - This release has the following changes:
Added Support for the Following New Printers:

- HP LaserJet Enterprise MFP M725 series
- HP LaserJet Enterprise MFP M725dn
- HP LaserJet Enterprise MFP M725fw
- HP LaserJet Enterprise MFP M725z
- HP LaserJet Enterprise MFP M725z+
- HP Officejet Pro 3610 Black and White e-All-in-One
- HP Officejet Pro 3620 Black and White e-All-in-One

Launchpad fixes:
1176470 - hp-setup fails with the message "ethernet cable is plugged in"
	- But it isn't
1157701 - soapfax.py:139:setStationName:UnicodeEncodeError: 'ascii'
	  codec can't encode characters in position 0-3: ordinal not in
	  range(128)
1163339 - hplip online documentation: manual tarball installation shows
	  package dependancies which are out-of-date

Issues fixed:
- Bottom margin is not printing on 8.5x13in paper size for DeskJet 2050
  J510 device
- Fixed cross resolution issue for pcl3gui2

Detailed Change Log:
- Added 56-hpmud.rules and removed 56-hpmud_support, 86-hpmud_plugin,
  56-hpmud_add_printer, 55-hpmud and 40-hplip rules
- Added hplip-printer@.service to support systemd services in Udev for
  OpenSuSe 12.3
2013-05-26 00:43:23 +00:00
wiz
60858cd971 Update to 0.22.4:
Release 0.22.4
        core:
         * Always consider a softmask transfer function (Bug #63587)
         * Fix crash on malformed files (Bug #63190)
         * Splash: Fix compilation with fixed point mode enabled

        utils:
         * Fix crash on some files (Bug #63909)

        qt4:
         * Fix name decoding of some attachments (KDE Bug #307786)

        build system:
         * Fix compilation with mingw-w64 compiler
2013-05-25 14:44:48 +00:00
wiz
b96a5e5ce3 Bump PKGREVISION for libproxy shlib major bump. 2013-05-24 18:23:32 +00:00
obache
c69fbbe528 Update acroread9 to 9.5.5 for APSB13-15. 2013-05-24 13:11:08 +00:00
markd
597b18e07e Update to KDE SC 4.10.3
bugfixes.
2013-05-21 12:49:28 +00:00
wiz
244b398574 Fix previous. 2013-05-19 18:58:50 +00:00
shattered
5dd6a8dcee Update to 3.08. Changes:
Fixed handling of --ignore-warnings and --ignore-errors so that these
are now required to process files with warnings or errors.

Added --test-eps making a partial test of EPS compliance.

Added --dump for displaying summary of DSC information.
2013-05-18 20:50:36 +00:00
wiz
412190fc17 Fix packaging bug in dbus option. 2013-05-15 14:57:35 +00:00
riastradh
93d348c3a2 Make dbus and gnome-keyring options (default enabled) in print/evince3. 2013-05-11 20:47:15 +00:00
joerg
8d7098b5ab Add missing include. 2013-05-09 14:01:43 +00:00
jperkin
75af9b3ff1 Don't create backup files. 2013-05-09 09:38:19 +00:00
adam
1ab43a036f Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu. 2013-05-09 07:39:04 +00:00
obache
8eac9db9a9 Update ruby-gnome2 to 2.0.0.
GObject Introspection based bindings on Windows support release!

=== Changes

==== NEWS

  * Fixes
    * Fixed a typo. [Reported by Masafumi Yokoyama]
    * FIxed a typo. [Reported by Toyo Abe]

==== Ruby/GLib2

  * Improvements
    * Moved lib/gnome2-*.rb files to lib/gnome2/ directory.
    * Supported GLib 2.34. [Reported by OBATA Akio]

==== Ruby/GdkPixbuf2

  * Fixes
    * [windows] Fixed PNG can't be handled problem.
      [ruby-gnoem2-devel-ja] [Reported by Masafumi Yokoyama]

==== Ruby/GDK3

  * Improvements
    * [windows] Removed needless Greybird theme.
      [ruby-gnome2-devel-en] [Reported by Regis d'Aubarede]
    * Added Gdk::Window#create_cairo_context
      [ruby-gnome2-devel-en] [Reported by Detlef Reichl]

==== Ruby/GTK3

  * Improvements
    * Updated samples.
      [GitHub #140][GitHub #141][GitHub #144]
      [Patch by Simon Arnaud]
      [GitHub #142][GitHub #143][GitHub #145][GitHub #146][GitHub #148]
      [Patch by Detlef Reichl]

==== Ruby/GObjectIntrospection

  * Improvements
    * [windows] Supported!

==== Ruby/GStreamer

  * Improvements
    * Supported GStreamer 1.0!
    * Migrated to GObject Introspection bindings!
    * Dropped GStreamer 0.10 support.

==== Ruby/Clutter

  * Improvements
    * [windows] Supported!

==== Ruby/ClutterGTK

  * Improvements
    * [windows] Supported!
2013-05-08 12:47:05 +00:00
joerg
2ff5e5a461 Use STL header, not a forward define. Don't try to build unit tests as
the dependency on cppunit is not present.
2013-05-04 12:51:31 +00:00
obache
73005f1a94 missing recursive bump from poppler-0.22.3 shlib major change. 2013-05-04 08:15:31 +00:00
obache
1a3bece9a8 missing recursive bump from poppler-0.22.3 shlib major change. 2013-05-04 07:19:01 +00:00
markd
5f82e0684d Update to 3.7.4
%%%%%%%%%%%%%%%%%%% GV 3.7.4 (March 2013) %%%%%%%%%%%%%%%%%%%%%%%%%%

# Fixed CVE-2012-3386 (by using updated automake)
# Fixed bug-gv] Problem after saving gv-settings
# improve wording of gv-update-userconfig manual
# Scrolling and memory access improved
# README.I18N adjusted for libXaw3d 1.6.x
# Fixed GNU gv 3.6.4 - 3.7.3 page selector button geometry bug

%%%%%%%%%%%%%%%%%%% GV 3.7.3.90 (March 2012) %%%%%%%%%%%%%%%%%%%%%%%%%%

# Support for libXaw3d-1.6.x
2013-04-30 20:55:48 +00:00
wiz
f300bbc8b7 Update to 0.22.3:
Release 0.22.3
        core:
         * Check order bounding box values in tiling pattern (Bug #62369)
         * CairoImageOutputDev: Don't change image interpolation when printing (Bug #62418)
         * TextOutputDev: Set text matrix when painting selection (Bug #61042)
         * Only write the file once when saving (Bug #62739)
         * Fix for complete rewrites in repaired files
         * Fixlet regarding spec interpretation for Link Zoom value
         * Fix typos in man pages
         * Fix compile when not using libjpeg

        glib:
         * Always start from the beginning when starting a new search on a page (Bug #59972)

        qt4:
         * Fix crash in files with LinkRendition (KDE Bug #317710)

        build system:
         * Small cmake improvements
2013-04-29 09:35:50 +00:00
sbd
6aaf6c005d Remove unused files. 2013-04-25 03:54:24 +00:00
sbd
0da22b5ac9 For all packages include ghostscript.buildlink3.mk:
s/ghostscript.buildlink3.mk/buildlink3.mk/

Bump PKGREVISIONs
2013-04-25 03:53:11 +00:00
sbd
4b3e09cd86 Add print/ghostscript/buildlink3.mk 2013-04-25 03:46:06 +00:00
sbd
d08f598650 Instead of having a DEPENDS+=ghostscript... have USE_TOOLS+=gs:run
Bump PKGREVISION
2013-04-24 10:10:13 +00:00
sbd
87b94069aa Revbump for all packages that have USE_TOOLS+=gs 2013-04-24 10:06:47 +00:00
sbd
e7733a6613 Re-add ghostscript 2013-04-24 09:53:45 +00:00
sbd
6b62476345 Add print/ghostscript meta-package to allow selection of the prefered
ghostscript. i.e: ghostscript-gpl or ghostscript-agpl
2013-04-24 09:52:38 +00:00
sbd
7b6ccbef14 CUPS_SERVERBIN is always "$exec_prefix/libexec/cups" 2013-04-24 06:45:32 +00:00
bsiegert
31868cf850 Do not use -Werror=overloaded-virtual on MirBSD too, fix build 2013-04-23 19:05:14 +00:00
schnoebe
a64db33e53 Update to 3.13.4:
Changes,etc:

HPLIP 3.13.4 - This release has the following changes:
Added Support for the Following New Printers:

- HP Designjet Z5200 44-in PostScript Printer
- HP LaserJet Pro M521dn Multifunction Printer
- HP LaserJet Pro M521dw Multifunction Printer
- HP Officejet Pro 251dw Printer
- HP Officejet Pro 276dw Multifunction Printer

Added support for the following new Distro's:

- Debian 6.0.7
- OpenSuse 12.3

Launchpad fixes:

1132172 - Typo in Webpage "hplip Manual install - su ..."
1153555 - hp-doctor:137:install_plugin:NameError: global name 'sts' is
            not defined
1048114 - toolbox.py crashed with KeyError in
is_auto_installer_support(): 0

Issues fixed:

- The tab name is "Print Settings" instead of "Fax Settings" when fax
  device is selected in "Device Manager"
- Pin to Print support for HP LaserJet Enterprise 500 Color M551
- "Status and Supplies" informations are missing in 'Device Manager' for
  HP LaserJet P3015 Printer
- Envelop paper sizes were missing for HP Photosmart 5510d e-All-in-One
- Scan operation fails with IO error, after Print job for HP Deskjet
  3070 B611 series
- 'hp-levels' command does not give any details about cartridges for HP
  DeskJet 3000 j310 series and HP Deskjet 3050 J610 series
- Error attempting to read r-value(2) is getting displayed in terminal
  when execute 'hp-info' and 'hp-levles' commands
- Extra text is displayed in the option "Output Order" under "Printer
  Settings" tab in "Device Manager"
- Print job can not be launched with 'hp-scan -o ~/test01.jpg
  --printer=PSC_2170_Series' command, after the scan job is completed
- Device IO Error occurs while configuring HP Officejet Pro X451dw
  Printer via WiFi through USB
- Clean functionality from command line and 'Device Manager' supported
  for applicable InkJet devices
- Removed PPD warnings and errors by updating version information and
  constraints

HPLIP 3.13.3 - This release has the following changes:
Added support for the following new Distro's:

- LinuxMint 14

Launchpad fixes:

1131596 - Not able to install HP 3.13.2 plugin
1130272 - hplip-3.13.2 installation stalls
1099853 - Fix use of PIL(Python Imaging Library) to support Pillow

Issues fixed:

- "Device Manager" window disappears after entering wrong password in
  authentication window three times.
- Traceback message appears in terminal when pressed "Ctrl+C" button on
  the keyboard while configuring the device through 'hp-setup'

HPLIP 3.13.2 - This release has the following changes:
Added Support for the Following New Printers:

- HP Officejet Pro X451dw Printer
- HP Officejet Pro X451dn Printer
- HP Officejet Pro X476dn MFP
- HP Officejet Pro X476dw MFP
- HP Officejet Pro X551dw Printer
- HP Officejet Pro X576dw MFP
- HP Officejet 7110 Wide Format ePrinter
- HP LaserJet 400 M401dne

Added support for the following new Distro's:

- Fedora 18

Launchpad fixes:

1084435 - Wrong toner part No.36A shown for LJ Pro P1606dn
1112306 - Under some circumstances HPLIP removes user from all groups
1091567 - upgrade.py crashes if a captive portal is used
1082413 - hplip-3.12.10a prnt/drv/hpijs.drv missing } after LJZjsColor
          definition causing lots of ppds to be incorrectly generated
816763  - Wrong syslog facility for debug messages

Issues fixed:

- Command "hp-scan -m 'lineart'" gives unexpected scanned output with HP
  LaserJet 200 Color MFP M275 device
- Fixed duplicate scanner displays in xsane
- Scan issue fixed in Linuxmint 64bit OS

Detailed Change Log:

- Secure Printing Support for HP LaserJet 5500 and Hp LaserJet 8150
- Updated Media Types for HP Color LaserJet CP5520 Series
2013-04-12 03:47:30 +00:00
drochner
2371c0ca2a update to 1.4.2
changes:
 Documentation updates (including translations)
 Updated UI translations
 Fixes and an enhancement to the Scripter
 Additional build options
 Major and minor bugfixes, ranging from crashes in some corner cases to
  usability improvements

pkgsrc notes:
-the new hunspell based spell checker didn't do anything useful for
 me, still using aspell for now
-enabled cups (hard to diasable, cmake picks it up even if not bl3'd
2013-04-11 11:23:22 +00:00
drochner
9a5f9541e4 update to 4.0.17
changes: bugfixes

pkgsrc note: The namespace problem fixed by patch-b* was reported
upstream: https://bugs.linuxfoundation.org/show_bug.cgi?id=1095
2013-04-10 15:34:02 +00:00
asau
6929b96ca2 Revert pkglint-induced nonsense. 2013-04-08 18:29:37 +00:00
rodent
b65af7be2b Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
rodent
6b46c62d2e Edited DESCR in the case of:
File too long (should be no more than 24 lines).
 Line too long (should be no more than 80 characters).
 Trailing empty lines.
 Trailing white-space.
Trucated the long files as best as possible while preserving the most info
contained in them.
2013-04-07 20:49:31 +00:00
rodent
9e8537cdd2 "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
rodent
942aad2e6a Resolves:
"INFO_FILES should be set to YES or yes."
"Packages that install info files should set INFO_FILES."
Makefile and PLIST warning, respectively.
2013-04-06 20:27:16 +00:00
rodent
315c4801a4 "Packages that install libtool libraries should define USE_LIBTOOL." 2013-04-06 14:22:39 +00:00
rodent
aa1275dbab "This line belongs inside the .ifdef block." 2013-04-06 13:46:33 +00:00
rodent
dea2f05b46 ".for variable names should not contain uppercase letters" 2013-04-06 13:24:18 +00:00
rodent
28c976145a "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable
$$extract_file instead."
2013-04-06 12:03:59 +00:00
markd
fc78e19ad9 Update to 0.4.1
- Web searches: Improved support for user-triggered cancelling
- SpringerLink search: GUI changes, using api.springer.com for search
- PubMed: Limiting search requests per time
- ACM Portal: Retrieving "month", fixing HTTP header
- JSTOR: fixing HTTP header
- Google Scholar: Updates to compensate for changes in Google's web layout;
  handling redirects
- Science Direct: Updates to compensate for changes in Science Direct's web
  layout; handling redirects
- arXiv: Trying to extract bibliographic information from journal strings
- BibSonomy: Specifying number of hits to find
- Web search uses KDE's proxy settings
- Using KDE subsystem to open external files (e.g. PDF files)
- Adding preview for images (in addition to PDF or HTML files); handling
  references to arXiv
- Squeezing long file names in user interface
- Handling quit actions more gracefully
- Improving interface to external programs such as pdflatex
- More robust XSL transformations
- BibTeX import: guessing encoding information left by JabRef, more
  informative debug output, improved handling of multiple fields with same
  name
- Reference preview: supporting dark color schemes
- Fixing sorting in value list
- Fixes in setting color tag to entries
- Fixes in name formatting
- Keeping user interface read-only for read-only use cases
- Numerous bug fixes, closing memory leaks, speed improvements
- Adding testing application for web searches
- Fixes in duplicate merging code: remove fields user doesn't want to keep
2013-04-06 10:45:05 +00:00
rodent
648218e98c 'Please use "${TRUE}" instead of "true".' 2013-04-06 03:59:24 +00:00
rodent
a0a1f2e57c Fixes:
COMMENT should not be longer than 70 characters.
 COMMENT should not begin with 'A'.
 COMMENT should not begin with 'An'.
 COMMENT should not begin with 'a'.
 COMMENT should not end with a period.
 COMMENT should start with a capital letter.

pkglint warnings. Some files also got minor formatting, spelling, and style
corrections.
2013-04-06 03:45:05 +00:00
obache
fcd420f704 Update ruby-gnome2 to 1.2.5.
== Ruby-GNOME2 1.2.5: 2013-03-28

Crash bug fix release!

=== Changes

==== All

  * Fixes
    * Fixed crash bugs.
      [GitHub #138] [Reported by Takuma Nakajima]

=== Thanks

  * Takuma Nakajima

== Ruby-GNOME2 1.2.4: 2013-03-24

Ruby/WebKitGtk2 addition release!

=== Changes

==== All

  * Improvements
    * Start mswin64 support. (But it is not completed yet.)
      [GitHub #135] [Patch by usa]

==== Ruby/GLib2

  * Improvements
    * Reduce needless GBoxed object copy.

==== Ruby/GdkPixbuf2

  * Fixes
    * Fix build error by a typo.

==== Ruby/GtkSourceView2

  * Improvements
    * Support auto RPM install on CentOS 6.

==== Ruby/GObjectIntrospection

  * Improvements
    * Add method name to arguments validation failure message.
    * Support specific version loading.

==== Ruby/GTK3

  * Improvements
    * [windows] Add gschemas.compiled.
      [ruby-talk:406026] [Reported by Regis d'Aubarede]

==== Ruby/WebKitGtk2

  * New!
    [GitHub #136] [Patch by eumario]

=== Thanks

  * usa
  * Regis d'Aubarede
  * eumario
2013-04-04 13:40:24 +00:00
markd
fff108686d remove printer-applet 2013-04-03 10:56:16 +00:00
markd
ea97be746d Update to KDE SC 4.10.2
bugfixes, other quality improvements, new and improved KDE Applications
2013-04-03 10:51:43 +00:00
wiz
c88876181d revbump for libzip shlib major change. 2013-04-01 16:03:48 +00:00
joerg
6b2df6c50c Apply some upstream patches to fix build with Clang. 2013-04-01 12:20:46 +00:00
obache
11942a54c1 missing recursive bump from poppler-0.22.2 shlib major change. 2013-03-31 08:13:27 +00:00
joerg
53b55e2894 Forward declaration must not be qualified with a namespace. Adjust. 2013-03-28 21:43:05 +00:00
spz
42c3e107fd back out previous change: this package belongs to poppler016, not poppler 2013-03-25 07:27:54 +00:00
dsainty
f70ee56bbb The PKG_BUILD_OPTIONS suffix must match the pkgbase. Make it so. 2013-03-24 21:10:50 +00:00
spz
3255617b23 texk/web2c/luatexdir/lua/lepdflib.cc needs one little teak more for
poppler 0.22
2013-03-24 17:00:29 +00:00
spz
524279ea5d poppler-includes and the buildlink3.mk escaped commit with the
poppler 0.20.5 -> 0.22.2 update; fix that
2013-03-24 16:56:26 +00:00
spz
84c515fc07 Fix the following vulnerabilities:
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-1788
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-1789
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-1790
by updating to the latest stable version.

Changes against 0.22.1:
 core:
  * Correct rendering of underline and strike out annotations (Bug #61518)
  * Workaround broken jpeg stream definitions (Bug #61994)
  * SplashOutputDev: Restore CTM on early exits (Bug #61413)
  * SplashOutputDev: Make sure we don't try to paint in x < 0 (KDE Bug #315432)
  * Fix latin page labels. (Bug #61034)
  * Fix compilation with jpeglib9
  * Fix minor valgrind warning

 utils:
  * pdfimages: Fix extraction of some images (Bug #61168)

 build system:
  * Fix the build with automake-1.13

Changes against 0.22.0:
core:
 * Fix crash in some pdf files when extracting text (Bug #59561)
 * Fix crashes in wrongly formed files
 * Fix wrong warning when opening some files (Bug #58966)

build system:
 * Improve autoconf jpeglib.h detection (Bug #59186)

Changes against 0.20 include

Release 0.22.0
core:
 * Fix crash in invalid files that define a <= 0 bits per image value
 * Fix a few issues in JPX decoding when not using OpenJPEG
 * TextOutputDev: Use page size for max value in TextPage::visitSelection
 * Fix typo in error message

utils:
 * Fix pdfunite regression (Bug #58569)
 * Demo fixes and improvements

misc:
 * pdf-inspector improvements

Release 0.21.4
core:
 * SplashOutputDev: Fix crash when rendering in monochrome mode
 * SplashOutputDev: Fix line widths in monochrome mode (Bug #57294)
 * PSOutputDev: Fix crop on EPS conversion (Bug #30692)
 * TextOutputDev: Fix minor logic mistake
 * Fix assert on some malformed files (Bug #58257)
 * Move #include "jpeglib.h" into .cc file (Bug #57687)
 * Filter text that may end up being written to the shell
 * Fix windows compile warnings

glib:
 * Add poppler_annot_set_flags (Bug #58015)
 * Demo fixes and improvements

qt4:
 * Fix check_lexer on 32-bit systems

Release 0.21.3
core:
 * Splash: Implement bilinear image scaling (Bug #22138)
 * CairoOutputDev: Update fill and stroke color in startPage (Bug #54526)
 * Fix GooString::insert()
 * Allow large chars in TextPage
 * Fix crash on ActualText::end
 * Don't use memcpy to copy classes
 * Fix warnings

glib:
 * Check if words end with spaces (Bug #54504)
 * Ensure text is only computed on first render
 * Fix warnings while generating introspection file
 * Fix returns tag in PopplerAttachmentSaveFunc api doc
 * Minor demo fixes

Release 0.21.2
core:
 * CairoOutputDev: make drawImage work with images > 32767 in width/height
(Bug #56858)
 * CairoOutputDev: Fix soft mask when image resolution != smask resolution
(Bug #57070)
 * CairoOutputDev: Fix crash in CairoImageOutputDev with
setSoftMaskFromImageMask (Bug #57067)
 * Remove a check on fonts that we don't need (Bug #56753)
 * Misc code cleanups

utils:
 * pdftocairo: Add tiff output support (Bug #57006)
 * pdfunite: Fix -v (Bug #56817)
 * Misc code cleanups

Release 0.21.1
core:
 * Annotation improvements
 * Form improvements
 * CairoImageOutputDev: Support parameterized Gouraud shading (Bug #56463)
 * UTF validation fixes
 * Do not call drawing routines if we don't need non text (Bug #54617)
 * Fix Memory leak in CharCodeToUnicode (Bug #54702)

qt4:
 * Make LinkRendition properties available (Bug #55378)
 * Accessors for FormWidgetChoice::editChoice
 * Implement overprint

Release 0.21.0
core:
 * Support the modification of files with Encrypt
 * Annotation improvements
 * Form improvements
 * Splash: Implement DeviceN support
 * Splash: Avoid bogus memory error for tilingPattern
 * TextOutputDev: Allow multiple fonts in a TextWord
 * Kill the concept of base dir
 * PSOutputDev: Always write HiResBoundingBox (Bug #53159)
 * Convert UTF-16 to UCS-4 when reading toUnicode cmap
 * GooString formatting: add support for uppercase hexadecimal
 * Use error() instead of fprintf(stderr, ...) in Annot::layoutText
 * poppler-config.h: remove WITH_FONTCONFIGURATION_* macros

glib:
 * Annotation improvements
 * Add poppler_page_remove_annot()
 * Add poppler_document_new_from_stream
 * Add poppler_document_new_from_gfile
 * Add poppler_page_find_text_with_options (Bug #2951)
 * Demo improvements
 * Port tests and demo to GTK+3

qt4:
 * Add accessor methods for movie poster information
 * Make 'additional actions' available in Annotation API (Bug #53589)
 * Add whole-page search method to Poppler::Page
 * Small changes in tests

utils:
 * pdftohtml: Make the output more xhtml compliant
 * pdftohtml: Add -fontfullname. (Bug #49872)
 * pdftohtml: Do not invoke gs anymore

build system:
 * Add the possibility of using lcms1 even if lcms2 is installed
 * Remove extra fontconfig CFLAGS and LIBS
2013-03-24 07:09:23 +00:00
wiz
09aa3388ad Fix typo in CONFIGURE_ARGS, from Richard Palo. 2013-03-17 10:13:09 +00:00
obache
04fabd71d5 ghostscript now only contains Makefile fragment, so commented out. 2013-03-17 08:45:43 +00:00
dholland
31281792d1 Update ghostscript DESCR files, suggested by gdt. 2013-03-17 03:50:49 +00:00
dholland
94bae952ea Removed print/ghostscript; moved to print/ghostscript-agpl. 2013-03-16 23:04:09 +00:00
dholland
0446748a5a Update ghostscript depends. PKGREVISION -> 3 2013-03-16 22:49:06 +00:00
dholland
32ca133b9e Update ghostscript depends. PKGREVISION -> 2 2013-03-16 22:47:15 +00:00
dholland
5e7658d449 Update ghostscript depends; PKGREVISION -> 3 2013-03-16 22:45:45 +00:00
dholland
8938a2d7cf Update ghostscript depends. PKGREVISION -> 8 2013-03-16 22:44:34 +00:00
dholland
0009098164 Update ghostscript depends. 2013-03-16 22:36:55 +00:00
dholland
f703281ad6 Update ghostscript depends. PKGREVISION -> 4. 2013-03-16 22:35:46 +00:00
dholland
225b572b07 Indirection wrapper for the two ghostscript packages. 2013-03-16 22:34:03 +00:00
dholland
9fcedaee11 Add ghostscript-agpl 2013-03-16 22:25:46 +00:00
dholland
055e569fcf Add ghostscript-agpl package, the same as the current print/ghostscript. 2013-03-16 22:25:21 +00:00
dholland
b2d60e6598 +ghostscript-gpl 2013-03-16 21:32:23 +00:00
dholland
3c745dbb39 Copy the pre-update ghostscript 9.05 package as ghostscript-gpl. 2013-03-16 21:32:00 +00:00
obache
12e2253f95 Update ruby-gnome2 to 1.2.2.
== Ruby-GNOME2 1.2.2: 2013-03-11

Ruby 2.0.0 support release!

=== Changes

==== Ruby/GLib2

  * Improvements
    * Supported test on Ruby 2.0.0.
      [GitHub #134] [Reported by mtasaka]

==== Ruby/Poppler

  * Improvements
    * Removed deprecated GDK support.

==== Ruby/GDK3

  * Improvements
    * Supported Ruby 2.0.0.
      [GitHub#129] [Reported by TOMITA Masahiro]

==== Ruby/GObjectIntrospection

  * Improvements
    * Supported not GType based flags.
    * Supported not GType based enum.
    * Supported custom callback function.
    * Supported .h install.
    * Supported .pc install.
    * More Rubyish method names are used.
    * Stopped to raise exception when there are two or more out
      parameters.
    * Added Loader.start_callback_dispatch_thread().
    * Supported arguments validation.
    * Stopped to use array for just one return value.
    * Supported Enumerator.
    * Hide constructor methods.

==== Ruby/GtkSourceView3

  * Fixes
    * Fixed wrong deb package name.

==== Ruby/Clutter

  * Fixes
    * Fixed wrong initialized check.
    * Stopped to override Clutter.init unexpectedly.

==== Ruby/ClutterGTK

  * Fixes
    * Fixed wrong initialized check.

==== Ruby/WebKitGTK

  * Fixes
    * Fixed wrong initialized check.

=== Thanks

  * Vincent Carmona
    (for unreleased GObjectIntrospection based GStreamer bindings)
  * TOMITA Masahiro
  * NAKAJIMA Takashi
    (for unreleased GObjectIntrospection based GStreamer bindings)
  * mtasaka
2013-03-16 12:25:47 +00:00
dholland
8b84a7eaf3 LICENSE update requires version bump. 2013-03-14 05:34:35 +00:00
adam
2adb741eed Change in LICENSE 2013-03-13 09:37:11 +00:00
taca
9b8df77c47 Upate ruby-pdf-reader to 1.3.2.
v1.3.2 (26th February 2013)
- various bug fixes
2013-03-12 13:42:09 +00:00
adam
71b9a69c36 Changes 9.07:
As of this release (9.07), Ghostscript and GhostPDL are distributed under the GNU Affero General Public License (AGPL).

Ghostscript now has the option to be built as thread safe. Note that not all devices are thread safe. See the GS_THREADSAFE option in: GS_THREADSAFE

The pdfwrite devices now supports linearized (or optimized for fast web view) output directly ("-dFastWebView")

The Font API (FAPI) has been moved from the Postscript interpreter (psi) into the graphics library (base), and extended to support the other languages (PCL/PXL/XPS). All interpreters now use Freetype by default to render all viable font types.

Ghostscript has been extended to support Postscript string and array objects with >64k entries.

Ghostscript has been extended to support file sizes >4Gb - in particular reading and writing PDF files. As a side effect of this, Ghostscript also now supports 64 bit Postscript integer objects.

All CMYK devices can now support simulated overprint of spot colors using the "-dSimulateOverprint" command line option.

Support for use of DeviceN ICC color profiles as the output profile with the tiffsep and psdcmyk devices.

Support for customized named color handling with DeviceN colors

Support for black point compensation

Support for K preservation in CMYK to CMYK conversions

Support for DeviceLink profiles for graphic, image and text objects

Support for custom color replacement

Increased control in specifying color conversions as a function of object type

Full details of the color management features can be found in: GS9_Color_Management.pdf

Provide BigTIFF output option: the tiff devices can write BigTIFF files using the "-dUseBigTIFF" option. This requires libtiff version >=4.0.0 (the option is ignored for versions <4.0.0)

LittleCMS updated to 2.4

Plus the usual round of bug fixes, compatibility changes, and incremental improvements.
2013-03-08 20:45:24 +00:00
joerg
af57a664bf Don't add default arguments at implementation time. 2013-03-02 17:58:35 +00:00
ryoon
7635e65606 Update to 0.4
* Add djvulibre-lib and libspectre dependencies.

Changelog:
Release 0.4:
  * Added support for multiple formats.
  * Added format detection using libmagic.
  * Added support for PostScript. Thanks to Alexander Volkov.
  * Added rudimentary support for DjVu.
  * Added support for hyperlinks in DjVu documents. Thanks to Alexander Volkov.
  * Added support for outline and properties of DjVu documents.
  * Added support for UNIX signals.
  * Added missing support for links to external documents.
  * Small improvements to prefetching.
  * Changed presentation view to support rotation, caching and prefetching.
  * Dropped support for storing tabs and bookmarks as XML files.
  * Improved handling of headers and their interdependencies. Thanks to Alexander Volkov.
  * Updated Ukrainian translation. Thanks to Vladimir Smolyar and yurchor.
  * Updated Croatian translation. Thanks to freedomrun.
  * Updated Slovak translation. Thanks to DAG Software.
  * Updated Czech translation. Thanks to Pavel Fric.
  * Updated British English translation. Thanks to Andi Chandler.
  * Updated French translation. Thanks to Hélion du Mas des Bourboux.
  * Updated Polish translation. Thanks to Mateusz Łukasik and Mike08.
  * Updated Brazilian Portguese translation. Thanks to Phillipe Smith.
  * Updated Hebrew translation. Thanks to Yaron Shahrabani.
  * Updated Catalan translation. Thanks to VPablo.
  * Updated Asturian translation. Thanks to Xuacu Saturio.
  * Updated French translation. Thanks to Sylvie Gallet and Tanguy Herrmann.
  * Updated Italian translation. Thanks to Claudio Arseni.
  * Updated Spanish translation. Thanks to Dante Diaz.
  * Updated Russian translation. Thanks to Vladimir Smolyar.
  * Updated Bosnian translation. Thanks to Kenan Dervišević.
  * Added Malay translation. Thanks to abuyop.
2013-02-25 21:36:51 +00:00
obache
bab0f4463f Update acroread9 to 9.5.4 for APSA13-02. 2013-02-23 12:56:16 +00:00
dholland
384132a8a7 Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
wiz
d1b820f37b Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
wiz
5f461dbea7 Recursive bump for png-1.6. 2013-02-16 11:18:48 +00:00
wiz
0602d449ce Recursive bump for png-1.6. 2013-02-16 11:17:56 +00:00
taca
ecada3a5f1 Update ruby-pdf-reader to 1.3.1.
v1.3.1 (12th February 2013)
- various bug fixes
2013-02-13 15:26:12 +00:00
jperkin
e651eaefb1 Don't pull in sys/ucred.h on Solaris as it results in procfs.h being
included and conflicts between _FILE_OFFSET_BITS=64 and 32-bit procfs.
2013-02-12 14:12:19 +00:00
drochner
23d8d8d477 needs libz, doesn't need bash 2013-02-12 12:35:34 +00:00
taca
de0fc45d26 Update ruby-pdf-reader to 1.3.0.
v1.3.0 (30th December 2012)
- Numerous performance optimisations (thanks Alex Dowad)
- Improved text extraction (thanks Nathaniel Madura)
- Load less of the hashery gem to reduce core monkey patches
- various bug fixes
2013-02-11 08:58:50 +00:00
ryoon
9bef86f5fd Bump PKGREVISION from audio/jack. 2013-02-09 22:11:28 +00:00
obache
624d753137 Update ruby-gnome2 to 1.2.1.
(and add gtk3, gdk3, gtksourceview3 and gobject-introspection binding).
based on PR 47529.

== Ruby-GNOME2 1.2.1: 2013-01-30

GTK+ 3 support on Mac OS X release!

=== Changes

==== Ruby/GLib2

  * Improvements
    * Supported custom sudo prompt on auto native package install.
      [GitHub:126] [Suggested by Yorick Peterse]
    * Started to support JRuby. (It is not completed yet.)
      [GitHub:125] [Reported by vpereira]
    * Accepted unsigned long int size GType.
    * Removed DL support.
    * Don't call deprecated g_type_init() for GLib >= 2.35.1.

==== Ruby/GTK2

  * Fixes
    * Fixed a memory leak related Gtk::TreeIter.
      [GitHub:128] [Patch by Toshiaki Asai]

==== Ruby/GTK3

  * Fixes
    * Fixed a memory leak related Gtk::TreeIter.
      [GitHub:128] [Patch by Toshiaki Asai]
    * Fixed a crash bug caused by symbol conflict with Ruby/GDK3 on
      Mac OS X.
      [GitHub:127] [Reported by Sergio Campama] [Helped by Watson]

==== Ruby/GDK3

  * Improvements
    * [windows] Bundled Greybird theme.
      [Suggested by Regis d'Aubarede]

==== Ruby/GooCanvas

  * Improvements
    * Added Goo::Canvas#get_items_at [GitHub:124] [Patch by David Maciejak]

==== Ruby/WebKitGTK

  * Added

==== Ruby/GtkSourceView3

  * Improvements
    * Supported Windows.

=== Thanks

  * David Maciejak
  * Yorick Peterse
  * vpereira
  * Toshiaki Asai
  * Sergio Campama
  * Watson
  * Regis d'Aubarede

== Ruby-GNOME2 1.2.0: 2013-01-24

GTK+ 3 support release!

=== Changes

==== All

  * Added ruby-gtk3 package. Here is a list:
    * Ruby/GLib2
    * Ruby/ATK
    * Ruby/Pango
    * Ruby/GdkPixbuf2
    * Ruby/GDK3
    * Ruby/GTK3

==== Ruby/GLib2

  * Improvements
    * Supported custom VALUE <-> GBoxed conversion
    * Supported VALUE <-> GBoxed conversion by RVAL2GOBJ
    * Added GLib::Source::REMOVE
    * Added GLib::Source::CONTINUE
    * Added rbgobj_make_boxed_raw()
    * Added GLib::Value for internal use
    * [windows] Updated to the latest GLib: 2.28.8-1 -> 2.34.3
  * Changes
    * Removed deprecated GLib::Win32.get_package_installation_directory
    * Removed deprecated GLib::Win32.get_package_installation_subdirectory
    * Added user_data to RGConvertTable callbacks
    * rbgobj_convert_define() copies passed RGConvertTable
    * Removed deprecated G_DEF_FUNDAMENTAL. Use RG_DEF_CONVERSION instead

==== Ruby/GIO2

  * Improvements
    * Installed headers

==== Ruby/ATK

  * Improvements
    * [windows] Updated to the latest ATK: 1.32.0 -> 2.6.0

==== Ruby/Pango

  * Improvements
    * [windows] Updated to the latest Pango: 1.28.3 -> 1.32.6

==== Ruby/GdkPixbuf2

  * Improvements
    * [windows] Updated to the latest gdk-pixbuf: 2.24.0 -> 2.26.5

==== Ruby/GTK2

  * Improvements
    * Removed needless not copy flag from Allocation
    * [windows] Updated to the latest GTK+ 2: 2.24.8 -> 2.24.14

==== Ruby/GDK3

  * Improvements
    * [windows] Supported: 3.6.4

==== Ruby/GTK3

  * Improvements
    * Removed needless not copy flag from Allocation
    * [windows] Supported: 3.6.4

==== Ruby/GObjectIntrospection

  * Improvements
    * Supported over loaded method
    * Supported over loaded constructor
    * Supported GBoxed object
    * Supported char *
    * Supported GInterface
    * Supported CallableInfo
    * Supported may be null
    * Supported union object
    * Supported not GBoxed struct
    * Supported out parameter
    * Supported C array
    * Added "?" suffix to predicate method name
    * Supported SourceFunc callback
    * Supported GValue
    * Added GObjectIntrospection::Loader.register_boxed_class_converter
    * Supported inout parameter
    * Supported binary data array
  * Changes
    * ArgInfo#[] -> ArgInfo#get_arg

==== Ruby/CairoGObject

  * Added

==== Ruby/Clutter

  * Added

==== Ruby/ClutterGtk

  * Added

== Ruby-GNOME2 1.1.9: 2012-12-29

This is a experimental GObjectIntrospection support release.

=== Changes

==== Ruby/GLib2

  * Improvements
    * Renamed G_DEF_CLASS4 to G_DEF_CLASS_WITH_PARENT.
      G_DEF_CLASS4 is still usable but it is deprecated.

==== Ruby/GObjectIntrospection

  * Added. It is still experimental.

== Ruby-GNOME2 1.1.8: 2012-12-19

This is a bug fix release for Ruby 2.0.0.

=== Changes

==== All

  * Fixes
    * Fixed a bug that *.so isn't installed with Ruby 2.0.0.

== Ruby-GNOME2 1.1.7: 2012-12-10

This is a package for Windows fix release.

=== Changes

==== Ruby/GTK2

  * Fixes
    * Bundled GTK+ 2.24.8-1 instead of GTK+ 2.24.10-1.
      [Reported by Mahoro Shimura]

=== Thanks

  * Mahoro Shimura

== Ruby-GNOME2 1.1.6: 2012-12-02

This is Ruby 2.0.0 support release!

=== Changes

==== All

  * Fixes
    * Fixed install error on Ruby 2.0.0.
      [ruby-gnome2-devel-en] Recent Ruby: 'depend' files must be changed
      [Reported by Carlo E. Prelz]

==== Ruby/GLib2

  * Improvements
    * Improved portability a bit. '$,' is used instead of rb_output_fs.
      [GktHub:#117] [Reported by Marvin Gülker]

==== Ruby/GIO2

  * Fixes
    * Fixed a crash bug on i386. [Reported by TAKATSU Tomonari]

==== Ruby/GTK2

  * Improvements
    * Added Gtk::TreeModel#iter_root. [GitHub:121] [Patch by dmaciejak]
    * Added Gtk::TreeModel#iter_next. [GitHub:121] [Patch by dmaciejak]

==== Ruby/GdkPixbuf2

  * Fixes
    * Fixed build errors with old gdk-pixbuf.

==== Ruby/Poppler

  * Improvements
    * Added missing required Poppler version.
      [Suggested by Grant Schoep]
      [ruby-gnome2-devel-en] poppler, build fails, incorrect
      required_pkg_config_package?

  * Fixes
    * Fixed a wrong package name on Red Hat and Fedora.
      [Reported by Grant Schoep]
      [ruby-gnome2-devel-en] poppler, build fails, incorrect
      required_pkg_config_package?

  * Changes
    * Disabled auto Poppler install for Homebrew. It requires
      --with-glib option but auto install with --with-glib option
      isn't supported yet.

==== Ruby/GooCanvas

  * Improvements
    * Added Goo::Canvas#update. [GitHub:119] [Patch by dmaciejak]
    * Added Goo::Canvas#request_update. [GitHub:119] [Patch by dmaciejak]
    * Added Goo::Canvas#convert_from_pixels. [GitHub:123] [Patch by dmaciejak]
    * Added Goo::Canvas#convert_to_pixels. [GitHub:123] [Patch by dmaciejak]
    * Added Goo::Canvas#get_item_at. [GitHub:123] [Patch by dmaciejak]
    * Added Goo::Canvas#bounds. [GitHub:123] [Patch by dmaciejak]

==== Ruby/GStreamer

  * Improvements
    * Don't pass -h and --help to GStreamer.
      [GitHub:#118] [Reported by dmaciejak]

=== Thanks

  * TAKATSU Tomonari
  * dmaciejak
  * Grant Schoep
  * Carlo E. Prelz
  * Marvin Gülker
2013-02-07 13:41:54 +00:00
jperkin
becd113253 PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
wiz
c3bdfa283a Include correct header for putenv to avoid
warning: reference to compatibility putenv(); include <stdlib.h> for correct reference

Addresses PR 47534 by David A. Holland.
2013-02-05 07:54:51 +00:00
jakllsch
1fa53fe694 Apparently we now need to convert BGRA to RGBA. Bump pkgrev.
Backported from upstream, obtained via Debian GNU/Linux.
2013-02-03 20:00:28 +00:00
wiz
e3a5b73fbe + qpdf. 2013-01-31 21:45:38 +00:00
wiz
55b17cd6de Import qpdf-4.0.1 as print/qpdf, packaged by dillo@.
QPDF is a command-line program that does structural, content-preserving
transformations on PDF files.  It could have been called something
like pdf-to-pdf. It also provides many useful capabilities to
developers of PDF-producing software or for people who just want
to look at the innards of a PDF file to learn more about how they
work.

QPDF is capable of creating linearized (also known as web-optimized)
files and encrypted files. It is also capable of converting PDF
files with object streams (also known as compressed objects) to
files with no compressed objects or to generate object streams from
files that don't have them (or even those that already do). QPDF
also supports a special mode designed to allow you to edit the
content of PDF files in a text editor. For more details, please
see the documentation links below.

QPDF includes support for merging and splitting PDFs through the
ability to copy objects from one PDF file into another and to
manipulate the list of pages in a PDF file. The QPDF library also
makes it possible for you to create PDF files from scratch. In this
mode, you are responsible for supplying all the contents of the
file, while the QPDF library takes care off all the syntactical
representation of the objects, creation of cross references tables
and, if you use them, object streams, encryption, linearization,
and other syntactic details.

QPDF is not a PDF content creation library, a PDF viewer, or a
program capable of converting PDF into other formats. In particular,
QPDF knows nothing about the semantics of PDF content streams. If
you are looking for something that can do that, you should look
elsewhere. However, once you have a valid PDF file, QPDF can be
used to transform that file in ways perhaps your original PDF
creation can't handle. For example, programs generate simple PDF
files but can't password-protect them, web-optimize them, or perform
other transformations of that type.
2013-01-31 21:45:23 +00:00
wiz
b83ccab3e4 Update to 2.1.2:
2.1.2

- Minor GUI bug fixes.

- Minor translation fixes.

- Updated copyright year.
2013-01-29 06:12:56 +00:00
schnoebe
46c0b784af Update to 3.12.11:
Significant Changes:
  - RHEL5 supported with hpcups

Added Support for the Following New Printers:
  - HP LaserJet Pro 500 color MFP M570dw
  - HP LaserJet Pro 500 color MFP M570dn
  - HP LaserJet Enterprise flow MFP M525
  - HP LaserJet Enterprise color flow MFP M575
  - HP LaserJet Enterprise 700 M712n
  - HP LaserJet Enterprise 700 M712dn
  - HP LaserJet Enterprise 700 M712xh
  - HP LaserJet Enterprise 700 color MFP M775dn
  - HP LaserJet Enterprise 700 color MFP M775f
  - HP LaserJet Enterprise 700 color MFP M775z
  - HP LaserJet Enterprise 700 color MFP M775z+


Added support for the following new Distro's:
  - Ubuntu 12.10
  - Debian 6.0.6

Launchpad fixes:
  1073650 - musb.c:get_interface() doesn't check return value of
  libusb_get_config_descriptor()
  1070758 - can't run hp-check without GUI
  1048754 - HP Setup crashes with ValueError
  1067697 - manual  of hp-check mentions '--runtime' option
  1067689 - 'hp-check -r' starts HPLIP status service (hp-systray)
  1064107 - CUPSEXT could not be loaded
  1066235 - 'hp-check' does not find installed XSane
  1065582 - Cannot add a parallel printer


Issues fixed:
  - Delay in status display on USB connection for certain classes of
    devices
  - Secure Printing support for HP LaserJet P3010 Series

Detailed Change Log:
  - Job storage support with postscript finishing filter
2013-01-27 05:25:02 +00:00
adam
f4c3b89da7 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
wiz
398007f10b Update to 2.16.2. Comment patches.
Fixes and changes after 2.16.0
==============================

2.16.1
     Please refer to the bug tracker for issues fixed in 2.16.1
     (http://code.google.com/p/lilypond/issues/list?can=1&q=Fixed_2_16_1).

New features in 2.16 since 2.14
===============================

   * Support for cross-staff stems on chords, using `crossStaff' and
     the `Span_stem_engraver'.  This calculates the length of
     cross-staff stems automatically.

   * The syntax of words (character sequences recognized without
     enclosing quotes) and commands (now always a backslash `\'
     followed by a word) has been unified across all modes: it now
     consists of alphabetic characters, possibly enclosing isolated
     dashes `-' and underlines `_'.

     As one consequence, using unquoted text scripts like (literally!)
          { c-script c\f_script }
     will now tend to result in invalid music.  Omitting quote marks
     for arbitrary text rather than keywords has never been good
     practice or even documented, and it is unlikely to have seen
     significant use.

     Staying with established conventions (like not using dashes or
     underlines for command names intended to be used inside of music)
     remains advisable.  The reason for this change is more robust
     recognition of LilyPond's lexical units for LilyPond itself as
     well as external tools interpreting its syntax.

   * Support for Kievan square notation:

          \new KievanVoice {
            \cadenzaOn
            c d e f g a bes
            \bar "kievan"
          }

   * Augmentation dots now avoid the other voice in two-voice polyphony
     so that users can move the `Dot_column_engraver' to set dots
     independently for each `Voice'.

   * A Scheme function to adjust the control points of curves such as
     slurs and ties, developed by several users, is now included in
     LilyPond.

          g8->( bes,-.) d4
          \shape Slur #'((-0.5 . 1.5) (-3 . 0) (0 . 0) (0 . 0))
          g8->( bes,!-.) d4

   * Use of `\tempo' specifications in `\midi' blocks (removed in
     2.9.16 in favor of explicit `tempoWholesPerMinute' settings) has
     seen a revival: now any kind of property-setting music is turned
     into context definitions within output specifications, allowing for
     declarations like
     \layout { \accidentalStyle modern }
     \midi { \tempo 4. = 66 }

   * The LilyPond G clef has been redesigned - upper loop is now more
     balanced, bottom crook sticks out less and the "spine" (main
     vertical line) is more evenly curved. The old and new versions can
     be compared by looking at the documentation: old version
     (http://lilypond.org/doc/v2.14/Documentation/notation/the-feta-font.html#clef-glyphs),
     new version
     (http://lilypond.org/doc/v2.15/Documentation/notation/the-feta-font.html#clef-glyphs).

   * Lilypond's stencil commands have been simplified to allow for less
     code duplication and better height approximations of graphical
     objects.  The following stencil commands have been eliminated:
        * `beam'

        * `bezier-sandwich'

        * `bracket'

        * `dashed-slur'

        * `dot'

        * `oval'

        * `repeat-slash'

        * `zigzag-line'

   * Flags are now treated as separate objects rather than as stem
     parts.

   * Two alternative methods for bar numbering can be set, especially
     for when using repeated music;

   * The following is a fundamental change in LilyPond's music
     representation: Rhythmic events like `LyricEvent' and `NoteEvent'
     are no longer wrapped in `EventChord' unless they have been
     actually entered as part of a chord in the input.  If you
     manipulate music expressions in Scheme, the new behavior may
     require changes in your code.  Calling the music function
     `\eventChords' or the Scheme function `event-chord-wrap!'
     converts to the old representation; using one of those might be
     easiest for keeping legacy code operative.

     The following three items are consequences of this change.

   * The repetitive chord entry aid `q' has been reimplemented.
     Repeated chords are now replaced right before interpreting a music
     expression.  In case the user wants to retain some events of the
     original chord, he can run the repeat chord replacement function
     `\chordRepeats' manually.

   * String numbers and right hand fingerings on single notes now appear
     without having to be written inside of chord brackets.

   * Music functions now work the same when used inside or outside of
     chords, including all the possibilities of argument parsing.
     Music variables can be used inside of chords: a construct like

          tonic=fis'
          { <\tonic \transpose c g \tonic> }

     now works as expected.  One can use `#{...#}' for constructing
     chord constituents.  `\tweak' now works on single notes without
     needing to wrap them in a chord.  Using it on command events and
     lyrics is now possible, but not likely to give results yet.

   * `\tweak' now takes an optional layout object specification.  It can
     be used for tweaking layout objects that are only indirectly
     caused by the tweaked event, like accidentals, stems, and flags:

          <\tweak Accidental #'color #red   cis4
           \tweak Accidental #'color #green es
                                            g>

   * Scheme expressions inside of embedded Lilypond (`#{...#}') are now
     executed in lexical closure of the surrounding Scheme code.  `$'
     is no longer special in embedded Lilypond.  It can be used
     unconditionally in Lilypond code for immediate evaluation of Scheme
     expressions, similar to how `ly:export' could previously be used.
     `ly:export' has been removed.  As a consequence, `#' is now free
     to delay evaluation of its argument until the parser actually
     reduces the containing expression, greatly reducing the potential
     for premature evaluation.  There are also `splicing' operators `$@'
     and `#@' for interpreting the members of a list individually.

   * To reduce the necessity for using `$', Scheme expressions written
     with `#' are interpreted as music inside of music lists, and as
     markups or markup lists inside of markups.

   * Support for jazz-like chords has been improved: Lydian and altered
     chords are recognised; separators between chord modifiers are now
     treated independently of separators between "slash" chords and
     their bass notes (and by default, slashes are now only used for
     the latter type of separator); additional pitches are no longer
     prefixed with "add" by default; and the "m" in minor chords can be
     customized.  *note Customizing chord names:
     (lilypond-notation)Customizing chord names. for more information.

   * The `\markuplines' command has been renamed to `\markuplist' for a
     better match with its semantics and general Lilypond nomenclature.

   * The interface for specifying string tunings in tablature has been
     simplified considerably and employs the scheme function
     `\stringTuning' for most purposes.

   * Beams can now have their slopes preserved over line breaks.

     To do this, several callback functions are now deprecated.
        * `ly:beam::calc-least-squares-positions'

        * `ly:beam::slope-damping'

        * `ly:beam::shift-region-to-valid'
     Furthermore, `ly:beam::quanting' now takes an additional argument
     to help calculations over line breaks.  All of these functions are
     now automatically called when setting the `positions' parameter.

   * In function arguments music, markups and Scheme expressions (as
     well as several other syntactic entities) have become mostly
     interchangeable and are told apart only by evaluating the
     respective predicate.  In several cases, the predicate is
     consulted by the parser, like when deciding whether to interpret
     `-3' as a number or a fingering event.

   * Music functions (and their close relatives) can now be defined with
     optional arguments.

   * For defining commands executed only for their side-effects,
     `define-void-function' is now available.

   * There is a new `define-event-function' command in analogy to
     `define-music-function' that can be used for defining music
     functions acting as post events without requiring a direction
     specifier (`-', `^', or `_') placed before them.

          dyn=#(define-event-function (parser location arg) (markup?)
                   (make-dynamic-script arg))
          \relative c' { c\dyn pfsss }

   * A list of ASCII aliases for special characters can be included.

          \paper {
            #(include-special-characters)
          }
          \markup "&bull; &dagger; &copyright; &OE; &ss; &para;"

   * There is a new `define-scheme-function' command in analogy to
     `define-music-function' that can be used to define functions
     evaluating to Scheme expressions while accepting arguments in
     Lilypond syntax.

   * The construct `#{ ... #}' can now be used not just for
     constructing sequential music lists, but also for pitches
     (distinguished from single note events by the absence of a
     duration or other information that can't be part of a pitch),
     single music events, void music expressions, post events, markups
     (mostly freeing users from having to use the `markup' macro),
     markup lists, number expressions, context definitions and
     modifications, and a few other things.  If it encloses nothing or
     only a single music event, it no longer returns a sequential music
     list but rather a void music expression or just the music event
     itself, respectively.

   * Pitches can be used on the right side of assignments.  They are
     distinguished from single note events by the absence of a duration
     or other information that can't be part of a pitch.

   * New command-line option `--loglevel=LEVEL' to control how much
     output LilyPond creates. Possible values are ERROR, WARN,
     BASIC_PROGRESS, PROGRESS, DEBUG.

   * `\once \set' now correctly resets the property value to the
     previous value.

   * The alignment of dynamic spanners (hairpins, text crescendo, etc.)
     is now automatically broken if a different direction is explicitly
     given.

   * Appoggiaturas and acciaccaturas now also work inside a slur, not
     only inside a phrasing slur. Also, a function `\slashedGrace' was
     added that does not use a slur from the acciaccatura note.

   * To suppress the line on a crescendo text spanner (and other
     similar spanners), LilyPond now fully supports the `#'style =
     #'none' property.

   * LilyPond.app now supports MacOS X 10.7, thanks Christian Hitz!

   * Glissandi can now span multiple lines.
2013-01-25 11:32:07 +00:00
mef
e709acba40 News since 11.87
================

   * AUCTeX now supports Biber in conjunction with biblatex in addition
     to BibTeX.

   * Each AUCTeX mode now has its own abbrev table.  On Emacsen which
     provide the possibility to inherit abbrevs from other tables, the
     abbrevs from the Text mode abbrev table are available as well.
     Newly defined abbrevs are written to the mode-specific tables,
     though.

   * The file `tex-fptex.el' was removed.

   * Forward/backward search for Evince has been improved.  If Emacs is
     compiled with DBUS support and a recent Evince version (3.x) is
     installed, the communication goes over the desktop bus instead of
     the command line, resulting in more accurate positioning of point
     in Emacs and highlighting of the target paragraph in Evince.

   * A problem where Ghostscript threw an /invalidfileaccess error when
     running preview-latex was fixed.

   * A lot of smaller fixes and additions have been made.
2013-01-23 08:58:29 +00:00
mef
9076f03ebe Changes to fix Can't locate flush.pl in @INC ( .... based on PR pkg/47484
with patches/patch-ab,  and some more as (3) and (4):
(1) Add patch-ab to eliminate old-fashioned flush.pl which causes
   error as:
   Can't locate flush.pl in @INC ( ....

(2) patch-ab also includes:
  - Eliminate old-fashioned call of ctime.pl
  - Eliminate non-supported '$#'
  - Rename 'sub date' to be more specific name 'sub a2ps_date'
   This patch is derived from
     http://trac.macports.com/changeset/86539

(3) Add comment on patch-aa from cvs log.

(4) Add LICENSE=mit.
2013-01-22 10:18:41 +00:00
riastradh
a20589ae98 Add some options to print/evince.
Been sitting on this patch for ages.  No objection in PR pkg/44541.
2013-01-20 00:52:18 +00:00
joerg
899186a326 Do not add default arguments at implementation time. 2013-01-17 16:02:17 +00:00
obache
5078853035 Update acroread9 to 9.5.3.
9.5.3
This release provides mitigations for vulnerabilities described in the security
bulletin at http://www.adobe.com/go/apsb13-02.

9.5.2:
This release provides mitigations for vulnerabilities described in the security
bulletin at http://www.adobe.com/go/apsb12-16.
2013-01-16 11:41:29 +00:00
joerg
d4ff19682b Linker flags must be prefixed with -Wl. Don't add default arguments
during method implementation.
2013-01-15 15:28:37 +00:00
minskim
522c121273 Add tex-textcase{,-doc}. 2013-01-14 00:26:18 +00:00
minskim
ea3d1a80c4 Import tex-textcase-doc-0.07 as print/tex-textcase-doc.
Packaged by Patrick Welche and modified by me.

This is documentation for tex-textcase.
2013-01-14 00:23:32 +00:00
minskim
dc7626abea Import tex-textcase-0.07 as print/tex-textcase.
Packaged by Patrick Welche and modified by me.

The textcase package offers commands \MakeTextUppercase and
\MakeTextLowercase are similar to the standard \MakeUppercase
and \MakeLowercase, but they do not change the case of any
sections of mathematics, or the arguments of \cite, \label and
\ref commands within the argument. A further command
\NoCaseChange does nothing but suppress case change within its
argument, so to force uppercase of a section including an
environment, one might say:
\MakeTextUppercase{...\NoCaseChange{\begin{foo}}
...\NoCaseChange{\end{foo}}...}
2013-01-14 00:23:00 +00:00
joerg
f4668fe08d Prefer gzcat + plain tar over gtar. Honour CFLAGS. 2013-01-11 23:29:39 +00:00
gdt
71ade90e86 Move LICENSE/RESTRICTED to Makefile.common.
The root of the issue is the distfile, which is shared via
Makefile.common, so the license variables belong together.
2013-01-06 13:39:12 +00:00
gdt
5030137f97 Set LICENSE and NO_*_ON_*; PKGREVISION++.
This uses the pdflib distfile, so it inherits the treatment.
(Perhaps these lines should have been set in Makefile.common.)
2013-01-06 13:35:18 +00:00
gdt
03d53625b1 Revbump for NO_*_ON_* change. 2013-01-05 13:34:31 +00:00
gdt
29dacc4b45 Revbump for NO_*_ON_* change. 2013-01-05 13:34:15 +00:00
gdt
45156739e5 Add LICENSE=, set NO_*_ON_*.
The licensing for this package is unclear.  In particular, it appears
to contain an embedded copy of pdflib.  Mark it non-redistributable
until someone analyzes and addresses the issues.
2013-01-05 00:35:32 +00:00
gdt
c27870147e LICENSE=, RESTRICTED=, set NO_*_ON_*.
The license is only available as a pdf, and I decline to extract and
check in text.

This license is clearly non-Free, and no permission is granted to
distribute source or binaries, so set NO_*_ON_*.

Fixes PR pkg/43210.
2013-01-05 00:34:11 +00:00
wiz
ea47d0cd01 Add missing pkg-config dependency. 2013-01-04 21:42:42 +00:00
ryoon
432553d58b Add qpdfview 2013-01-03 13:39:41 +00:00
ryoon
3c7ab827f2 Import qpdfview-0.3.7 as print/qpdfview.
qpdfview uses the Poppler library for rendering and CUPS for
printing. It provides a clear and simple graphical user interface
using the Qt framework.

Current features include:
* Outline, properties and thumbnail panes
* Scale, rotate and fit
* Fullscreen and presentation views
* Continuous and multiple-page layouts
* Search for text
* Configurable tool bars
* Persistent per-file settings
* SyncTeX support
* Rudimentary annotation support (with Poppler version 0.20.1 or higher)
* Rudimentary form support
2013-01-03 13:38:55 +00:00
ryoon
9247d614c0 Add electrix 2013-01-03 13:35:06 +00:00
ryoon
449bb99988 Import electrix-0.2.0 as print/electrix.
eLectrix is an application to view Portable Document Format (PDF)
files. It also has optional support for the PostScript (PS) format.
2013-01-03 13:34:14 +00:00
obache
c6251e1d7f avoid to overwrite `libarchive.pc' from buildlink.
PR 47279.
2012-12-30 08:09:20 +00:00
wiz
e7447b0e50 Disable compiler version check in configure.
This way, the build progresses to a clang error.

When looking at this, consider upgrading the package to 2.16 first, perhaps
it's already fixed there.
2012-12-25 15:30:14 +00:00
dholland
630aef79d4 Don't ignore errors when building. This finally reveals what the build
problem really is: "File not found: quickref.mx1"
2012-12-24 05:17:51 +00:00
dholland
6ae5f15285 Uncomment LICENSE. 2012-12-24 01:51:20 +00:00
dholland
a1cca7de1d Fix LP64 problems and patch up some other stuff that appeared while
doing so.
2012-12-24 01:50:57 +00:00
dholland
32fefe5cd5 Remove quite a bit of pkglint. 2012-12-24 00:56:19 +00:00
dholland
cef578e578 Don't hardwire /usr/pkg. 2012-12-24 00:54:05 +00:00
dholland
31a5135b76 Disable this package on ruby18; it does not build and hasn't for ages,
and at this point it's not worth pretending we'll ever fix it.
2012-12-21 06:23:19 +00:00
is
dc528df397 Revert the compression feature of 20060221 (wrap the original file in
a procedure and call that N times later), as it exceeds some limits of
ghostscript as well as other printers at least for nontrivial files.

Patch by Ingvar Hagelund via Redhat Bugzilla # 436969.
2012-12-20 14:14:14 +00:00
markd
5e71d46abe Drop maintainership of kde3 packages. Haven't had any systems running
kde3 for a while.
2012-12-17 18:37:06 +00:00
khorben
b91c1df3f8 Added print/deforaos-pdfviewer (version 0.0.1) 2012-12-17 01:58:04 +00:00
khorben
ab4e355459 Imported wip/deforaos-pdfviewer, the DeforaOS PDF viewer, under
print/deforaos-pdfviewer (version 0.0.1)
2012-12-17 01:56:50 +00:00
obache
64deda1dc9 recursive bump from cyrus-sasl libsasl2 shlib major bump. 2012-12-16 01:51:57 +00:00
ryoon
35263110cb Bump PKGREVISION from devel/nss 3.14.0. 2012-12-15 10:36:18 +00:00
marino
64ae88ec39 print/lilypond: Fix redefinition of Moment S
This problem, detected by gcc 4.6+, was fixed upstream a year ago.
Bring that patch in to fix the build.
2012-12-15 10:01:20 +00:00
bsiegert
598adf007b Unbreak on {Mir,Openâ‰}BSD by excluding the use of memalign.
The patch is a horrible way to fix this. The real fix should be a check
for the existence of memalign in the configure script.
2012-12-12 16:37:08 +00:00
wiz
e1617541d4 Fix poppler-cpp on Solaris (iconv issue) using a patch from Richard PALO
in PR 47215.
Bump PKGREVISION.
2012-12-12 15:51:58 +00:00
wiz
e1acde4ddb Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
ryoon
50cf488bd4 Bump PKGREVISION from graphics/sane-backends. 2012-12-10 12:32:39 +00:00
wiz
f02fc0e2c7 Update to 0.4.6:
Changes since 0.4.5:
 Updated cMap/Adobe-Japan1/UniJIS-UTF16-H
 Updated cMap/Adobe-Japan1/UniJIS-UTF32-H
 Updated cMap/Adobe-Japan1/UniJIS-UTF8-H
 Updated cMap/Adobe-Japan1/UniJIS2004-UTF16-H
 Updated cMap/Adobe-Japan1/UniJIS2004-UTF32-H
 Updated cMap/Adobe-Japan1/UniJIS2004-UTF8-H
 Updated cMap/Adobe-Japan1/UniJISX0213-UTF32-H
 Updated cMap/Adobe-Japan1/UniJISX02132004-UTF32-H
 Updated cMap/Adobe-Korea1/UniKS-UTF16-H
 Updated cMap/Adobe-Korea1/UniKS-UTF32-H
 Updated cMap/Adobe-Korea1/UniKS-UTF8-H
2012-12-09 15:15:21 +00:00
adam
78879070f6 Use openjpeg15 instead of openjpeg, since openjpeg has been updated to 2.0.0 2012-12-08 23:09:39 +00:00
ryoon
18a48a9767 * Fix dependency pattern
* Add CVS tag to PLIST
2012-11-23 00:42:21 +00:00
ryoon
4fda1ccb59 Fix PR pkg/47238
* Set MAINTANINER as pkgsrc-users@

And
* Set CATEGORIES as print
* Fix dependency patterns

XXX This package depends on pkgsrc-wip packages.
XXX This problem should be fixed.
2012-11-23 00:35:29 +00:00
joerg
c4a55ad0a7 Use more void. 2012-11-19 03:04:22 +00:00
jaapb
fe18ffad82 Corrected directory problem with distfile 2012-11-18 18:03:44 +00:00
jaapb
5ef6c6a915 Corrected wrong directory path in build of tex-comment.
This should fix PR pkg/47204.
2012-11-18 17:59:05 +00:00
schnoebe
3dec8615e4 HPLIP 3.12.10a:
Fixed crash in HP Device Manager and System Tray due to ValueError
    exception in HPLIP upgrade functionality

    1064889 - HP System Tray and Device Manager fails with ValueError exception

HPLIP 3.12.10:

    Added Support for the Following New Printers:
	- HP Deskjet Ink Advantage 2020HC Printer
	- HP Deskjet Ink Advantage 2520HC  All-in-One
	- HP Envy 120 e-All-in-One
	- HP Envy 121 e-All-in-One
	- HP HotSpot LaserJet Pro M1218nfs MFP
	- HP OfficeJet 150 Mobile All-in-One

    Lunchpad fixes:
	1054584 - data/rules/hplip_cron only works with English locale
	1048732 - hp binary plugin installation fails

    Issues fixed:
	- Cannot scan resolution on a Photosmart C6380
	- Device communication error after alignment operation from Toolbox

    Detailed Change Log:
	- Added permission in 'hp-logcapture' tool


HPLIP 3.12.9:

    Significant Changes:
	- Added logcapture tool. User can collect logs by running
	  'hp-logcapture' command for any issue in print/scan/fax functionality

    Added Support for the Following New Printers:
	- HP DeskJet 3510 All-in-One
	- HP DeskJet 3511 e-All-in-One
	- HP DeskJet 3512 e-All-in-One
	- HP DeskJet Ink Advantage 6525 e-All-in-One
	- HP DeskJet Ink Advantage 3515 e-All-in-One
	- HP DeskJet Ink Advantage 3516 e-All-in-One
	- HP LaserJet Pro 200 color MFP M276nw
	- HP LaserJet Pro 200 color MFP M276n
	- HP LaserJet Pro M251nw Color Printer
	- HP LaserJet Pro M251n Color Printer
	- HP Photosmart 7520 e-All-in-One
	- HP Photosmart 7525 e-All-in-One
	- HP Photosmart 6520 e All-in-One
	- HP Photosmart 6525 e All-in-One


    Launchpad fixes:
	452113  - Installing hplip-systray.desktop and hplip.desktop only if gui
		  build is enabled
	482674  - Support for xdg-open in base/utils.py
	889008  - Scanning in grayscale with HP LaserJet Pro M1212nf give wrong
		  aspect ratio image
	932918  - Configure fix for hpcups_only_build
	1012004 - HP LaserJet M1536nf MFP fails to install on Ubuntu 12.04
	1019826 - Failed plugin install for HP_CP_1025nw
	1029052 - WiFi configuration through USB connection is giving I/O error
		  with DeskJet 3050 610a
	1015319 - Scanning with version 3.12.6 results in End Of File error
		  messages
	1032919 - Use consistent EOL markers


    Issues fixed:
	- Device IO error occurs when configuring or perform Scan operation from
	  toolbox with PhotoSmart 6510 Series
	- Secure Printing(Pin to Print) support for LaserJet M9040 Multifunction
	  Printer
	- Economode is not working as expected with LaserJet 2055dn
	- Duplex printing does not happen in Ubuntu 10.04 and Document Viewer
	  not showing the duplex options in all distributions
	- Fixed incorrect PPD picking issue during auto-plugin
	- Fixed WiFi configuration issue for LaserJet 400 M401, LaserJet 400 MFP
	  M425, LaserJet Professional M1217 nfw MFP etc.
	- Plugin Installation UI is not popping up while connecting the plugin
	  supported device via USB with Fedora17 32bit OS
	- Radio button controls in HP Device Manager do not match default
	  settings in Driver's PPD
	- Align functionality is not working with PhotoSmart 6510 Series,
	  DeskJet 2050 J510, DeskJet 3050A J611, OfficeJet 6500 E710
	- Clean job does not work for the second time and throws Device
	  Communication error
	- 'hp-levels' command does not give any details when execute from
	  terminal with OfficeJet 7500 E910, DeskJet 3050A J611 and Envy 100 D410
	- Fixed scan issue with Photosmart Prem C310 series
	- Command 'hp-scan -contrast=<contrast>' does not work in terminal
	- Updated Manual Instructions for Debian OS

    Detailed Change Log:
	- Added Chinese string to accept password during Chinese OS installation
	- Changes done for PrivateTmp feature. Logs get stored in
	  /var/log/hp/tmp
2012-11-18 00:50:42 +00:00
jaapb
814b5b65ed Updated package to separate print/tex-comment and print/tex-index. Bumped
PKGREVISION.
2012-11-16 14:39:45 +00:00
jaapb
db99defd4a Updated Makefile to reflect existence of tex-index and tex-index-doc
packages.
2012-11-16 14:38:35 +00:00
jaapb
50c2f77b8c Added package print/tex-index-doc, version 4.1beta 2012-11-16 14:37:24 +00:00
jaapb
99480b1dfd Added package print/tex-index, version 4.1beta. 2012-11-16 14:36:27 +00:00
jaapb
158d77d74b Added tex-comment and tex-comment-doc (new packages) to category Makefile. 2012-11-16 14:29:30 +00:00
jaapb
7512d03dc8 Added package print/tex-comment-doc as version 3.6. 2012-11-16 14:28:42 +00:00
jaapb
46018c5279 *** empty log message *** 2012-11-16 14:27:04 +00:00
gdt
9cd69adaaf Depend on x11/fltk13 rather than x11/fltk.
As discussed on pkgsrc-users, x11/ftlk (1.1) is no longer maintained,
and 1.3 is believed to be almost entirely compatible.

Patch from Tim Larson, who has build-tested these packages on
NetBSD/amd64.
2012-11-15 13:44:13 +00:00
minskim
a28cfb6a7e Update tex-texlive-docindex{,-doc} to 2012.28163.
Changes:
- Added pkxcjkcat, bohr, plainpkg, pkuthss, ulthese, exsheets, uptex,
  actuarialangle, setdeck, venndiagram, mkbib, etc.
- Removed presfull.
2012-11-04 22:09:51 +00:00
sbd
223b2e9333 Remove the unneeded lang/perl5/dirs.mk inclusion. 2012-11-02 07:55:31 +00:00
asau
d1c4856796 Update to GV 3.7.3
Changes in GV 3.7.3 (November 2011)

- Fixed "Save document" dialog for PDF files


Changes in GV 3.7.2.90 (October 2011)

- Various bug fixes.


Changes in GV 3.7.2 (April 2011)

- "Fit to window magnification" and "Fit width to window magnification" with
  "Automatic resizing" turned on sometime miss rescaling, especially when
  changing the orientation or resizing the window. You can force
  rescaling by selecting the active "special" scale in the scales menu.

- Interactive prompting for the password of encrypted PDF files do not work
  if and only if DSC is turned off. As a workarouund, you can load the file
  with DSC turned on and then turn DSC off.


Changes in GV 3.7.1.90 (April 2011)

- Fix Debian bug #594991: unexpected scrolling of the TOC widget
- Fixed file descriptor leak
- Added Dutch, French, Italian and Spanish translation
2012-10-25 16:53:13 +00:00
wiz
2c72a9f0b9 Remove xextproto/buildlink3.mk in most cases where it occurs with
libXext/buildlink3.mk, now that it is included there.
Leave the places where its API version is set or variables from it
are used directly (about 3 packages).
2012-10-23 10:24:02 +00:00
wiz
d67412c4de Add itstool as build dependency. 2012-10-23 07:58:45 +00:00
minskim
b47e409464 Resolve conflicts between tex-psfrag, tex-umlaute, and teTeX-texmf. 2012-10-21 18:14:16 +00:00
minskim
262a4de569 Correct version strings. 2012-10-21 18:07:08 +00:00
minskim
127f1be89f Add tex-psfrag{,-doc}. 2012-10-21 17:56:40 +00:00
minskim
9984f33c95 Import tex-psfrag-doc-3.04 as print/tex-psfrag-doc.
This is documentation for tex-psfrag.
2012-10-21 17:55:05 +00:00
minskim
caad2b2fb8 Import tex-psfrag-3.04 as print/tex-psfrag.
Allows LaTeX constructions (equations, picture environments,
etc.) to be precisely superimposed over Encapsulated PostScript
figures, using your own favorite drawing tool to create an EPS
figure and placing simple text 'tags' where each replacement is
to be placed, with PSfrag automatically removing these tags
from the figure and replacing them with a user specified LaTeX
construction, properly aligned, scaled, and/or rotated.
2012-10-21 17:54:51 +00:00
minskim
f08ab1191f Add tex-umlaute{,-doc}. 2012-10-21 17:48:26 +00:00
minskim
7384b42a05 Import tex-umlaute-doc-v2.1 as print/tex-umlaute-doc.
This is documentation for tex-umlaute.
2012-10-21 17:46:40 +00:00
minskim
7c40ad7997 Import tex-umlaute-v2.1 as print/tex-umlaute.
An early package for using alternate input encodings. The
author considers the package mostly obsolete, since most of its
functions are taken by the inputenc package; however, inputenc
doesn't support the roman8 and atari encodings, so umlaute
remains the sole source of that support.
2012-10-21 17:46:18 +00:00
drochner
b1ae4b29b0 update to 3.6.1
This switches to the gnome-3.6 release branch
2012-10-19 18:39:05 +00:00