summaryrefslogtreecommitdiff
path: root/graphics/gdk-pixbuf/Makefile.common
AgeCommit message (Collapse)AuthorFilesLines
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2011-04-20note a "used by ..." comment.obache1-1/+3
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
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
2007-01-08Needs libXt for building.joerg1-1/+4
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
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-05-22Remove explicit dependencies on the GNU m4 package with USE_TOOLS+=m4jlam1-2/+1
and appropriate TOOLS_DEPMETHOD.gm4 settings.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+1
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-04-25s/USE_X11BASE/USE_X11/ in graphics/gdk-pixbuf. Bump PKGREVISION.xtraeme1-3/+3
2004-02-17enable pkgviews for this pkgdmcmahill1-1/+3
2004-02-15bl3ifyjlam1-7/+6
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-23s/packages@/tech-pkg@/gjschauma1-2/+2
(Forgot the last time we did this. Pointed out by Sergey Svishchev (svs at ropnet dot ru))
2003-05-05Line up PKGREVISION whitespace.jmmv1-2/+2
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz1-1/+2
dependency bumps.
2003-01-15Update to 0.22. Remove dependency on auto* by adding patches for thewiz1-14/+7
generated files. (Not portability) changes since 0.18: * Made the GIF loader handle animations with frames whose bounds go outside of the base image's bounds (Federico). * Made the GIF loader handle zero-sized frames that GifBuilder and similar crap spits sometimes (Federico). * The PNM loader doesn't abort() anymore if it cannot allocate memory (Federico). * Fixed a g_object_unref() -> gdk_pixbuf_unref() thinko (Federico). * Merged the patch from Red Hat Linux 8.0 to fix the crash on corrupted/short GIFs - Ximian 29040 (patch by Elliot Lee). * Fixed the RGB 565 LSB -> MSB case in gdk-pixbuf-drawable - 79463 (Federico). * Fixed the update region notification in the BMP loader (Federico). * Merged the BMP loader changes from GTK+ HEAD -- check all reallocs, fix 16bpp BI_RGB thinko, properly handle BI_RLE4 and skips and jumps (changes by Matthias Clasen). * Merged the ICO loader changes from GTK+ HEAD (changes by Matthias Clasen). * Merged changes from gtk+/gdk-pixbuf HEAD into the JPEG loader -- fixes CMYK JPEG problems (changes by Matthias Clasen).
2002-10-02Use automake.mk and autoconf.mk.wiz1-8/+8
2002-09-11Move the USE_BUILDLINK2 definition to the common Makefile as we need tojlam1-1/+2
include buildlink2.mk files from there.
2002-09-02-make this build if gnome libs are installeddrochner1-2/+2
-being here, update to 0.18.0 changes: * Fixed the RGB 565 MSB -> MSB case in gdk-pixbuf-drawable - #79190 * Fixed alignment issues in the BMP loader - #84083 (Federico). * Merged pixops.c from GTK+ HEAD as of 2002/Jun/18 (Federico).
2002-08-28Convert gdk-pixbuf-gnome from buildlink1 to buildlink2, and remove thejlam1-8/+1
special buildlink1 handling in the common Makefile.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-1/+8
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-05-12Add an explicit dependency on autoconf-2.13. This closes PR 16764 byrh1-1/+2
<jaco@teaser.fr>
2002-05-11Update gdk-pixbuf and gdk-pixbuf-gnome to 0.17. Changes include:rh1-6/+6
* Merged the endianness conversion fixes from the GDK version into the Xlib version; oops (Federico). * Merged fixes from GTK+ 2.0 * Minor documentation improvements (Federico). * Fixed endianness conversion in the 16-bit gdk-pixbuf-drawable functions (Federico). * Minor fixes for the IBM/AIX compiler (Christian Schaller). * The image loaders are now linked against the pixbuf and GTK+ libraries so that the Python bindings work (Johan Dahlin). * Backported the BMP loader from GTK+ 1.3 (Federico). * Added support for BI_BITFIELDS coding to the BMP loader [Ximian bug #12125] (Federico). * Fixed stupid bug in the ICO loader. ICO pixbufs should always have an alpha channel [Ximian bug #11224]. (Federico) * Slight tweaks to the documentation Makefile. (Federico) * Added support for 16-bpp BMPs and ICOs (Federico). * Added support for 32-bpp ICOs (Federico). * Use the correct visual and colormap for the pixbuf-demo widgets * Install the headers in a versioned directory so that they don't collide with the GNOME 2 platform (Havoc).
2002-03-15Remove reduntant setting of PKGREVISION.fredb1-2/+1
2002-03-13Give all packages which depend on "png" a version bump, and updatefredb1-1/+2
all dependencies on packages depending on "png" which contain shared libraries, all for the (imminent) update to the "png" package. [List courtesy of John Darrow, courtesy of "bulk-build".]
2002-02-27Change the way in which the autotools are invoked to match the example injlam1-2/+4
Packages.txt. This seems to prevent a recompilation of most of the libraries during the installation phase.
2002-02-27* We use automake, so we must patch configure.in, not configure.jlam1-4/+5
* Fix the path to the rgb.txt file, which wasn't being set properly due to x11-links.
2001-11-29A dependency on automake implies a dependency on autoconf; there's no needjlam1-2/+1
to list them both when we listing just automake will do.
2001-09-30Update gdk-pixbuf and gdk-pixbuf-gnome to 0.11.0. Changes are:rh1-2/+2
* Made the GdkPixbufLoader headers usable by C++ compilers by replacing "private" with "priv" * Replaced the documentation Makefile with one similar to that in GTK+ HEAD
2001-09-09Move USE_BUILDLINK_ONLY definition out of Makefile.common and into thejlam1-2/+1
individual package Makefiles.
2001-08-26Update automake to 1.4-p5 (1.5 is available)skrll1-2/+2
Include a bugfix for lisp_LISP independently discovered by me that has been pulled up to the automake-1-4 branch of automake cvs. Changes are: New in 1.4-p5: * Allow AM_PROG_LIBTOOL again. * Diagnose AC_CONFIG_HEADERS the same as AC_CONFIG_HEADER. * Display distributed file list correctly in usage message. * Allow numbers in macro names. * Bugfixes. New in 1.4-p4: * Deal with configure.ac as well as configure.in -- this time for real! * The version numbering system now allows three point version numbers, such as 1.4.4, without thinking they are alpha release numbers. New in 1.4-p3: * Deal with configure.ac as well as configure.in. * Don't complain if `version.texi' is included in multiple places. New in 1.4-p2: * Deal with AC_CONFIG_FILES from autoconf-2.50. * Improvements to f77 support. * DESTDIR now works for script targets. * distcheck-hook works correctly. New in 1.4-p1: * The version numbering system now allows fork identifiers (such as the p1 in this version of automake). * Cope gracefully with various versions of libtool which may or may not require ltconfig, ltcf-c.sh, ltcf-cxx.sh or ltcf-gcj.sh. * Bugfixes.
2001-08-16Let gdk-pixbuf and gdk-pixbuf-gnome share distinfo.wiz1-2/+2
2001-06-29USE_CONFIG_WRAPPER is automatically set if USE_BUILDLINK_ONLY is defined,jlam1-7/+6
so remove it from package Makefiles. Also move the inclusion of the buildlink.mk files to the end of the Makefile to just before bsd.pkg.mk to ensure that any Makefile settings occur before the buildlink.mk files.
2001-06-18Mark gdk-pixbuf and gdk-pixbuf-gnome as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-06-16Converted to use buildlink.mk files.jlam1-6/+8
2001-06-15Use buildlink.mk files to get dependencies, CPPFLAGS, and LDFLAGS forjlam1-6/+5
png, tiff, and jpeg. Remove the now unneeded explicit CPPFLAGS and LDFLAGS settings.
2001-06-11CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, sojlam1-2/+1
adapt by moving CPPFLAGS settings to top-level, and removing explicit inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-05-22Update dependency on png to >=1.0.11 because of the shlib major bump.wiz1-2/+2
Noted by Frederick Bruckman.
2001-03-27Change BUILD_DEPENDS semantics:hubertf1-3/+3
first component is now a package name+version/pattern, no more executable/patchname/whatnot. While there, introduce BUILD_USES_MSGFMT as shorthand to pull in devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current). Patch by Alistair Crooks <agc@netbsd.org>
2001-03-18Update to 0.10.1, which fixes quite a few bugs since 0.9.mjl1-2/+2
2001-03-04Move documentation from "gdk-pixbuf" to "gdk-pixbuf-gnome" package becausetron1-4/+5
the documentation is part of the GNOME documentation. Bump version number of both packages to "0.9.0nb2".
2001-02-26Mechanical changes to use the pkgsrc autoconf and automake by specifyingjlam1-4/+6
complete paths to these programs.
2000-12-08Add dependency on gtk+ (should fix recent bulk build failure).wiz1-1/+2
2000-11-29Split off gnome part of gdk-pixbuf into gdk-pixbuf-gnome package,wiz1-0/+32
so that not all programs depending on gdk-pixbuf have to depend on gnome-libs.