summaryrefslogtreecommitdiff
path: root/graphics/jasper
AgeCommit message (Collapse)AuthorFilesLines
2017-03-05Updated jasper to 2.0.12.wiz4-18/+17
Bumped the version number. Added some additional checking to prevent a potential integer overflow due to conversion in the JPC decoder. Added numerous more-detailed error messages for the JPC and JP2 codecs. Added a partial verbose capability for the run_test_1 script. Moved a test case from the bad category to the good category, as the test case had been miscategorized. Added another regression test case. Fixed some potential double-free problems in the JPC codec.
2017-02-22Disable PDF files regeneration from disabling doxygen detection.ryoon5-15/+19
And install pre-generated PDF files. Bump PKGREVISION. Thank you, adam@.
2017-02-22Disable documentation files generation. Bump PKGREVISIONryoon4-8/+16
When LaTeX is detected, some LaTeX style files are required.
2017-02-21Changes 2.0.10:adam7-493/+59
Fixed a problem in the JP2 encoder that caused a null pointer dereference when no ICC profile data is available (e.g., in the case of an unknown color space).
2016-12-17Insert rcsid header in patch file, which I dropped in almost verbatimdholland2-2/+4
from upstream.
2016-12-17Add upstream patch for CVE-2016-8654.dholland3-2/+121
2016-12-16Add a cast so that this builds with the compiler in NetBSD 7.0 as well.he2-4/+13
2016-12-16Upgrade jasper from 1.900.1 to 1.900.29.he29-1548/+239
This integrates most of the patches we had applied in pkgsrc. The changes are in ChangeLog, and are not well summarized anywhere I can find, sorry... OK from adam@
2016-05-16Add fixes for CVE-2008-3520 and CVE-2008-3522, patches fromhe27-92/+1094
https://bugs.gentoo.org/show_bug.cgi?id=222819 Bump PKGREVISION.
2016-03-13patch denial of service issues CVE-2016-1577 CVE-2016-2116 CVE-2016-2089tnn5-3/+119
via debian
2016-02-25Remove manual OPSYSVARS additions which are now part of the default set.jperkin1-2/+1
2015-11-03Add SHA512 digests for distfiles for graphics categoryagc1-1/+2
Problems found with existing digests: Package fotoxx distfile fotoxx-14.03.1.tar.gz ac2033f87de2c23941261f7c50160cddf872c110 [recorded] 118e98a8cc0414676b3c4d37b8df407c28a1407c [calculated] Package ploticus-examples distfile ploticus-2.00/plnode200.tar.gz 34274a03d0c41fae5690633663e3d4114b9d7a6d [recorded] da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated] Problems found locating distfiles: Package AfterShotPro: missing distfile AfterShotPro-1.1.0.30/AfterShotPro_i386.deb Package pgraf: missing distfile pgraf-20010131.tar.gz Package qvplay: missing distfile qvplay-0.95.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-02-08Fix CVE-2014-8157 and CVE-2014-8158. Bump PKGREVISION to 10.snj4-4/+350
2015-01-01Rename patches to conform to the "new" style.he11-106/+124
Add comments to the patches. Add fix for oCERT-2014-012, pulled from RedHat. Add fix from Debian bug 469786. Add LICENSE setting, I think modified-bsd is fitting. Bump PKGREVISION.
2014-12-11Add patch for CVE-2014-9029 fromtez3-3/+38
https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2014-9029
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2013-01-26Revbump after graphics/jpeg and textproc/icuadam2-4/+4
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2011-12-22add patches from Redhat to add some input validation and fix adrochner3-7/+27
memory allocation error; both could lead to heap buffer overflows (CVE-2011-4516, CVE-2011-4517) bump PKGREV
2011-06-21The solaris stdbool.h requires c99 which is fine for jasper, buttez1-1/+6
not so good for things that depend upon jasper. See PR#43901 This stops jasper from using stdbool.h (on solaris only.)
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty2-4/+4
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz2-4/+4
2009-11-23add a patch from Debian to tolerate j2k pictures with alpha channeldrochner3-3/+25
(seems really just tolerated -- looks ugly but at least doesn't crash) bump PKGREVISION
2009-08-26bump revision because of graphics/jpeg updatesno2-4/+4
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-03-20add a patch from Debian (bug #413041) to fix some heap corruptiondrochner4-8/+33
on malformed image input (CVE-2007-2721), also fix some initialisation which could cause random misbehaviour on cleanup, bump PKGREVISION
2007-08-17Add DESTDIR support.joerg1-4/+4
2007-08-12Use correct Autoconf macro for stdbool.h detection and functionality test.salo3-2/+181
Fixes build of some depending package such as netpbm (with its horrible, horrible hardcoded _XOPEN_SOURCES definitions all over the place) on Solaris. Will be submitted upstream.
2007-01-21Update to 1.900.1:wiz3-21/+6
This release fixes some build problems as well as a multiply-defined symbol problem in jpc_qmfb.h.
2007-01-17Very belatedly bump PKGREVISION for all jasper dependencies becausewiz1-2/+2
of the shlib name change (!) during the update to 1.900.0. Noted by Robert Elz in PR 35431.
2007-01-07Fix pkglint warningsadam1-3/+4
2007-01-07Fix building on Darwin/Mac OS Xadam3-7/+19
2007-01-06Update to 1.900.0:wiz6-31/+22
1) The wavelet transform code has been rewritten in order to be more cache efficient (via loop tiling). As a few individuals have noted, the old code could often result in an excessive number of cache misses. 2) Some man pages have been added to the distribution as provided by Roland Stigge. 3) Some simple timer routines have been added to facilitate performance measurements. 4) Numerous bugs have been fixed (e.g., memory leaks, JP2 box processing problem, etc.). 5) Some name space pollution issues have been resolved. 6) A few compiler warnings have been fixed.
2006-12-02Instead of setting compiler flags in each package if it uses C99,jschauma1-7/+2
allow USE_LANGUAGES+=c99 and let gcc and mipspro do the right thing. May need to be reviewed/added for other compilers. ok rillig@
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2005-10-08Add '-c99' to CFLAGS for the MIPSPro compiler chain.jschauma1-1/+7
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-05-22Unused.wiz1-19/+0
2004-04-25Enable pkgviews installation.minskim1-1/+3
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-10/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-03-02patch-ac removed as welladam2-295/+1