summaryrefslogtreecommitdiff
path: root/graphics/xpm
AgeCommit message (Collapse)AuthorFilesLines
2007-09-08Convert to use the features framework.jlam1-4/+4
2007-09-06Convert all libnbcompat/buildlink3.mk references to inplace.mk.jlam1-5/+4
2007-03-05set IS_BUILTIN.xpm=yes on Darwin since the imake-checkdbj1-1/+3
fails because darwin doesn't list it in its imake config this fixes a problem with gimp not building its xpm plugin and possibly other packages because x11-links wasn't linking libXpm ? XXX is there a way to force x11-links to rebuild and any packages that depended on finding libXpm via x11-links ?
2007-01-06Fixed some pkglint warnings.rillig3-17/+12
2006-12-27- fine grained X11 dependencies for packages which have either USE_IMAKEjoerg1-1/+4
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or via buildlink3.mks - introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm in the !modular case - fix some cases where the check for libX11 couldn't work at all by using C++ for compilation without including the proper headers Verified using a full X11_TYPE=xorg bulk build without additional breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.
2006-12-18Conflict with libXpm. Bump revision.joerg1-2/+4
2006-10-28Some more HOMEPAGE/MASTER_SITES updates from Sergey Svishchev.wiz1-2/+2
2006-10-04Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev.wiz1-2/+2
2006-09-10make sure libXpm.so.4.11 is built with the correct name on IRIX 5schwarz1-4/+5
2006-09-09added support for IRIX 5schwarz1-1/+20
2006-09-03Reset maintainer for people who lost their commit bit.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-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 :)reed2-5/+5
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-03-30Avoid extra stat() calls by not repeatedly checking whether a filejlam1-3/+3
exists on the disk -- we can just check whether a variable defined by find-files.mk is "__nonexistent__" or not.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig1-2/+2
NO_BUILD, USE_LIBTOOL.
2005-08-11make sure that we put -L../lib at the beginning so we find ourdmcmahill3-9/+11
local libXpm. Fixes linking problems on solaris.
2005-06-14Apply fixes derived from the HEAD branch of X.Org (6.8.99) to addressjlam20-141/+1778
problems noted in CAN-2004-0914: Multiple vulnerabilities in libXpm for 6.8.1 and earlier, as used in XFree86 and other packages, include (1) multiple integer overflows, (2) out-of-bounds memory accesses, (3) directory traversal, (4) shell metacharacter, (5) endless loops, and (6) memory leaks, which could allow remote attackers to obtain sensitive information, cause a denial of service (application crash), or execute arbitary code via a certain XPM image file. Bump PKGREVISION to 4. Since this is a security-related fix, also bump the BUILDLINK_RECOMMENDED version for this package.
2005-06-03Coalesce the common makefile code in the builtin.mk file that inspectjlam2-25/+4
the X11 distribution using imake into mk/buildlink3/imake-check.mk. imake-check.mk calls out to a helper shell script mk/buildlink3/imake-check that generates the required Imakefiles and runs imake. Remove the now extraneous builtin-imake.mk files as the builtin.mk files can now contain the name of the imake symbol to check.
2005-06-03Only check for the existence of the first word of ${IMAKE} since it mayjlam1-2/+3
contain a command plus arguments. We use the standard idiom to extract the first word of a list stored in a make variable: VAR_CMD= ${VAR:C/^/_asdf_/1:M_asdf_*:S/^_asdf_//} XXX This can be replaced with a more succinct use of variable modifiers XXX when we update the bootstrap bmake to match the latest NetBSD make XXX sources, i.e.: XXX XXX VAR_CMD= ${VAR:[1]}
2005-06-03Don't require a read-write pkgsrc tree when invoking imake. We avoidjlam1-2/+4
this requirement by using TMPDIR as the read-write location demanded by using imake.
2005-06-02only use the first word of ${IMAKE} to check whether the executable exists.dillo1-2/+2
XXX: this is a hack, but otherwise the builtin xpm is not recognized on NetBSD.
2005-06-01Include bsd.prefs.mk to define OPSYS.jlam1-1/+3
2005-06-01Use IMAKE_MAKE instead of MAKE to process the makefile generated by imake.jlam1-2/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam4-62/+97
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-10Add patch to fix CAN-2005-0605. Bump PKGREVISION.wiz3-6/+16
2005-02-24Add RMD160 digestsagc1-1/+2
2004-09-16Incorporate security fixes of X.Org X11R6.8.1.minskim12-13/+452
Bump PKGREVISION.
2004-05-22Unused.wiz1-46/+0
2004-05-20drop the minimum required version of built-in xpm to 3.4. this isgrant1-8/+6
actually still more strict than the buildlink2 behaviour (which would allow any version), but at least packages requiring xpm can now build again with builtin xpm on non-XFree86 platforms.
2004-05-15clean up, do away with lots of blank lines, |fmt 70 75.grant1-18/+10
2004-05-15use PKGBASE instead of PKGNAME if we detect builtin xpm.grant1-3/+3
2004-04-24Set BUILDLINK_PREFIX.xpm to ${X11BASE} if we're using builtin xpm.snj1-1/+5
Closes PR pkg/25302.
2004-04-22Enable pkgviews installation.minskim1-1/+3
2004-03-29Match the template builtin.mk file in bsd.builtin.mk, and make the twojlam2-11/+5
packages that use builtin.mk files (graphics/xpm and pkgtools/x11-links) use the new format correctly.
2004-03-23USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined.jlam1-2/+2
2004-03-10Catch up with removal of BUILDLINK_{IS,USE}_BUILTIN.jlam1-4/+4
2004-03-10Split out the code that deals with checking whether the software isjlam2-83/+81
built-in or not into a separate builtin.mk file. The code to deal checking for built-in software is much simpler to deal with in pkgsrc. The buildlink3.mk file for a package will be of the usual format regardless of the package, which makes it simpler for packagers to update a package. The builtin.mk file for a package must define a single yes/no variable USE_BUILTIN.<pkg> that is used by bsd.buildlink3.mk to decide whether to use the built-in software or to use the pkgsrc software.
2004-02-06If we're passing through MAKEFLAGS variables whose values may containjlam1-3/+3
spaces, use the :Q modifier instead of double-quoting the value. This avoids breakage when executing the just-in-time su targets.
2004-01-24Support BUILDLINK_DEPENDS.<pkg> being a list of values.jlam1-4/+8
2004-01-24Using xpm implies using X11.jlam1-1/+2
2004-01-21On IRIX systems, assume that Xpm is built-in.jlam1-1/+3
2004-01-21Remove comment I accidentally left in this file during bl3ification thatjlam1-2/+2
enabled me to test this on a NetBSD system.
2004-01-05bl3ifyjlam1-20/+7
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-05Sow BUILDLINK_USE_BUILTIN.<pkg> and reap _NEED_<PKG> variables.jlam1-18/+17
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-4/+4