summaryrefslogtreecommitdiff
path: root/graphics
AgeCommit message (Collapse)AuthorFilesLines
2011-11-17update to 2.12.4drochner3-8/+50
changes: translation updates
2011-11-17update to 2.34.2drochner3-8/+8
changes: bugfixes
2011-11-17regen distinfo.obache1-3/+2
2011-11-17Fix typo. Ride last night's update.wiz1-3/+3
2011-11-16Use a stricter condition to enable the hack.minskim1-2/+2
2011-11-16Use non-llvm gcc on Darwin to avoid a link error.minskim1-0/+18
See https://trac.macports.org/ticket/31469 for details.
2011-11-16Recursive bump for multimedia/ffmpeg buildlink addition.sbd2-4/+4
2011-11-15remove old patch.jakllsch1-14/+0
2011-11-15Update to darktable-0.9.3.jakllsch6-35/+78
2011-11-15update to 2.4.8drochner2-7/+6
changes: -fixed vulnerabilities in handling CID-keyed PostScript fonts (CVE-2011-3439) -new API 'FT_Get_PS_Font_Value'
2011-11-15Changes 1.7.21:adam2-6/+6
* Defined TOO_FAR=32767 in Makefile (instead of in pngcrush.h)
2011-11-14Not MAKE_JOBS_SAFE.dholland1-1/+3
2011-11-14Add missing <stdio.h>, should fix or improve linux builddholland2-1/+14
2011-11-14needs msgfmtdholland1-2/+2
2011-11-14Disable the logic that regenerates the version information .c file, as itdholland2-8/+21
(1) uses ed and breaks on linux, and (2) contrives to generate the wrong version number.
2011-11-09Update graphics/shotwell to 0.11.6gls2-7/+6
This release fixes a critical bug in which adding or modifying tags in the single-photo view could result in the loss of tag data. We recommend that all users upgrade.
2011-11-08* Remove .require_paths from PLISTtaca1-2/+1
* Bump PKGREVISION.
2011-11-07oops, forgot to commitdrochner1-1/+11
2011-11-07add patch from upstream to fix possible buffer overflow in LZW decoderdrochner3-3/+57
by invalid GIF file (CVE-2011-2896) bump PKGREV
2011-11-07sync w/ base pkgdrochner2-8/+7
2011-11-07update to 2.1drochner3-8/+8
changes: -Experimental --scale-down and --auto-zoom tiling support -The button-options -0 through -9 are no longer supported. Use .config/feh/buttons instead (see feh manpage) -more minor UI changes -bugfixes
2011-11-07update to 1.4.5drochner5-91/+13
changes: -bugfixes -cleanup, spelling fixes
2011-11-07update to 1.13drochner2-7/+6
changes: * Graphs are rendered in separate threads for speed and a responsive user interface * A changed Graph is rendered immediately on document modification, improving latency * A new ternary plot widget is included * Size of pages can be modified individually in a document * Binary data import added * NPY/NPZ numpy data import added * Axis and tick labels on axes can be rotated at 45 deg intervals * Labels can be plotted next to points on non-orthogonal plots * Add an option for DPI of output EPS and PDF files* Graphs are rendered in separate threads for speed and a responsive user interface * A changed Graph is rendered immediately on document modification, improving latency * A new ternary plot widget is included * Size of pages can be modified individually in a document * Binary data import added * NPY/NPZ numpy data import added * Axis and tick labels on axes can be rotated at 45 deg intervals * Labels can be plotted next to points on non-orthogonal plots * Add an option for DPI of output EPS and PDF files -more minor changes -bugfixes
2011-11-07update to 2.4.11drochner2-7/+6
changes: -Switched %n behaviour to be linear increasing, instead of a folder index -translation updates
2011-11-06Update to 1.5.6, which integrated part of patch-aa (see beta04).wiz3-21/+10
Version 1.5.6beta01 [September 22, 2011] Fixed some 64-bit type conversion warnings in pngrtran.c Moved row_info from png_struct to a local variable. The various interlace mask arrays have been made into arrays of bytes and made PNG_CONST and static (previously some arrays were marked PNG_CONST and some weren't). Additional checks have been added to the transform code to validate the pixel depths after the transforms on both read and write. Removed some redundant code from pngwrite.c, in png_destroy_write_struct(). Changed chunk reading/writing code to use png_uint_32 instead of png_byte[4]. This removes the need to allocate temporary strings for chunk names on the stack in the read/write code. Unknown chunk handling still uses the string form because this is exposed in the API. Version 1.5.6beta02 [September 26, 2011] Added a note in the manual the png_read_update_info() must be called only once with a particular info_ptr. Fixed a typo in the definition of the new PNG_STRING_FROM_CHUNK(s,c) macro. Version 1.5.6beta03 [September 28, 2011] Revised test-pngtest.sh to report FAIL when pngtest fails. Added "--strict" option to pngtest, to report FAIL when the failure is only because the resulting valid files are different. Revised CMakeLists.txt to work with mingw and removed some material from CMakeLists.txt that is no longer useful in libpng-1.5. Version 1.5.6beta04 [October 5, 2011] Fixed typo in Makefile.in and Makefile.am ("-M Wl" should be "-M -Wl")." Version 1.5.6beta05 [October 12, 2011] Speed up png_combine_row() for interlaced images. This reduces the generality of the code, allowing it to be optimized for Adam7 interlace. The masks passed to png_combine_row() are now generated internally, avoiding some code duplication and localizing the interlace handling somewhat. Align png_struct::row_buf - previously it was always unaligned, caused by a bug in the code that attempted to align it; the code needs to subtract one from the pointer to take account of the filter byte prepended to each row. Optimized png_combine_row() when rows are aligned. This gains a small percentage for 16-bit and 32-bit pixels in the typical case where the output row buffers are appropriately aligned. The optimization was not previously possible because the png_struct buffer was always misaligned. Fixed bug in png_write_chunk_header() debug print, introduced in 1.5.6beta01. Version 1.5.6beta06 [October 17, 2011] Removed two redundant tests for unitialized row. Fixed a relatively harmless memory overwrite in compressed text writing with a 1 byte zlib buffer. Add ability to call png_read_update_info multiple times to pngvalid.c. Fixes for multiple calls to png_read_update_info. These fixes attend to most of the errors revealed in pngvalid, however doing the gamma work twice results in inaccuracies that can't be easily fixed. There is now a warning in the code if this is going to happen. Turned on multiple png_read_update_info in pngvalid transform tests. Prevent libpng from overwriting unused bits at the end of the image when it is not byte aligned, while reading. Prior to libpng-1.5.6 libpng would overwrite the partial byte at the end of each row if the row width was not an exact multiple of 8 bits and the image is not interlaced. Version 1.5.6beta07 [October 21, 2011] Made png_ptr->prev_row an aligned pointer into png_ptr->big_prev_row (Mans Rullgard). Version 1.5.6rc01 [October 26, 2011] Changed misleading "Missing PLTE before cHRM" warning to "Out of place cHRM" Version 1.5.6rc02 [October 27, 2011] Added LSR() macro to defend against buggy compilers that evaluate non-taken code branches and complain about out-of-range shifts. Version 1.5.6rc03 [October 28, 2011] Renamed the LSR() macro to PNG_LSR() and added PNG_LSL() macro. Fixed compiler warnings with Intel and MSYS compilers. The logical shift fix for Microsoft Visual C is required by other compilers, so this enables that fix for all compilers when using compile-time constants. Under MSYS 'byte' is a name declared in a system header file, so we changed the name of a local variable to avoid the warnings that result. Added #define PNG_ALIGN_TYPE PNG_ALIGN_NONE to contrib/pngminim/*/pngusr.h Version 1.5.6 [November 3, 2011] No changes.
2011-11-06Replace the updmap script with the version in TeX Live 2011.minskim1-1/+2
Updating font maps is considerably faster with this version.
2011-11-03Add qiviewerryoon1-1/+2
2011-11-03Import qiviewer-0.5.0 as graphics/qiviewer from wip/qiviewerryoon4-0/+48
This program has been written with help of Qt library, to be a lightweight image viewer, similar to eog or viewnior for Gnome.
2011-11-02Update version number. Current 4.0 tarball is actually 4.0.6.shattered2-8/+9
2011-11-02Revert hard coded "ruby19" with ${RUBYPKGPREFIX}.obache1-2/+2
It was accidenally replaced by recursive bump for graphics/freetype2.
2011-11-01Revert hard coded "py26" with "${PYPKGPREFIX}".sbd1-2/+2
"${PYPKGPREFIX}" was accidentally replace with "py26" by blbump when I did the recursive bump for graphics/freetype2 and I forgot to change them back :(.
2011-11-01Set LICENSEryoon1-1/+2
2011-11-01Add gpicviewryoon1-1/+2
2011-11-01Import gpicview-0.2.2 as graphics/gpicview from wip/gpicviewryoon4-0/+84
Extremely lightweight and fast with low memory usage X image viewer. It is part of LXDE.
2011-11-01Replace hard coded "py26" with "${PYPKGPREFIX}" to make this build withtron1-2/+2
Python 2.7 again.
2011-11-01propagate libXt dependency if necessary, fixes build problemsdrochner1-1/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd3-6/+6
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd229-421/+459
2011-11-01Add missing archivers/bzip2 buildlinksbd2-3/+6
Bump PKGREVISION
2011-10-28Add viewniorryoon1-1/+2
2011-10-28Initial import of viewnior-1.1 as graphics/viewnior from wip/viewniorryoon4-0/+72
This is Viewnior, an image viewer program. Created to be simple, fast and elegant. It's minimalistic interface provides more screenspace for your images.
2011-10-28Add libwebpryoon1-1/+2
2011-10-28Initial import of libwebp-0.1.3 as graphics/libwebp from wip/webpryoon5-0/+54
WebP is a image format that provides lossy compression for photographic images. A WebP file consists of VP8 image data, and a container based on RIFF.
2011-10-27Add tex-pst-pdf{,-doc}.minskim1-1/+3
2011-10-27Import tex-pst-pdf-doc-1.1v as graphics/tex-pst-pdf-doc.minskim4-0/+26
This is documentation for tex-pst-pdf.
2011-10-27Import tex-pst-pdf-1.1v as graphics/tex-pst-pdf.minskim5-0/+97
The package pst-pdf simplifies the use of graphics from PSTricks and other PostScript code in PDF documents. As in building a bibliography with BibTEX additional external programmes are being invoked. In this case they are used to create a PDF file (\PDFcontainer) that will contain all this graphics material. In the final document this contents will be inserted instead of the original PostScript code. The package works with pstricks and requires a recent version of the preview package.
2011-10-27Add tex-pdfcrop{,-doc}.minskim1-1/+3
2011-10-27Import tex-pdfcrop-doc-1.32 as graphics/tex-pdfcrop-doc.minskim4-0/+21
This is documentation for tex-pdfcrop.
2011-10-27Import tex-pdfcrop-1.32 as graphics/tex-pdfcrop.minskim5-0/+53
A Perl script that can either trim pages of any whitespace border, or trim them of a fixed border.
2011-10-27Update tex-pstricks{,-doc} to 2.23.minskim6-17/+23
Changes: - The new macro \psLoop allows a loop without defining a variable. - Instead of using the package pst-fill one can now use the fill style dots.