summaryrefslogtreecommitdiff
path: root/graphics/SDL_image
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26graphics: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes
2021-10-07graphics: Remove SHA1 hashes for distfilesnia1-2/+1
2020-05-14SDL_image: Best effort attempt at grabbing fixes from upstream hgnia6-3/+480
Bump PKGREVISION
2020-01-26all: migrate homepages from http to httpsrillig1-2/+2
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
2018-01-07Fix indentation in buildlink3.mk files.rillig1-3/+3
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was reviewed manually. There are some .include lines that still are indented with zero spaces although the surrounding .if is indented. This is existing practice.
2017-02-28Recursive revbump from graphics/libwebpryoon1-2/+2
2016-01-06Revbump after updating graphics/libwebpadam1-2/+2
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-04-25Recursive revbump following MesaLib update, categories g through n.tnn2-4/+4
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2014-10-07Revbump after updating libwebp and icuadam1-2/+2
2013-02-16Recursive bump for png-1.6.wiz1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2012-08-18Recursive revbump from graphics/libwebp update.ryoon1-2/+2
Thank you, obache@.
2012-05-01Pass OBJC to configure scriptadam1-2/+3
2012-02-06Revbump forwiz1-1/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-02-02Fix build on NetBSD 5.0. From Robert Elz in PR 45888.wiz2-1/+17
2012-01-28Update to 1.2.12. Add webp support. Update LICENSE (see below).wiz4-156/+10
While here, remove png/tiff/jpeg includes from buildlink3.mk since they are hidden by the library (library not linked against them, headers not included in public headers). Recursive bump coming next. 1.2.12: Sam Lantinga - Thu Jan 19 23:18:09 EST 2012 * Fixed regression in 1.2.11 loading 8-bit PNG images with libpng 1.2.11: Sam Lantinga - Sat Jan 14 17:54:38 EST 2012 * Fixed loading 8-bit PNG images on Mac OS X Sam Lantinga - Sat Dec 31 09:35:40 EST 2011 * SDL_image is now under the zlib license Michael Bonfils - Mon Nov 28 21:46:00 EST 2011 * Added WEBP image support Thomas Klausner - Wed Jan 19 19:31:25 PST 2011 * Fixed compiling with libpng 1.4 Sam Lantinga - Mon Jan 10 12:09:57 2011 -0800 * Added Android.mk to build on the Android platform Sam Lantinga - Mon May 10 22:42:53 PDT 2010 * Fixed loading HAM6 images with stencil mask Mark Tucker - Fri, 27 Nov 2009 12:38:21 -0500 * Fixed bug loading 15 and 16 bit BMP images
2011-05-27Add missing png_set_longjmp_fn assignment to fix some segfaults.hans2-10/+18
2011-01-19fix for png-1.5. The new API (in particular the macro for png_jmpbuf)drochner2-12/+34
does really suck here.
2011-01-16Start fixing build, final bits missing.wiz2-1/+114
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz2-4/+4
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-06-13Bump PKGREVISION for libpng shlib name change.wiz2-4/+4
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz2-3/+4
2009-11-15Update to 1.2.10:wiz2-6/+6
1.2.10: Sam Lantinga - Sat Nov 14 11:22:14 PST 2009 * Fixed bug loading multiple images 1.2.9: Sam Lantinga - Tue Nov 10 00:29:20 PST 2009 * Fixed alpha premultiplication on Mac OS X and iPhone OS Sam Lantinga - Sun Nov 8 07:52:11 PST 2009 * Fixed checking for IMG_Init() return value in image loaders
2009-10-31Set LICENSE.wiz1-1/+2
2009-10-30Update to 1.2.8:wiz3-8/+9
1.2.8: Sam Lantinga - Sun Oct 4 13:12:54 PDT 2009 * Added support for uncompressed PCX files Mason Wheeler - 2009-06-10 06:29:45 PDT * Added IMG_Init()/IMG_Quit() to prevent constantly loading and unloading DLLs Couriersud - Mon, 12 Jan 2009 17:21:13 -0800 * Added support for ICO and CUR image files Eric Wing - Fri, 2 Jan 2009 02:01:16 -0800 * Added ImageIO loading infrastructure for Mac OS X * Added UIImage loading infrastructure for iPhone / iPod Touch
2009-08-26bump revision because of graphics/jpeg updatesno2-3/+4
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-12-03Update to 1.2.7, security fixes were already in pkgsrc.wiz4-54/+6
1.2.7: Sam Lantinga - Sun Nov 2 15:08:27 PST 2008 * Fixed buffer overflow in BMP loading code, discovered by j00ru//vx Sam Lantinga - Fri Dec 28 08:34:54 PST 2007 * Fixed buffer overflow in GIF loading code, discovered by Michael Skladnikiewicz
2008-02-11also patch CVE-2007-6697 (buffer overflow in gif parser), from upstreamdrochner3-3/+19
CVS, bump PKGREVISION
2008-02-08add a patch from upstream CVS to fix buffer overflow (CVE-2008-0544),drochner3-2/+34
bump PKGREVISION
2007-07-25Update to 1.2.6:wiz2-6/+6
1.2.6: Sam lantinga - Wed Jul 18 00:30:32 PDT 2007 * Improved detection of libjpeg, libpng, and libtiff at configure time * PNG and TIFF images are correctly identified even if dynamic libraries to load them aren't available. * Fixed loading of TIFF images using libtiff 3.6 Sam Lantinga - Thu Jul 5 07:52:35 2007 * Fixed static linking with libjpeg Michael Koch - Tue Feb 13 10:09:17 2007 * Fixed crash in IMG_ReadXPMFromArray()
2007-05-19Added support for installation to DESTDIR.heinz1-2/+3
2006-12-15Reset maintainer, ben@ has resigned.wiz1-2/+2
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-06-12Update to 1.2.5:wiz3-14/+10
1.2.5: Maurizio Monge - Sun May 14 13:57:32 PDT 2006 * Fixed loading BMP palettes at unusual offsets Sam Lantinga - Thu May 11 21:51:19 PDT 2006 * Added support for dynamically loading libjpeg, libpng, and libtiff. Sam Lantinga - Sun Apr 30 01:48:40 PDT 2006 * Added gcc-fat.sh for generating Universal binaries on Mac OS X * Updated libtool support to version 1.5.22 Sam Lantinga - Sat Feb 4 15:17:44 PST 2006 * Added support for XV thumbnail images Gautier Portet - Fri, 19 Mar 2004 17:35:12 +0100 * Added support for 32-bit BMP files with alpha Bump BUILDLINK_ABI_DEPENDS for SDL shlib changes.
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz2-4/+4
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-12-11Convert aalib to options framework, adding an 'x11' option, and removewiz2-4/+4
aalib-x11 and aview-x11. SDL dependencies change, so bump PKGREVISION (and BUILDLINK_RECOMMENDED) for affected packages. Addresses PR 32046 by Leonard Schmidt.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-27PKGREVISION bump for glut dependency removal (SDL/buildlink3.mk).wiz1-1/+2
2005-02-24Add RMD160 digestsagc1-1/+2
2005-01-05Changes 1.2.4:adam2-13/+11
* Added support for RLE encoded BMP files * Added EHB and HAM mode support to the ILBM loader * Fixed crash loading certain PCX images